2017-12-02 14:49:01 -05:00
|
|
|
module API
|
|
|
|
class ProjectExport < Grape::API
|
|
|
|
before do
|
2018-02-28 22:32:03 -05:00
|
|
|
not_found! unless Gitlab::CurrentSettings.project_export_enabled?
|
2017-12-02 14:49:01 -05:00
|
|
|
authorize_admin_project
|
|
|
|
end
|
|
|
|
|
|
|
|
params do
|
|
|
|
requires :id, type: String, desc: 'The ID of a project'
|
|
|
|
end
|
|
|
|
resource :projects, requirements: { id: %r{[^/]+} } do
|
|
|
|
desc 'Get export status' do
|
2018-02-24 22:18:46 -05:00
|
|
|
detail 'This feature was introduced in GitLab 10.6.'
|
2017-12-02 14:49:01 -05:00
|
|
|
success Entities::ProjectExportStatus
|
|
|
|
end
|
|
|
|
get ':id/export' do
|
|
|
|
present user_project, with: Entities::ProjectExportStatus
|
|
|
|
end
|
|
|
|
|
2018-02-24 22:18:46 -05:00
|
|
|
desc 'Download export' do
|
|
|
|
detail 'This feature was introduced in GitLab 10.6.'
|
|
|
|
end
|
2017-12-02 14:49:01 -05:00
|
|
|
get ':id/export/download' do
|
|
|
|
path = user_project.export_project_path
|
|
|
|
|
2018-06-25 09:10:26 -04:00
|
|
|
if path
|
|
|
|
present_disk_file!(path, File.basename(path), 'application/gzip')
|
|
|
|
elsif user_project.export_project_object_exists?
|
|
|
|
present_carrierwave_file!(user_project.import_export_upload.export_file)
|
|
|
|
else
|
|
|
|
render_api_error!('404 Not found or has expired', 404)
|
|
|
|
end
|
2017-12-02 14:49:01 -05:00
|
|
|
end
|
|
|
|
|
2018-02-24 22:18:46 -05:00
|
|
|
desc 'Start export' do
|
|
|
|
detail 'This feature was introduced in GitLab 10.6.'
|
|
|
|
end
|
2018-03-14 10:17:35 -04:00
|
|
|
params do
|
|
|
|
optional :description, type: String, desc: 'Override the project description'
|
2018-03-30 11:45:59 -04:00
|
|
|
optional :upload, type: Hash do
|
|
|
|
optional :url, type: String, desc: 'The URL to upload the project'
|
|
|
|
optional :http_method, type: String, default: 'PUT', desc: 'HTTP method to upload the exported project'
|
|
|
|
end
|
2018-03-14 10:17:35 -04:00
|
|
|
end
|
2017-12-02 14:49:01 -05:00
|
|
|
post ':id/export' do
|
2018-03-14 10:17:35 -04:00
|
|
|
project_export_params = declared_params(include_missing: false)
|
2018-03-30 11:45:59 -04:00
|
|
|
after_export_params = project_export_params.delete(:upload) || {}
|
2018-03-14 10:17:35 -04:00
|
|
|
|
2018-03-30 11:45:59 -04:00
|
|
|
export_strategy = if after_export_params[:url].present?
|
|
|
|
params = after_export_params.slice(:url, :http_method).symbolize_keys
|
|
|
|
|
|
|
|
Gitlab::ImportExport::AfterExportStrategies::WebUploadStrategy.new(params)
|
|
|
|
end
|
|
|
|
|
|
|
|
if export_strategy&.invalid?
|
|
|
|
render_validation_error!(export_strategy)
|
|
|
|
else
|
|
|
|
user_project.add_export_job(current_user: current_user,
|
|
|
|
after_export_strategy: export_strategy,
|
|
|
|
params: project_export_params)
|
|
|
|
end
|
2017-12-02 14:49:01 -05:00
|
|
|
|
|
|
|
accepted!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|