summaryrefslogtreecommitdiff
path: root/app/services/incident_management/issuable_escalation_statuses/after_update_service.rb
blob: b7f8b268f18e12faae2bcd6d9cb6b9a013c535e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true

module IncidentManagement
  module IssuableEscalationStatuses
    class AfterUpdateService < ::BaseProjectService
      def initialize(issuable, current_user, **params)
        @issuable = issuable
        @escalation_status = issuable.escalation_status
        @alert = issuable.alert_management_alert

        super(project: issuable.project, current_user: current_user, params: params)
      end

      def execute
        after_update

        ServiceResponse.success(payload: { escalation_status: escalation_status })
      end

      private

      attr_reader :issuable, :escalation_status, :alert

      def after_update
        sync_status_to_alert
        add_status_system_note
      end

      def sync_status_to_alert
        return unless alert
        return if alert.status == escalation_status.status

        ::AlertManagement::Alerts::UpdateService.new(
          alert,
          current_user,
          status: escalation_status.status_name,
          status_change_reason: " by changing the incident status of #{issuable.to_reference(project)}"
        ).execute
      end

      def add_status_system_note
        return unless escalation_status.status_previously_changed?

        SystemNoteService.change_incident_status(issuable, current_user, params[:status_change_reason])
      end
    end
  end
end

::IncidentManagement::IssuableEscalationStatuses::AfterUpdateService.prepend_mod