2020-07-17 02:09:11 -04:00
|
|
|
# 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
|
2020-10-14 20:08:42 -04:00
|
|
|
class PypiPackages < ::API::Base
|
2020-07-17 02:09:11 -04:00
|
|
|
helpers ::API::Helpers::PackagesManagerClientsHelpers
|
|
|
|
helpers ::API::Helpers::RelatedResourcesHelpers
|
|
|
|
helpers ::API::Helpers::Packages::BasicAuthHelpers
|
2021-08-12 17:10:33 -04:00
|
|
|
helpers ::API::Helpers::Packages::DependencyProxyHelpers
|
2020-07-17 02:09:11 -04:00
|
|
|
include ::API::Helpers::Packages::BasicAuthHelpers::Constants
|
|
|
|
|
2020-10-30 11:08:59 -04:00
|
|
|
feature_category :package_registry
|
|
|
|
|
2020-07-17 02:09:11 -04:00
|
|
|
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-05-25 11:10:33 -04:00
|
|
|
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
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
2021-07-28 08:10:41 -04:00
|
|
|
requires :id, type: String, desc: 'The ID of a group'
|
2021-05-25 11:10:33 -04:00
|
|
|
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
|
|
|
|
|
|
|
|
desc 'The PyPi Simple Endpoint' do
|
|
|
|
detail 'This feature was introduced in GitLab 12.10'
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
|
|
|
use :package_name
|
|
|
|
end
|
|
|
|
|
|
|
|
# An Api entry point but returns an HTML file instead of JSON.
|
|
|
|
# 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
|
|
|
|
group = find_authorized_group!
|
|
|
|
authorize_read_package!(group)
|
|
|
|
|
|
|
|
track_package_event('list_package', :pypi)
|
|
|
|
|
2021-08-12 17:10:33 -04:00
|
|
|
packages = Packages::Pypi::PackagesFinder.new(current_user, group, { package_name: params[:package_name] }).execute
|
|
|
|
empty_packages = packages.empty?
|
2021-05-25 11:10:33 -04:00
|
|
|
|
2021-08-12 17:10:33 -04:00
|
|
|
redirect_registry_request(empty_packages, :pypi, package_name: params[:package_name]) do
|
|
|
|
not_found!('Package') if empty_packages
|
|
|
|
presenter = ::Packages::Pypi::PackagePresenter.new(packages, group)
|
2021-05-25 11:10:33 -04:00
|
|
|
|
2021-08-12 17:10:33 -04:00
|
|
|
# Adjusts grape output format
|
|
|
|
# to be HTML
|
|
|
|
content_type "text/html; charset=utf-8"
|
|
|
|
env['api.format'] = :binary
|
|
|
|
|
|
|
|
body presenter.body
|
|
|
|
end
|
2021-05-25 11:10:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-17 02:09:11 -04:00
|
|
|
params do
|
2021-07-28 08:10:41 -04:00
|
|
|
requires :id, type: String, desc: 'The ID of a project'
|
2020-07-17 02:09:11 -04:00
|
|
|
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-05-25 11:10:33 -04:00
|
|
|
use :package_download
|
2020-07-17 02:09:11 -04:00
|
|
|
end
|
|
|
|
|
2020-09-07 05:08:17 -04:00
|
|
|
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
|
2020-07-17 02:09:11 -04:00
|
|
|
get 'files/:sha256/*file_identifier' do
|
|
|
|
project = unauthorized_user_project!
|
|
|
|
|
|
|
|
filename = "#{params[:file_identifier]}.#{params[:format]}"
|
2021-05-14 08:10:58 -04:00
|
|
|
package = Packages::Pypi::PackageFinder.new(current_user, project, { filename: filename, sha256: params[:sha256] }).execute
|
2020-07-17 02:09:11 -04:00
|
|
|
package_file = ::Packages::PackageFileFinder.new(package, filename, with_file_name_like: false).execute
|
|
|
|
|
2021-06-07 08:10:00 -04:00
|
|
|
track_package_event('pull_package', :pypi, project: project, namespace: project.namespace)
|
2020-07-17 02:09:11 -04:00
|
|
|
|
|
|
|
present_carrierwave_file!(package_file.file, supports_direct_download: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'The PyPi Simple Endpoint' do
|
|
|
|
detail 'This feature was introduced in GitLab 12.10'
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
2021-05-25 11:10:33 -04:00
|
|
|
use :package_name
|
2020-07-17 02:09:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# An Api entry point but returns an HTML file instead of JSON.
|
|
|
|
# PyPi simple API returns the package descriptor as a simple HTML file.
|
2020-09-07 05:08:17 -04:00
|
|
|
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
|
2020-07-17 02:09:11 -04:00
|
|
|
get 'simple/*package_name', format: :txt do
|
|
|
|
authorize_read_package!(authorized_user_project)
|
|
|
|
|
2021-06-07 08:10:00 -04:00
|
|
|
track_package_event('list_package', :pypi, project: authorized_user_project, namespace: authorized_user_project.namespace)
|
2020-07-17 02:09:11 -04:00
|
|
|
|
2021-08-12 17:10:33 -04:00
|
|
|
packages = Packages::Pypi::PackagesFinder.new(current_user, authorized_user_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::PackagePresenter.new(packages, authorized_user_project)
|
2020-07-17 02:09:11 -04:00
|
|
|
|
2021-08-12 17:10:33 -04:00
|
|
|
# Adjusts grape output format
|
|
|
|
# to be HTML
|
|
|
|
content_type "text/html; charset=utf-8"
|
|
|
|
env['api.format'] = :binary
|
2020-07-17 02:09:11 -04:00
|
|
|
|
2021-08-12 17:10:33 -04:00
|
|
|
body presenter.body
|
|
|
|
end
|
2020-07-17 02:09:11 -04:00
|
|
|
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 :requires_python, type: String
|
|
|
|
requires :name, type: String
|
|
|
|
requires :version, type: String
|
|
|
|
optional :md5_digest, type: String
|
|
|
|
optional :sha256_digest, type: String
|
|
|
|
end
|
|
|
|
|
2020-09-07 05:08:17 -04:00
|
|
|
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
|
2020-07-17 02:09:11 -04:00
|
|
|
post do
|
|
|
|
authorize_upload!(authorized_user_project)
|
2020-08-21 11:10:03 -04:00
|
|
|
bad_request!('File is too large') if authorized_user_project.actual_limits.exceeded?(:pypi_max_file_size, params[:content].size)
|
2020-07-17 02:09:11 -04:00
|
|
|
|
2021-06-07 08:10:00 -04:00
|
|
|
track_package_event('push_package', :pypi, project: authorized_user_project, user: current_user, namespace: authorized_user_project.namespace)
|
2020-07-17 02:09:11 -04:00
|
|
|
|
|
|
|
::Packages::Pypi::CreatePackageService
|
2020-12-03 19:09:55 -05:00
|
|
|
.new(authorized_user_project, current_user, declared_params.merge(build: current_authenticated_job))
|
2020-07-17 02:09:11 -04:00
|
|
|
.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-09-07 05:08:17 -04:00
|
|
|
route_setting :authentication, deploy_token_allowed: true, basic_auth_personal_access_token: true, job_token_allowed: :basic_auth
|
2020-07-17 02:09:11 -04:00
|
|
|
post 'authorize' do
|
2020-08-21 11:10:03 -04:00
|
|
|
authorize_workhorse!(
|
|
|
|
subject: authorized_user_project,
|
|
|
|
has_length: false,
|
|
|
|
maximum_size: authorized_user_project.actual_limits.pypi_max_file_size
|
|
|
|
)
|
2020-07-17 02:09:11 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|