Class: Spotlight::Exhibit

Inherits:
ActiveRecord::Base
  • Object
show all
Extended by:
FriendlyId
Includes:
ExhibitAnalytics, ExhibitDefaults, ExhibitDocuments, Translatables
Defined in:
app/models/spotlight/exhibit.rb

Overview

Spotlight exhibit

Instance Method Summary collapse

Methods included from ExhibitDocuments

#solr_documents

Methods included from ExhibitAnalytics

#analytics, #page_analytics

Instance Method Details

#available_localesObject



117
118
119
# File 'app/models/spotlight/exhibit.rb', line 117

def available_locales
  @available_locales ||= languages.pluck(:locale)
end

#browse_categories?Boolean

Returns:

  • (Boolean)


78
79
80
# File 'app/models/spotlight/exhibit.rb', line 78

def browse_categories?
  searches.published.any?
end

#import(hash) ⇒ Object



86
87
88
89
# File 'app/models/spotlight/exhibit.rb', line 86

def import(hash)
  Spotlight::ExhibitExportSerializer.prepare(self).from_hash(hash)
  self
end

#main_about_pageObject



74
75
76
# File 'app/models/spotlight/exhibit.rb', line 74

def main_about_page
  @main_about_page ||= about_pages.for_locale.published.first
end

#reindex_later(user = nil) ⇒ Object



97
98
99
# File 'app/models/spotlight/exhibit.rb', line 97

def reindex_later(user = nil)
  Spotlight::ReindexJob.perform_later(self, new_reindexing_log_entry(user))
end

#reindex_progressObject



113
114
115
# File 'app/models/spotlight/exhibit.rb', line 113

def reindex_progress
  @reindex_progress ||= ReindexProgress.new(current_reindexing_log_entry)
end

#requested_byObject



109
110
111
# File 'app/models/spotlight/exhibit.rb', line 109

def requested_by
  roles.first.user if roles.first
end

#searchable?Boolean

Returns:

  • (Boolean)


105
106
107
# File 'app/models/spotlight/exhibit.rb', line 105

def searchable?
  blacklight_config.search_fields.any? { |_k, v| v.enabled && v.include_in_simple_select != false }
end

#solr_dataObject



91
92
93
94
95
# File 'app/models/spotlight/exhibit.rb', line 91

def solr_data
  filters.each_with_object({}) do |filter, hash|
    hash.merge! filter.to_hash
  end
end

#to_sObject



82
83
84
# File 'app/models/spotlight/exhibit.rb', line 82

def to_s
  title
end

#uploaded_resource_fieldsObject



101
102
103
# File 'app/models/spotlight/exhibit.rb', line 101

def uploaded_resource_fields
  Spotlight::Engine.config.upload_fields
end