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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/container_registry/gitlab_api_client.rb')
-rw-r--r--lib/container_registry/gitlab_api_client.rb48
1 files changed, 48 insertions, 0 deletions
diff --git a/lib/container_registry/gitlab_api_client.rb b/lib/container_registry/gitlab_api_client.rb
index 5dddd421223..d3c0ec03983 100644
--- a/lib/container_registry/gitlab_api_client.rb
+++ b/lib/container_registry/gitlab_api_client.rb
@@ -22,6 +22,8 @@ module ContainerRegistry
REGISTRY_GITLAB_V1_API_FEATURE = 'gitlab_v1_api'
MAX_TAGS_PAGE_SIZE = 1000
+ MAX_REPOSITORIES_PAGE_SIZE = 1000
+ PAGE_SIZE = 1
UnsuccessfulResponseError = Class.new(StandardError)
@@ -37,6 +39,21 @@ module ContainerRegistry
end
end
+ def self.one_project_with_container_registry_tag(path)
+ with_dummy_client(token_config: { type: :nested_repositories_token, path: path&.downcase }) do |client|
+ page = client.sub_repositories_with_tag(path&.downcase, page_size: PAGE_SIZE)
+ details = page[:response_body]&.first
+
+ break unless details
+
+ path = ContainerRegistry::Path.new(details["path"])
+
+ break unless path.valid?
+
+ ContainerRepository.find_by_path(path)&.project
+ end
+ end
+
# https://gitlab.com/gitlab-org/container-registry/-/blob/master/docs-gitlab/api.md#compliance-check
def supports_gitlab_api?
strong_memoize(:supports_gitlab_api) do
@@ -133,6 +150,37 @@ module ContainerRegistry
end
end
+ # https://gitlab.com/gitlab-org/container-registry/-/blob/master/docs-gitlab/api.md#list-sub-repositories
+ def sub_repositories_with_tag(path, page_size: 100, last: nil)
+ limited_page_size = [page_size, MAX_REPOSITORIES_PAGE_SIZE].min
+
+ with_token_faraday do |faraday_client|
+ url = "/gitlab/v1/repository-paths/#{path}/repositories/list/"
+ response = faraday_client.get(url) do |req|
+ req.params['n'] = limited_page_size
+ req.params['last'] = last if last
+ end
+
+ unless response.success?
+ Gitlab::ErrorTracking.log_exception(
+ UnsuccessfulResponseError.new,
+ class: self.class.name,
+ url: url,
+ status_code: response.status
+ )
+
+ break {}
+ end
+
+ link_parser = Gitlab::Utils::LinkHeaderParser.new(response.headers['link'])
+
+ {
+ pagination: link_parser.parse,
+ response_body: response_body(response)
+ }
+ end
+ end
+
private
def start_import_for(path, pre:)