Class: Spotlight::SolrController

Inherits:
ApplicationController show all
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, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #redirect_back, #resource_masthead?, #search_action_url, #search_facet_url

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#updateObject



17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'app/controllers/spotlight/solr_controller.rb', line 17

def update
  authorize! :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 respond_to? :head
    head :ok
  else
    render nothing: true
  end
end