Sha256: 25af864d51341d009f8faf2bf4291a24e837551f0c0f53d168d491e8f5200b07

Contents?: true

Size: 1.8 KB

Versions: 48

Compression:

Stored size: 1.8 KB

Contents

module Hyrax
  module Workflow
    # Responsible for coordinating the behavior of an action taken within a workflow
    class WorkflowActionService
      def self.run(subject:, action:, comment: nil)
        new(subject: subject, action: action, comment: comment).run
      end

      def initialize(subject:, action:, comment:)
        @subject = subject
        @action = action
        @comment_text = comment
      end

      attr_reader :subject, :action, :comment_text

      def run
        update_sipity_workflow_state
        comment = create_sipity_comment
        handle_sipity_notifications(comment: comment)
        handle_additional_sipity_workflow_action_processing(comment: comment)
        subject.work.update_index # So that the new actions and state are written into solr.
      end

      private

        def update_sipity_workflow_state
          return true if action.resulting_workflow_state_id.blank?
          subject.entity.update!(workflow_state_id: action.resulting_workflow_state_id)
        end

        def create_sipity_comment
          return true if comment_text.blank?
          Sipity::Comment.create!(entity: subject.entity, agent: subject.agent, comment: comment_text)
        end

        def handle_sipity_notifications(comment:)
          Hyrax::Workflow::NotificationService.deliver_on_action_taken(
            entity: subject.entity,
            comment: comment,
            action: action,
            user: subject.user
          )
        end

        # Run any configured custom methods
        def handle_additional_sipity_workflow_action_processing(comment:)
          Hyrax::Workflow::ActionTakenService.handle_action_taken(
            target: subject.work,
            comment: comment,
            action: action,
            user: subject.user
          )
        end
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
hyrax-2.9.6 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.9.5 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.9.4 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.9.3 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.9.2 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.9.1 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.9.0 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.8.0 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.7.2 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.7.1 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.7.0 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.6.0 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-3.0.0.pre.rc1 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-3.0.0.pre.beta3 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.5.1 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.5.0 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-3.0.0.pre.beta2 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.4.1 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-3.0.0.pre.beta1 app/services/hyrax/workflow/workflow_action_service.rb
hyrax-2.4.0 app/services/hyrax/workflow/workflow_action_service.rb