Module: Spotlight::SolrDocument

Extended by:
ActiveSupport::Concern
Includes:
GlobalID::Identification, Finder
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/uploaded_resource.rb

Overview

SolrDocument mixins to add ActiveModel shims and indexing methods

Defined Under Namespace

Modules: AtomicUpdates, ClassMethods, Finder, UploadedResource

Instance Method Summary collapse

Methods included from Finder

#==, #blacklight_solr

Instance Method Details

#attribute_present?(*_args) ⇒ Boolean

Returns:

  • (Boolean)


116
117
118
# File 'app/models/concerns/spotlight/solr_document.rb', line 116

def attribute_present?(*_args)
  false
end

#make_private!(exhibit) ⇒ Object



99
100
101
# File 'app/models/concerns/spotlight/solr_document.rb', line 99

def make_private!(exhibit)
  sidecar(exhibit).private!
end

#make_public!(exhibit) ⇒ Object



95
96
97
# File 'app/models/concerns/spotlight/solr_document.rb', line 95

def make_public!(exhibit)
  sidecar(exhibit).public!
end

#private?(exhibit) ⇒ Boolean

Returns:

  • (Boolean)


103
104
105
# File 'app/models/concerns/spotlight/solr_document.rb', line 103

def private?(exhibit)
  !public?(exhibit)
end

#public?(exhibit) ⇒ Boolean

Returns:

  • (Boolean)


107
108
109
# File 'app/models/concerns/spotlight/solr_document.rb', line 107

def public?(exhibit)
  sidecar(exhibit).public?
end

#reindexObject



77
78
79
# File 'app/models/concerns/spotlight/solr_document.rb', line 77

def reindex
  # no-op reindex implementation
end

#saveObject



67
68
69
# File 'app/models/concerns/spotlight/solr_document.rb', line 67

def save
  reindex
end

#sidecar(exhibit) ⇒ Object



85
86
87
# File 'app/models/concerns/spotlight/solr_document.rb', line 85

def sidecar(exhibit)
  sidecars.find_or_initialize_by exhibit: exhibit, document_id: id, document_type: self.class.to_s
end

#sidecarsObject



81
82
83
# File 'app/models/concerns/spotlight/solr_document.rb', line 81

def sidecars
  Spotlight::SolrDocumentSidecar.where(document_id: id, document_type: self.class.to_s)
end

#to_solrObject



89
90
91
92
93
# File 'app/models/concerns/spotlight/solr_document.rb', line 89

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)
                                        .merge(exhibits_to_solr)
end

#update(current_exhibit, new_attributes) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'app/models/concerns/spotlight/solr_document.rb', line 52

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

  # Note: this causes a save
  current_exhibit.tag(sidecar(current_exhibit), with: tags, on: :tags) if tags

  update_exhibit_resource(resource_attributes) if uploaded_resource?
end

#update_exhibit_resource(resource_attributes) ⇒ Object



71
72
73
74
75
# File 'app/models/concerns/spotlight/solr_document.rb', line 71

def update_exhibit_resource(resource_attributes)
  return unless resource_attributes && resource_attributes['url']

  uploaded_resource.upload.update image: resource_attributes['url']
end

#uploaded_resource?Boolean

Returns:

  • (Boolean)


111
112
113
114
# File 'app/models/concerns/spotlight/solr_document.rb', line 111

def uploaded_resource?
  self[self.class.resource_type_field].present? &&
    self[self.class.resource_type_field].include?('spotlight/resources/uploads')
end