2021-06-08 01:23:25 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Concerns
|
|
|
|
module Packages
|
2021-09-04 01:27:46 +05:30
|
|
|
module DebianPackageEndpoints
|
2021-06-08 01:23:25 +05:30
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
LETTER_REGEX = %r{(lib)?[a-z0-9]}.freeze
|
|
|
|
PACKAGE_REGEX = API::NO_SLASH_URL_PART_REGEX
|
|
|
|
DISTRIBUTION_REQUIREMENTS = {
|
2021-09-30 23:02:18 +05:30
|
|
|
distribution: ::Packages::Debian::DISTRIBUTION_REGEX
|
2021-06-08 01:23:25 +05:30
|
|
|
}.freeze
|
|
|
|
COMPONENT_ARCHITECTURE_REQUIREMENTS = {
|
2021-09-30 23:02:18 +05:30
|
|
|
component: ::Packages::Debian::COMPONENT_REGEX,
|
|
|
|
architecture: ::Packages::Debian::ARCHITECTURE_REGEX
|
2021-06-08 01:23:25 +05:30
|
|
|
}.freeze
|
|
|
|
COMPONENT_LETTER_SOURCE_PACKAGE_REQUIREMENTS = {
|
2021-09-30 23:02:18 +05:30
|
|
|
component: ::Packages::Debian::COMPONENT_REGEX,
|
2021-06-08 01:23:25 +05:30
|
|
|
letter: LETTER_REGEX,
|
|
|
|
source_package: PACKAGE_REGEX
|
|
|
|
}.freeze
|
|
|
|
FILE_NAME_REQUIREMENTS = {
|
|
|
|
file_name: API::NO_SLASH_URL_PART_REGEX
|
|
|
|
}.freeze
|
|
|
|
|
|
|
|
included do
|
|
|
|
feature_category :package_registry
|
|
|
|
|
|
|
|
helpers ::API::Helpers::PackagesHelpers
|
|
|
|
helpers ::API::Helpers::Packages::BasicAuthHelpers
|
2021-09-04 01:27:46 +05:30
|
|
|
include ::API::Helpers::Authentication
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
namespace 'packages/debian' do
|
|
|
|
authenticate_with do |accept|
|
|
|
|
accept.token_types(:personal_access_token, :deploy_token, :job_token)
|
|
|
|
.sent_through(:http_basic_auth)
|
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
helpers do
|
|
|
|
def present_release_file
|
|
|
|
distribution = ::Packages::Debian::DistributionsFinder.new(project_or_group, codename_or_suite: params[:distribution]).execute.last!
|
|
|
|
|
|
|
|
present_carrierwave_file!(distribution.file)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
format :txt
|
|
|
|
content_type :txt, 'text/plain'
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
params do
|
|
|
|
requires :distribution, type: String, desc: 'The Debian Codename', regexp: Gitlab::Regex.debian_distribution_regex
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace 'dists/*distribution', requirements: DISTRIBUTION_REQUIREMENTS do
|
|
|
|
# GET {projects|groups}/:id/packages/debian/dists/*distribution/Release.gpg
|
|
|
|
desc 'The Release file signature' do
|
|
|
|
detail 'This feature was introduced in GitLab 13.5'
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
route_setting :authentication, authenticate_non_public: true
|
2021-06-08 01:23:25 +05:30
|
|
|
get 'Release.gpg' do
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
|
|
|
|
# GET {projects|groups}/:id/packages/debian/dists/*distribution/Release
|
|
|
|
desc 'The unsigned Release file' do
|
|
|
|
detail 'This feature was introduced in GitLab 13.5'
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
route_setting :authentication, authenticate_non_public: true
|
2021-06-08 01:23:25 +05:30
|
|
|
get 'Release' do
|
2021-09-30 23:02:18 +05:30
|
|
|
present_release_file
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
# GET {projects|groups}/:id/packages/debian/dists/*distribution/InRelease
|
|
|
|
desc 'The signed Release file' do
|
|
|
|
detail 'This feature was introduced in GitLab 13.5'
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
route_setting :authentication, authenticate_non_public: true
|
2021-06-08 01:23:25 +05:30
|
|
|
get 'InRelease' do
|
2021-09-30 23:02:18 +05:30
|
|
|
# Signature to be added in 7.3 of https://gitlab.com/groups/gitlab-org/-/epics/6057#note_582697034
|
|
|
|
present_release_file
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
|
|
|
requires :component, type: String, desc: 'The Debian Component', regexp: Gitlab::Regex.debian_component_regex
|
|
|
|
requires :architecture, type: String, desc: 'The Debian Architecture', regexp: Gitlab::Regex.debian_architecture_regex
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace ':component/binary-:architecture', requirements: COMPONENT_ARCHITECTURE_REQUIREMENTS do
|
|
|
|
# GET {projects|groups}/:id/packages/debian/dists/*distribution/:component/binary-:architecture/Packages
|
|
|
|
desc 'The binary files index' do
|
|
|
|
detail 'This feature was introduced in GitLab 13.5'
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
route_setting :authentication, authenticate_non_public: true
|
2021-06-08 01:23:25 +05:30
|
|
|
get 'Packages' do
|
2021-09-30 23:02:18 +05:30
|
|
|
relation = "::Packages::Debian::#{project_or_group.class.name}ComponentFile".constantize
|
|
|
|
|
|
|
|
component_file = relation
|
|
|
|
.preload_distribution
|
|
|
|
.with_container(project_or_group)
|
|
|
|
.with_codename_or_suite(params[:distribution])
|
|
|
|
.with_component_name(params[:component])
|
|
|
|
.with_file_type(:packages)
|
|
|
|
.with_architecture_name(params[:architecture])
|
|
|
|
.with_compression_type(nil)
|
|
|
|
.order_created_asc
|
|
|
|
.last!
|
|
|
|
|
|
|
|
present_carrierwave_file!(component_file.file)
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
|
|
|
requires :component, type: String, desc: 'The Debian Component', regexp: Gitlab::Regex.debian_component_regex
|
|
|
|
requires :letter, type: String, desc: 'The Debian Classification (first-letter or lib-first-letter)'
|
|
|
|
requires :source_package, type: String, desc: 'The Debian Source Package Name', regexp: Gitlab::Regex.debian_package_name_regex
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace 'pool/:component/:letter/:source_package', requirements: COMPONENT_LETTER_SOURCE_PACKAGE_REQUIREMENTS do
|
|
|
|
# GET {projects|groups}/:id/packages/debian/pool/:component/:letter/:source_package/:file_name
|
|
|
|
params do
|
|
|
|
requires :file_name, type: String, desc: 'The Debian File Name'
|
|
|
|
end
|
|
|
|
desc 'The package' do
|
|
|
|
detail 'This feature was introduced in GitLab 13.5'
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
route_setting :authentication, authenticate_non_public: true
|
2021-06-08 01:23:25 +05:30
|
|
|
get ':file_name', requirements: FILE_NAME_REQUIREMENTS do
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/5835#note_414103286
|
|
|
|
'TODO File'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|