Class: Spotlight::Search
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Spotlight::Search
show all
- Extended by:
- FriendlyId
- Includes:
- SearchHelper, Translatables
- Defined in:
- app/models/spotlight/search.rb
Overview
Instance Method Summary
collapse
#search_service, #search_service_context
Instance Method Details
#count ⇒ Object
65
66
67
68
69
|
# File 'app/models/spotlight/search.rb', line 65
def count
@count ||= Rails.cache.fetch([exhibit, self, 'count']) do
documents.size
end
end
|
77
78
79
|
# File 'app/models/spotlight/search.rb', line 77
def display_masthead?
masthead&.display?
end
|
#documents(&block) ⇒ Object
52
53
54
55
56
57
58
59
60
61
62
63
|
# File 'app/models/spotlight/search.rb', line 52
def documents(&block)
start = 0
response = repository.search(search_params.start(start))
return to_enum(:documents) { response['response']['numFound'] } unless block_given?
while response.documents.present?
response.documents.each(&block)
start += response.documents.length
response = repository.search(search_params.start(start))
end
end
|
#full_title ⇒ Object
42
43
44
|
# File 'app/models/spotlight/search.rb', line 42
def full_title
[title, subtitle.presence].compact.join(' ยท ')
end
|
#merge_params_for_search(params, blacklight_config) ⇒ Object
85
86
87
88
89
|
# File 'app/models/spotlight/search.rb', line 85
def merge_params_for_search(params, blacklight_config)
base_query = Blacklight::SearchState.new((query_params || {}), blacklight_config)
user_query = Blacklight::SearchState.new(params, blacklight_config).to_h
base_query.params_for_search(user_query).merge(user_query.slice(:page))
end
|
#query_params ⇒ Object
71
72
73
|
# File 'app/models/spotlight/search.rb', line 71
def query_params
super || {}.with_indifferent_access
end
|
#search_params ⇒ Object
81
82
83
|
# File 'app/models/spotlight/search.rb', line 81
def search_params
search_service.search_builder.with((query_params || {}).with_indifferent_access).merge(facet: false)
end
|
#thumbnail_image_url ⇒ Object
46
47
48
49
50
|
# File 'app/models/spotlight/search.rb', line 46
def thumbnail_image_url
return unless thumbnail&.iiif_url
thumbnail.iiif_url
end
|