debian-mirror-gitlab/lib/api/group_container_repositories.rb

47 lines
1.5 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
module API
2021-01-03 14:25:43 +05:30
class GroupContainerRepositories < ::API::Base
2019-10-12 21:52:04 +05:30
include PaginationParams
2021-01-03 14:25:43 +05:30
helpers ::API::Helpers::PackagesHelpers
2019-10-12 21:52:04 +05:30
before { authorize_read_group_container_images! }
2021-01-29 00:20:46 +05:30
feature_category :package_registry
2019-10-12 21:52:04 +05:30
REPOSITORY_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS.merge(
tag_name: API::NO_SLASH_URL_PART_REGEX)
params do
requires :id, type: String, desc: "Group's ID or path"
end
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
desc 'Get a list of all repositories within a group' do
detail 'This feature was introduced in GitLab 12.2.'
success Entities::ContainerRegistry::Repository
end
params do
use :pagination
optional :tags, type: Boolean, default: false, desc: 'Determines if tags should be included'
2020-06-23 00:09:42 +05:30
optional :tags_count, type: Boolean, default: false, desc: 'Determines if the tags count should be included'
2019-10-12 21:52:04 +05:30
end
get ':id/registry/repositories' do
repositories = ContainerRepositoriesFinder.new(
2019-12-26 22:10:19 +05:30
user: current_user, subject: user_group
2019-10-12 21:52:04 +05:30
).execute
2021-09-04 01:27:46 +05:30
track_package_event('list_repositories', :container, user: current_user, namespace: user_group)
2019-12-26 22:10:19 +05:30
2020-06-23 00:09:42 +05:30
present paginate(repositories), with: Entities::ContainerRegistry::Repository, tags: params[:tags], tags_count: params[:tags_count]
2019-10-12 21:52:04 +05:30
end
end
helpers do
def authorize_read_group_container_images!
authorize! :read_container_image, user_group
end
end
end
end