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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

245 lines
9.2 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
# PyPI Package Manager Client API
#
# These API endpoints are not meant to be consumed directly by users. They are
# called by the PyPI package manager client when users run commands
# like `pip install` or `twine upload`.
module API
2021-01-03 14:25:43 +05:30
class PypiPackages < ::API::Base
2020-07-28 23:09:34 +05:30
helpers ::API::Helpers::PackagesManagerClientsHelpers
helpers ::API::Helpers::RelatedResourcesHelpers
helpers ::API::Helpers::Packages::BasicAuthHelpers
2021-10-27 15:23:28 +05:30
helpers ::API::Helpers::Packages::DependencyProxyHelpers
2020-07-28 23:09:34 +05:30
include ::API::Helpers::Packages::BasicAuthHelpers::Constants
2021-01-29 00:20:46 +05:30
feature_category :package_registry
2022-07-16 23:28:13 +05:30
urgency :low
2021-01-29 00:20:46 +05:30
2020-07-28 23:09:34 +05:30
default_format :json
rescue_from ArgumentError do |e|
render_api_error!(e.message, 400)
end
rescue_from ActiveRecord::RecordInvalid do |e|
render_api_error!(e.message, 400)
end
before do
require_packages_enabled!
end
2021-09-04 01:27:46 +05:30
helpers do
params :package_download do
requires :file_identifier, type: String, desc: 'The PyPi package file identifier', file_path: true
requires :sha256, type: String, desc: 'The PyPi package sha256 check sum'
end
params :package_name do
requires :package_name, type: String, file_path: true, desc: 'The PyPi package name'
end
2022-07-23 23:45:48 +05:30
def present_simple_index(group_or_project)
authorize_read_package!(group_or_project)
packages = Packages::Pypi::PackagesFinder.new(current_user, group_or_project).execute
presenter = ::Packages::Pypi::SimpleIndexPresenter.new(packages, group_or_project)
present_html(presenter.body)
end
def present_simple_package(group_or_project)
authorize_read_package!(group_or_project)
track_simple_event(group_or_project, 'list_package')
packages = Packages::Pypi::PackagesFinder.new(current_user, group_or_project, { package_name: params[:package_name] }).execute
empty_packages = packages.empty?
redirect_registry_request(empty_packages, :pypi, package_name: params[:package_name]) do
not_found!('Package') if empty_packages
presenter = ::Packages::Pypi::SimplePackageVersionsPresenter.new(packages, group_or_project)
present_html(presenter.body)
end
end
def track_simple_event(group_or_project, event_name)
if group_or_project.is_a?(Project)
project = group_or_project
namespace = group_or_project.namespace
else
project = nil
namespace = group_or_project
end
track_package_event(event_name, :pypi, project: project, namespace: namespace)
end
def present_html(content)
# Adjusts grape output format
# to be HTML
content_type "text/html; charset=utf-8"
env['api.format'] = :binary
body content
end
2021-09-04 01:27:46 +05:30
end
params do
2021-10-27 15:23:28 +05:30
requires :id, type: String, desc: 'The ID of a group'
2021-09-04 01:27:46 +05:30
end
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
after_validation do
unauthorized_user_group!
end
namespace ':id/-/packages/pypi' do
params do
use :package_download
end
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
get 'files/:sha256/*file_identifier' do
group = unauthorized_user_group!
filename = "#{params[:file_identifier]}.#{params[:format]}"
package = Packages::Pypi::PackageFinder.new(current_user, group, { filename: filename, sha256: params[:sha256] }).execute
package_file = ::Packages::PackageFileFinder.new(package, filename, with_file_name_like: false).execute
track_package_event('pull_package', :pypi)
present_carrierwave_file!(package_file.file, supports_direct_download: true)
end
2022-07-23 23:45:48 +05:30
desc 'The PyPi Simple Group Index Endpoint' do
detail 'This feature was introduced in GitLab 15.1'
end
# An API entry point but returns an HTML file instead of JSON.
# PyPi simple API returns a list of packages as a simple HTML file.
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
get 'simple', format: :txt do
present_simple_index(find_authorized_group!)
end
desc 'The PyPi Simple Group Package Endpoint' do
2021-09-04 01:27:46 +05:30
detail 'This feature was introduced in GitLab 12.10'
end
params do
use :package_name
end
2022-07-23 23:45:48 +05:30
# An API entry point but returns an HTML file instead of JSON.
2021-09-04 01:27:46 +05:30
# PyPi simple API returns the package descriptor as a simple HTML file.
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
get 'simple/*package_name', format: :txt do
2022-07-23 23:45:48 +05:30
present_simple_package(find_authorized_group!)
2021-09-04 01:27:46 +05:30
end
end
end
2020-07-28 23:09:34 +05:30
params do
2021-10-27 15:23:28 +05:30
requires :id, type: String, desc: 'The ID of a project'
2020-07-28 23:09:34 +05:30
end
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
before do
unauthorized_user_project!
end
namespace ':id/packages/pypi' do
desc 'The PyPi package download endpoint' do
detail 'This feature was introduced in GitLab 12.10'
end
params do
2021-09-04 01:27:46 +05:30
use :package_download
2020-07-28 23:09:34 +05:30
end
2020-11-24 15:15:51 +05:30
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
2020-07-28 23:09:34 +05:30
get 'files/:sha256/*file_identifier' do
project = unauthorized_user_project!
filename = "#{params[:file_identifier]}.#{params[:format]}"
2021-06-08 01:23:25 +05:30
package = Packages::Pypi::PackageFinder.new(current_user, project, { filename: filename, sha256: params[:sha256] }).execute
2020-07-28 23:09:34 +05:30
package_file = ::Packages::PackageFileFinder.new(package, filename, with_file_name_like: false).execute
2021-09-04 01:27:46 +05:30
track_package_event('pull_package', :pypi, project: project, namespace: project.namespace)
2020-07-28 23:09:34 +05:30
present_carrierwave_file!(package_file.file, supports_direct_download: true)
end
2022-07-23 23:45:48 +05:30
desc 'The PyPi Simple Project Index Endpoint' do
detail 'This feature was introduced in GitLab 15.1'
end
# An API entry point but returns an HTML file instead of JSON.
# PyPi simple API returns a list of packages as a simple HTML file.
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
get 'simple', format: :txt do
present_simple_index(authorized_user_project)
end
desc 'The PyPi Simple Project Package Endpoint' do
2020-07-28 23:09:34 +05:30
detail 'This feature was introduced in GitLab 12.10'
end
params do
2021-09-04 01:27:46 +05:30
use :package_name
2020-07-28 23:09:34 +05:30
end
2022-07-23 23:45:48 +05:30
# An API entry point but returns an HTML file instead of JSON.
2020-07-28 23:09:34 +05:30
# PyPi simple API returns the package descriptor as a simple HTML file.
2020-11-24 15:15:51 +05:30
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
2020-07-28 23:09:34 +05:30
get 'simple/*package_name', format: :txt do
2022-07-23 23:45:48 +05:30
present_simple_package(authorized_user_project)
2020-07-28 23:09:34 +05:30
end
desc 'The PyPi Package upload endpoint' do
detail 'This feature was introduced in GitLab 12.10'
end
params do
requires :content, type: ::API::Validations::Types::WorkhorseFile, desc: 'The package file to be published (generated by Multipart middleware)'
requires :name, type: String
requires :version, type: String
2022-05-07 20:08:51 +05:30
optional :requires_python, type: String
2020-07-28 23:09:34 +05:30
optional :md5_digest, type: String
2022-05-03 16:02:30 +05:30
optional :sha256_digest, type: String, regexp: Gitlab::Regex.sha256_regex
2020-07-28 23:09:34 +05:30
end
2020-11-24 15:15:51 +05:30
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
2020-07-28 23:09:34 +05:30
post do
authorize_upload!(authorized_user_project)
2020-11-24 15:15:51 +05:30
bad_request!('File is too large') if authorized_user_project.actual_limits.exceeded?(:pypi_max_file_size, params[:content].size)
2020-07-28 23:09:34 +05:30
2021-09-04 01:27:46 +05:30
track_package_event('push_package', :pypi, project: authorized_user_project, user: current_user, namespace: authorized_user_project.namespace)
2020-07-28 23:09:34 +05:30
2022-08-13 15:12:31 +05:30
unprocessable_entity! if Gitlab::FIPS.enabled? && declared_params[:md5_digest].present?
2020-07-28 23:09:34 +05:30
::Packages::Pypi::CreatePackageService
2021-02-22 17:27:13 +05:30
.new(authorized_user_project, current_user, declared_params.merge(build: current_authenticated_job))
2020-07-28 23:09:34 +05:30
.execute
created!
rescue ObjectStorage::RemoteStoreError => e
Gitlab::ErrorTracking.track_exception(e, extra: { file_name: params[:name], project_id: authorized_user_project.id })
forbidden!
end
2020-11-24 15:15:51 +05:30
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
2020-07-28 23:09:34 +05:30
post 'authorize' do
2020-11-24 15:15:51 +05:30
authorize_workhorse!(
subject: authorized_user_project,
has_length: false,
maximum_size: authorized_user_project.actual_limits.pypi_max_file_size
)
2020-07-28 23:09:34 +05:30
end
end
end
end
end