Sha256: 7da3ff2283a3b688b586b5be5c18bc71657b7f30667634fe9c76396ee555930f

Contents?: true

Size: 1.07 KB

Versions: 10

Compression:

Stored size: 1.07 KB

Contents

# A generic job for sending events to a user.
#
# This class does not implement a usable action, so it must be implemented in a child class
#
class EventJob < ActiveJob::Base
  include Rails.application.routes.url_helpers
  include ActionView::Helpers
  include ActionView::Helpers::DateHelper
  include Hydra::AccessControlsEnforcement
  include HyraxHelper

  queue_as Hyrax.config.ingest_queue_name
  attr_reader :depositor

  # @param [User] depositor the user to create the event for
  def perform(depositor)
    @depositor = depositor
    # Log the event to the depositor's profile stream
    log_user_event(depositor)
  end

  # override to provide your specific action for the event you are logging
  # @abstract
  def action
    raise(NotImplementedError, "#action should be implemented by an child class of EventJob")
  end

  # create an event with an action and a timestamp for the user
  def event
    @event ||= Hyrax::Event.create(action, Time.current.to_i)
  end

  # log the event to the users event stream
  def log_user_event(depositor)
    depositor.log_event(event)
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
hyrax-1.1.1 app/jobs/event_job.rb
hyrax-1.1.0 app/jobs/event_job.rb
hyrax-1.0.5 app/jobs/event_job.rb
hyrax-1.0.4 app/jobs/event_job.rb
hyrax-1.0.3 app/jobs/event_job.rb
hyrax-1.0.2 app/jobs/event_job.rb
hyrax-1.0.1 app/jobs/event_job.rb
hyrax-1.0.0.rc2 app/jobs/event_job.rb
hyrax-1.0.0.rc1 app/jobs/event_job.rb
test_hyrax-0.0.1.alpha app/jobs/event_job.rb