Class: Spotlight::SolrController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ApplicationController
- Spotlight::SolrController
- Includes:
- Blacklight::SearchHelper
- Defined in:
- app/controllers/spotlight/solr_controller.rb
Overview
Proxy update requests to Solr and inject spotlight’s exhibit specific fields.
This is an example of how you could integrate external indexing workflows with exhibit-specific content
Instance Method Summary collapse
Methods included from Concerns::ApplicationController
#enabled_in_spotlight_view_type_configuration?, #field_enabled?
Methods included from Controller
#blacklight_config, #current_exhibit, #current_masthead, #current_masthead=, #current_site, #default_url_options, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #resource_masthead?, #search_action_url, #search_facet_url, #set_exhibit_locale_scope, #set_locale
Methods included from Config
#exhibit_specific_blacklight_config
Instance Method Details
#update ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'app/controllers/spotlight/solr_controller.rb', line 17 def update :update_solr, @exhibit data = solr_documents repository.connection.update params: { commitWithin: 500 }, data: data.to_json, headers: { 'Content-Type' => 'application/json' } unless data.empty? if params[:resources_json_upload] redirect_back fallback_location: exhibit_resources_path(@exhibit) else head :ok end end |