Sha256: 0a6e3993a3f1536615986c30e5603c790c408cf3a2d0d1427c64ca4613e19403
Contents?: true
Size: 1.54 KB
Versions: 6
Compression:
Stored size: 1.54 KB
Contents
module CurationConcerns module Actors class AddToWorkActor < AbstractActor def create(attributes) work_ids = attributes.delete(:in_works_ids) next_actor.create(attributes) && add_to_works(work_ids) end def update(attributes) work_ids = attributes.delete(:in_works_ids) add_to_works(work_ids) && next_actor.update(attributes) end private def ability ::Ability.new(user) end def can_edit_both_works?(work) ability.can?(:edit, work) && ability.can?(:edit, curation_concern) end def add_to_works(new_work_ids) return true if new_work_ids.nil? (curation_concern.in_works_ids - new_work_ids).each do |old_id| work = ::ActiveFedora::Base.find(old_id) work.ordered_members.delete(curation_concern) work.members.delete(curation_concern) work.save end # add to new so long as the depositor for the parent and child matches, otherwise inject an error (new_work_ids - curation_concern.in_works_ids).each do |work_id| work = ::ActiveFedora::Base.find(work_id) if can_edit_both_works?(work) work.ordered_members << curation_concern work.save else curation_concern.errors[:in_works_ids] << "Works can only be related to each other if user has ability to edit both." end end curation_concern.errors[:in_works_ids].empty? end end end end
Version data entries
6 entries across 6 versions & 1 rubygems