Sha256: c713ad3275ceaabae23500fba88e9db4fb033f9a78cca36cc89e96363811190d

Contents?: true

Size: 1.05 KB

Versions: 8

Compression:

Stored size: 1.05 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 SufiaHelper

  queue_as :event
  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 ||= Sufia::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

8 entries across 8 versions & 1 rubygems

Version Path
sufia-7.4.1 app/jobs/event_job.rb
sufia-7.4.0 app/jobs/event_job.rb
sufia-7.3.1 app/jobs/event_job.rb
sufia-7.3.0 app/jobs/event_job.rb
sufia-7.3.0.rc3 app/jobs/event_job.rb
sufia-7.3.0.rc2 app/jobs/event_job.rb
sufia-7.3.0.rc1 app/jobs/event_job.rb
sufia-7.2.0 app/jobs/event_job.rb