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

Defined Under Namespace

Modules: ActiveModelConcern, AtomicUpdates, ClassMethods, Finder, SpotlightImages, UploadedResource

Class Method Summary collapse

Instance Method Summary collapse

Methods included from SpotlightImages

#spotlight_image_versions

Methods included from Finder

#blacklight_solr

Methods included from ActiveModelConcern

#destroyed?, #new_record?, #persisted?, #save, #to_key

Class Method Details

.resource_type_fieldObject



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

def self.resource_type_field
  :"#{Spotlight::Engine.config.solr_fields.prefix}spotlight_resource_type#{Spotlight::Engine.config.solr_fields.string_suffix}"
end

.solr_field_for_tagger(tagger) ⇒ Object



63
64
65
# File 'app/models/concerns/spotlight/solr_document.rb', line 63

def self.solr_field_for_tagger tagger
  ("#{Spotlight::Engine.config.solr_fields.prefix}#{tagger.class.model_name.param_key}_#{tagger.id}_tags" + Spotlight::Engine.config.solr_fields.string_suffix).to_sym
end

.visibility_field(exhibit) ⇒ Object



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

def self.visibility_field exhibit
  ("#{Spotlight::Engine.config.solr_fields.prefix}#{exhibit.class.model_name.param_key}_#{exhibit.id}_public" + Spotlight::Engine.config.solr_fields.boolean_suffix).to_sym
end

Instance Method Details

#attribute_present?(*args) ⇒ Boolean

Returns:

  • (Boolean)


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

def attribute_present? *args
  false
end

#make_private!(exhibit) ⇒ Object



79
80
81
# File 'app/models/concerns/spotlight/solr_document.rb', line 79

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

#make_public!(exhibit) ⇒ Object



75
76
77
# File 'app/models/concerns/spotlight/solr_document.rb', line 75

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

#private?(exhibit) ⇒ Boolean

Returns:

  • (Boolean)


83
84
85
# File 'app/models/concerns/spotlight/solr_document.rb', line 83

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

#public?(exhibit) ⇒ Boolean

Returns:

  • (Boolean)


87
88
89
# File 'app/models/concerns/spotlight/solr_document.rb', line 87

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

#reindexObject



51
52
53
# File 'app/models/concerns/spotlight/solr_document.rb', line 51

def reindex
  # no-op reindex implementation
end

#sidecar(exhibit) ⇒ Object



55
56
57
# File 'app/models/concerns/spotlight/solr_document.rb', line 55

def sidecar exhibit
  sidecars.find_or_initialize_by exhibit: exhibit
end

#to_solrObject



59
60
61
# File 'app/models/concerns/spotlight/solr_document.rb', line 59

def to_solr
  { self.class.unique_key.to_sym => id }.reverse_merge(sidecars.inject({}) { |result, sidecar| result.merge(sidecar.to_solr) }).merge(tags_to_solr)
end

#update(current_exhibit, new_attributes) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'app/models/concerns/spotlight/solr_document.rb', line 33

def update current_exhibit, new_attributes
  attributes = new_attributes.stringify_keys

  if custom_data = attributes.delete("sidecar")
    sidecar(current_exhibit).update(custom_data)
  end

  if tags = attributes.delete("exhibit_tag_list")
    # Note: this causes a save
    current_exhibit.tag(self, with: tags, on: :tags)
  end

  if uploaded_resource? and resource_attributes = attributes.delete("uploaded_resource")
    uploaded_resource.url = resource_attributes["url"] if resource_attributes["url"]
    uploaded_resource.save
  end
end

#uploaded_resource?Boolean

Returns:

  • (Boolean)


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

def uploaded_resource?
  self[Spotlight::SolrDocument.resource_type_field].present? &&
  self[Spotlight::SolrDocument.resource_type_field].include?("spotlight/resources/uploads")
end