2021-01-29 00:20:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
class DependencyProxy < ::API::Base
|
|
|
|
helpers ::API::Helpers::PackagesHelpers
|
|
|
|
|
|
|
|
feature_category :dependency_proxy
|
2022-07-16 23:28:13 +05:30
|
|
|
urgency :low
|
2021-01-29 00:20:46 +05:30
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
after_validation do
|
2021-01-29 00:20:46 +05:30
|
|
|
authorize! :admin_group, user_group
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
2023-01-13 00:05:48 +05:30
|
|
|
requires :id, types: [String, Integer],
|
|
|
|
desc: 'The ID or URL-encoded path of the group owned by the authenticated user'
|
2021-01-29 00:20:46 +05:30
|
|
|
end
|
|
|
|
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
2023-01-13 00:05:48 +05:30
|
|
|
desc 'Purge the dependency proxy for a group' do
|
|
|
|
detail 'Schedules for deletion the cached manifests and blobs for a group.'\
|
|
|
|
'This endpoint requires the Owner role for the group.'
|
|
|
|
success code: 202
|
|
|
|
failure [
|
|
|
|
{ code: 401, message: 'Unauthorized' }
|
|
|
|
]
|
|
|
|
tags %w[dependency_proxy]
|
2021-01-29 00:20:46 +05:30
|
|
|
end
|
|
|
|
delete ':id/dependency_proxy/cache' do
|
|
|
|
not_found! unless user_group.dependency_proxy_feature_available?
|
|
|
|
|
|
|
|
# rubocop:disable CodeReuse/Worker
|
|
|
|
PurgeDependencyProxyCacheWorker.perform_async(current_user.id, user_group.id)
|
|
|
|
# rubocop:enable CodeReuse/Worker
|
2021-11-11 11:23:49 +05:30
|
|
|
|
|
|
|
status :accepted
|
2021-01-29 00:20:46 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|