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

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

module DependencyProxy
  module ImageTtlGroupPolicies
    class UpdateService < BaseContainerService
      include Gitlab::Utils::StrongMemoize

      ALLOWED_ATTRIBUTES = %i[enabled ttl].freeze

      def execute
        return ServiceResponse.error(message: 'Access Denied', http_status: 403) unless allowed?
        return ServiceResponse.error(message: 'Dependency proxy image TTL Policy not found', http_status: 404) unless dependency_proxy_image_ttl_policy

        if dependency_proxy_image_ttl_policy.update(dependency_proxy_image_ttl_policy_params)
          ServiceResponse.success(payload: { dependency_proxy_image_ttl_policy: dependency_proxy_image_ttl_policy })
        else
          ServiceResponse.error(
            message: dependency_proxy_image_ttl_policy.errors.full_messages.to_sentence || 'Bad request',
            http_status: 400
          )
        end
      end

      private

      def dependency_proxy_image_ttl_policy
        strong_memoize(:dependency_proxy_image_ttl_policy) do
          container.dependency_proxy_image_ttl_policy
        end
      end

      def allowed?
        Ability.allowed?(current_user, :admin_dependency_proxy, container)
      end

      def dependency_proxy_image_ttl_policy_params
        params.slice(*ALLOWED_ATTRIBUTES)
      end
    end
  end
end