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

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

module Packages
  module Protection
    class DeleteRuleService
      include Gitlab::Allowable

      def initialize(package_protection_rule, current_user:)
        if package_protection_rule.blank? || current_user.blank?
          raise ArgumentError,
            'package_protection_rule and current_user must be set'
        end

        @package_protection_rule = package_protection_rule
        @current_user = current_user
      end

      def execute
        unless can?(current_user, :admin_package, package_protection_rule.project)
          error_message = _('Unauthorized to delete a package protection rule')
          return service_response_error(message: error_message)
        end

        deleted_package_protection_rule = package_protection_rule.destroy!

        ServiceResponse.success(payload: { package_protection_rule: deleted_package_protection_rule })
      rescue StandardError => e
        service_response_error(message: e.message)
      end

      private

      attr_reader :package_protection_rule, :current_user

      def service_response_error(message:)
        ServiceResponse.error(
          message: message,
          payload: { package_protection_rule: nil }
        )
      end
    end
  end
end