Sha256: 32de27c712a696a0793d2000922a7df62afae80dd5ec2030b56bec0a345c85b7
Contents?: true
Size: 1.49 KB
Versions: 8
Compression:
Stored size: 1.49 KB
Contents
# Log work depositor change to activity streams # # @attr [Boolean] reset (false) should the access controls be reset. This means revoking edit access from the depositor class ContentDepositorChangeEventJob < ContentEventJob include Rails.application.routes.url_helpers include ActionDispatch::Routing::PolymorphicRoutes attr_accessor :reset # @param [ActiveFedora::Base] work the work to be transfered # @param [User] user the user the work is being transfered to. # @param [TrueClass,FalseClass] reset (false) if true, reset the access controls. This revokes edit access from the depositor def perform(work, user, reset = false) @reset = reset super(work, user) end def action "User #{link_to_profile work.proxy_depositor} has transferred #{link_to_work work.title.first} to user #{link_to_profile depositor}" end def link_to_work(text) link_to text, polymorphic_path(work) end # Log the event to the work's stream def log_work_event(work) work.log_event(event) end alias log_file_set_event log_work_event def work @work ||= Sufia::ChangeContentDepositorService.call(repo_object, depositor, reset) end # overriding default to log the event to the depositor instead of their profile def log_user_event(depositor) # log the event to the proxy depositor's profile proxy_depositor.log_profile_event(event) depositor.log_event(event) end def proxy_depositor @proxy_depositor ||= ::User.find_by_user_key(work.proxy_depositor) end end
Version data entries
8 entries across 8 versions & 1 rubygems