Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_incident_label_service.rb « incident_management « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbd0d78fa3cda7e6f6f72a9a0fcc238822c7b81a (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
# frozen_string_literal: true

module IncidentManagement
  class CreateIncidentLabelService < BaseService
    LABEL_PROPERTIES = {
      title: 'incident',
      color: '#CC0033',
      description: <<~DESCRIPTION.chomp
        Denotes a disruption to IT services and \
        the associated issues require immediate attention
      DESCRIPTION
    }.freeze

    def execute
      label = Labels::FindOrCreateService
        .new(current_user, project, **LABEL_PROPERTIES)
        .execute

      if label.invalid?
        log_invalid_label_info(label)
        return ServiceResponse.error(payload: { label: label }, message: full_error_message(label))
      end

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

    private

    def log_invalid_label_info(label)
      log_info <<~TEXT.chomp
        Cannot create incident label "#{label.title}" \
        for "#{label.project.full_name}": #{full_error_message(label)}.
      TEXT
    end

    def full_error_message(label)
      label.errors.full_messages.to_sentence
    end
  end
end