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

update_service.rb « http_integrations « alert_management « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7a079576e4bef31e64aaaf14f7b11402eac78de (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
51
52
53
54
# frozen_string_literal: true

module AlertManagement
  module HttpIntegrations
    class UpdateService < BaseService
      # @param integration [AlertManagement::HttpIntegration]
      # @param current_user [User]
      # @param params [Hash]
      def initialize(integration, current_user, params)
        @integration = integration

        super(integration.project, current_user, params)
      end

      def execute
        return error_no_permissions unless allowed?

        integration.transaction do
          if integration.update(permitted_params.merge(token_params))
            @response = success(integration)

            if type_update? && too_many_integrations?(integration)
              @response = error_multiple_integrations

              raise ActiveRecord::Rollback
            end
          else
            @response = error_on_save(integration)
          end
        end

        @response
      end

      private

      attr_reader :integration

      def token_params
        return {} unless params[:regenerate_token]

        { token: nil }
      end

      def type_update?
        params[:type_identifier].present?
      end

      def error_no_permissions
        error(_('You have insufficient permissions to update this HTTP integration'))
      end
    end
  end
end