Module: Spotlight::SolrDocument
- Extended by:
- ActiveSupport::Concern
- Includes:
- GlobalID::Identification, ActiveModelConcern, Finder, SpotlightImages
- Defined in:
- app/models/concerns/spotlight/solr_document.rb,
app/models/concerns/spotlight/solr_document/finder.rb,
app/models/concerns/spotlight/solr_document/atomic_updates.rb,
app/models/concerns/spotlight/solr_document/spotlight_images.rb,
app/models/concerns/spotlight/solr_document/uploaded_resource.rb,
app/models/concerns/spotlight/solr_document/active_model_concern.rb
Overview
SolrDocument mixins to add ActiveModel shims and indexing methods
Defined Under Namespace
Modules: ActiveModelConcern, AtomicUpdates, ClassMethods, Finder, SpotlightImages, UploadedResource
Instance Method Summary
collapse
#spotlight_image_versions
Methods included from Finder
#blacklight_solr
#destroyed?, #new_record?, #persisted?, #save, #to_key
Instance Method Details
#attribute_present?(*_args) ⇒ Boolean
113
114
115
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 113
def attribute_present?(*_args)
false
end
|
#make_private!(exhibit) ⇒ Object
96
97
98
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 96
def make_private!(exhibit)
sidecar(exhibit).private!
end
|
#make_public!(exhibit) ⇒ Object
92
93
94
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 92
def make_public!(exhibit)
sidecar(exhibit).public!
end
|
#private?(exhibit) ⇒ Boolean
100
101
102
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 100
def private?(exhibit)
!public?(exhibit)
end
|
#public?(exhibit) ⇒ Boolean
104
105
106
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 104
def public?(exhibit)
sidecar(exhibit).public?
end
|
#reindex ⇒ Object
80
81
82
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 80
def reindex
end
|
#sidecar(exhibit) ⇒ Object
84
85
86
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 84
def sidecar(exhibit)
sidecars.find_or_initialize_by exhibit: exhibit
end
|
#to_solr ⇒ Object
88
89
90
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 88
def to_solr
{ self.class.unique_key.to_sym => id }.reverse_merge(sidecars.inject({}) { |acc, elem| acc.merge(elem.to_solr) }).merge(tags_to_solr)
end
|
#update(current_exhibit, new_attributes) ⇒ Object
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 60
def update(current_exhibit, new_attributes)
attributes = new_attributes.stringify_keys
custom_data = attributes.delete('sidecar')
tags = attributes.delete('exhibit_tag_list')
resource_attributes = attributes.delete('uploaded_resource')
sidecar(current_exhibit).update(custom_data) if custom_data
current_exhibit.tag(self, with: tags, on: :tags) if tags
update_exhibit_resource(resource_attributes) if uploaded_resource?
end
|
#update_exhibit_resource(resource_attributes) ⇒ Object
75
76
77
78
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 75
def update_exhibit_resource(resource_attributes)
return unless resource_attributes && resource_attributes['url']
uploaded_resource.update url: resource_attributes['url']
end
|
#uploaded_resource? ⇒ Boolean
108
109
110
111
|
# File 'app/models/concerns/spotlight/solr_document.rb', line 108
def uploaded_resource?
self[self.class.resource_type_field].present? &&
self[self.class.resource_type_field].include?('spotlight/resources/uploads')
end
|