Sha256: c051ac3179ecf530de3f9ad15f111f1fb4f899f7aa5cc4957d6e0aff706c3cf1
Contents?: true
Size: 800 Bytes
Versions: 56
Compression:
Stored size: 800 Bytes
Contents
class FileDownloadStat < Hyrax::Statistic self.cache_column = :downloads self.event_type = :totalEvents class << self # Hyrax::Download is sent to Hyrax::Analytics.profile as #hyrax__download # see Legato::ProfileMethods.method_name_from_klass def ga_statistics(start_date, file) profile = Hyrax::Analytics.profile unless profile Rails.logger.error("Google Analytics profile has not been established. Unable to fetch statistics.") return [] end profile.hyrax__download(sort: 'date', start_date: start_date, end_date: Date.yesterday) .for_file(file.id) end # this is called by the parent class def filter(file) { file_id: file.id } end end end
Version data entries
56 entries across 56 versions & 2 rubygems