summaryrefslogtreecommitdiff
path: root/lib/api/concerns/packages/debian_package_endpoints.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/concerns/packages/debian_package_endpoints.rb')
-rw-r--r--lib/api/concerns/packages/debian_package_endpoints.rb123
1 files changed, 100 insertions, 23 deletions
diff --git a/lib/api/concerns/packages/debian_package_endpoints.rb b/lib/api/concerns/packages/debian_package_endpoints.rb
index e8d27448f02..2883944a745 100644
--- a/lib/api/concerns/packages/debian_package_endpoints.rb
+++ b/lib/api/concerns/packages/debian_package_endpoints.rb
@@ -35,12 +35,30 @@ module API
::Packages::Debian::DistributionsFinder.new(container, codename_or_suite: params[:distribution]).execute.last!
end
- def present_package_file!
+ def present_distribution_package_file!
not_found! unless params[:package_name].start_with?(params[:letter])
package_file = distribution_from!(user_project).package_files.with_file_name(params[:file_name]).last!
- present_carrierwave_file!(package_file.file)
+ present_package_file!(package_file)
+ end
+
+ def present_index_file!(file_type)
+ relation = "::Packages::Debian::#{project_or_group.class.name}ComponentFile".constantize
+
+ relation = relation
+ .preload_distribution
+ .with_container(project_or_group)
+ .with_codename_or_suite(params[:distribution])
+ .with_component_name(params[:component])
+ .with_file_type(file_type)
+ .with_architecture_name(params[:architecture])
+ .with_compression_type(nil)
+ .order_created_asc
+
+ relation = relation.with_file_sha256(params[:file_sha256]) if params[:file_sha256]
+
+ present_carrierwave_file!(relation.last!.file)
end
end
@@ -66,6 +84,7 @@ module API
namespace 'dists/*distribution', requirements: DISTRIBUTION_REQUIREMENTS do
# GET {projects|groups}/:id/packages/debian/dists/*distribution/Release.gpg
+ # https://wiki.debian.org/DebianRepository/Format#A.22Release.22_files
desc 'The Release file signature' do
detail 'This feature was introduced in GitLab 13.5'
end
@@ -76,6 +95,7 @@ module API
end
# GET {projects|groups}/:id/packages/debian/dists/*distribution/Release
+ # https://wiki.debian.org/DebianRepository/Format#A.22Release.22_files
desc 'The unsigned Release file' do
detail 'This feature was introduced in GitLab 13.5'
end
@@ -86,6 +106,7 @@ module API
end
# GET {projects|groups}/:id/packages/debian/dists/*distribution/InRelease
+ # https://wiki.debian.org/DebianRepository/Format#A.22Release.22_files
desc 'The signed Release file' do
detail 'This feature was introduced in GitLab 13.5'
end
@@ -97,31 +118,87 @@ module API
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'
+ namespace ':component', requirements: COMPONENT_ARCHITECTURE_REQUIREMENTS do
+ params do
+ requires :architecture, type: String, desc: 'The Debian Architecture', regexp: Gitlab::Regex.debian_architecture_regex
+ end
+
+ namespace 'debian-installer/binary-:architecture' do
+ # GET {projects|groups}/:id/packages/debian/dists/*distribution/:component/debian-installer/binary-:architecture/Packages
+ # https://wiki.debian.org/DebianRepository/Format#A.22Packages.22_Indices
+ desc 'The installer (udeb) binary files index' do
+ detail 'This feature was introduced in GitLab 15.4'
+ end
+
+ route_setting :authentication, authenticate_non_public: true
+ get 'Packages' do
+ present_index_file!(:di_packages)
+ end
+
+ # GET {projects|groups}/:id/packages/debian/dists/*distribution/:component/debian-installer/binary-:architecture/by-hash/SHA256/:file_sha256
+ # https://wiki.debian.org/DebianRepository/Format?action=show&redirect=RepositoryFormat#indices_acquisition_via_hashsums_.28by-hash.29
+ desc 'The installer (udeb) binary files index by hash' do
+ detail 'This feature was introduced in GitLab 15.4'
+ end
+
+ route_setting :authentication, authenticate_non_public: true
+ get 'by-hash/SHA256/:file_sha256' do
+ present_index_file!(:di_packages)
+ end
+ end
+
+ namespace 'source', requirements: COMPONENT_ARCHITECTURE_REQUIREMENTS do
+ # GET {projects|groups}/:id/packages/debian/dists/*distribution/:component/source/Sources
+ # https://wiki.debian.org/DebianRepository/Format#A.22Sources.22_Indices
+ desc 'The source files index' do
+ detail 'This feature was introduced in GitLab 15.4'
+ end
+
+ route_setting :authentication, authenticate_non_public: true
+ get 'Sources' do
+ present_index_file!(:sources)
+ end
+
+ # GET {projects|groups}/:id/packages/debian/dists/*distribution/:component/source/by-hash/SHA256/:file_sha256
+ # https://wiki.debian.org/DebianRepository/Format?action=show&redirect=RepositoryFormat#indices_acquisition_via_hashsums_.28by-hash.29
+ desc 'The source files index by hash' do
+ detail 'This feature was introduced in GitLab 15.4'
+ end
+
+ route_setting :authentication, authenticate_non_public: true
+ get 'by-hash/SHA256/:file_sha256' do
+ present_index_file!(:sources)
+ end
+ end
+
+ params do
+ requires :architecture, type: String, desc: 'The Debian Architecture', regexp: Gitlab::Regex.debian_architecture_regex
end
- route_setting :authentication, authenticate_non_public: true
- get 'Packages' do
- 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)
+ namespace 'binary-:architecture', requirements: COMPONENT_ARCHITECTURE_REQUIREMENTS do
+ # GET {projects|groups}/:id/packages/debian/dists/*distribution/:component/binary-:architecture/Packages
+ # https://wiki.debian.org/DebianRepository/Format#A.22Packages.22_Indices
+ desc 'The binary files index' do
+ detail 'This feature was introduced in GitLab 13.5'
+ end
+
+ route_setting :authentication, authenticate_non_public: true
+ get 'Packages' do
+ present_index_file!(:packages)
+ end
+
+ # GET {projects|groups}/:id/packages/debian/dists/*distribution/:component/binary-:architecture/by-hash/SHA256/:file_sha256
+ # https://wiki.debian.org/DebianRepository/Format?action=show&redirect=RepositoryFormat#indices_acquisition_via_hashsums_.28by-hash.29
+ desc 'The binary files index by hash' do
+ detail 'This feature was introduced in GitLab 15.4'
+ end
+
+ route_setting :authentication, authenticate_non_public: true
+ get 'by-hash/SHA256/:file_sha256' do
+ present_index_file!(:packages)
+ end
end
end
end