Class: DependencyProxy::ImageTtlGroupPolicies::UpdateService

Inherits:
BaseContainerService show all
Includes:
Gitlab::Utils::StrongMemoize
Defined in:
app/services/dependency_proxy/image_ttl_group_policies/update_service.rb

Constant Summary collapse

ALLOWED_ATTRIBUTES =
%i[enabled ttl].freeze

Instance Attribute Summary

Attributes inherited from BaseContainerService

#container, #current_user, #group, #params, #project

Instance Method Summary collapse

Methods inherited from BaseContainerService

#group_container?, #initialize, #namespace_container?, #project_container?, #project_group

Methods included from BaseServiceUtility

#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level

Methods included from Gitlab::Allowable

#can?

Constructor Details

This class inherits a constructor from BaseContainerService

Instance Method Details

#executeObject



10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'app/services/dependency_proxy/image_ttl_group_policies/update_service.rb', line 10

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