2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
2021-01-03 14:25:43 +05:30
|
|
|
class GroupImport < ::API::Base
|
2021-01-29 00:20:46 +05:30
|
|
|
feature_category :importers
|
2022-07-16 23:28:13 +05:30
|
|
|
urgency :low
|
2021-01-29 00:20:46 +05:30
|
|
|
|
2020-05-30 21:06:31 +05:30
|
|
|
helpers Helpers::FileUploadHelpers
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
helpers do
|
|
|
|
def parent_group
|
|
|
|
find_group!(params[:parent_id]) if params[:parent_id].present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_create_group!
|
|
|
|
if parent_group
|
|
|
|
authorize! :create_subgroup, parent_group
|
|
|
|
else
|
|
|
|
authorize! :create_group
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def closest_allowed_visibility_level
|
|
|
|
if parent_group
|
|
|
|
Gitlab::VisibilityLevel.closest_allowed_level(parent_group.visibility_level)
|
|
|
|
else
|
|
|
|
Gitlab::VisibilityLevel::PRIVATE
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resource :groups, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
|
|
|
desc 'Workhorse authorize the group import upload' do
|
|
|
|
detail 'This feature was introduced in GitLab 12.8'
|
|
|
|
end
|
|
|
|
post 'import/authorize' do
|
|
|
|
require_gitlab_workhorse!
|
|
|
|
|
|
|
|
Gitlab::Workhorse.verify_api_request!(headers)
|
|
|
|
|
|
|
|
status 200
|
|
|
|
content_type Gitlab::Workhorse::INTERNAL_API_CONTENT_TYPE
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
ImportExportUploader.workhorse_authorize(
|
|
|
|
has_length: false,
|
|
|
|
maximum_size: Gitlab::CurrentSettings.max_import_size.megabytes
|
|
|
|
)
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Create a new group import' do
|
|
|
|
detail 'This feature was introduced in GitLab 12.8'
|
|
|
|
success Entities::Group
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :path, type: String, desc: 'Group path'
|
|
|
|
requires :name, type: String, desc: 'Group name'
|
2022-11-25 23:54:43 +05:30
|
|
|
requires :file, type: ::API::Validations::Types::WorkhorseFile, desc: 'The group export file to be imported', documentation: { type: 'file' }
|
2020-03-13 15:44:24 +05:30
|
|
|
optional :parent_id, type: Integer, desc: "The ID of the parent group that the group will be imported into. Defaults to the current user's namespace."
|
|
|
|
end
|
|
|
|
post 'import' do
|
|
|
|
authorize_create_group!
|
|
|
|
require_gitlab_workhorse!
|
2020-05-30 21:06:31 +05:30
|
|
|
validate_file!
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
group_params = {
|
|
|
|
path: params[:path],
|
|
|
|
name: params[:name],
|
|
|
|
parent_id: params[:parent_id],
|
|
|
|
visibility_level: closest_allowed_visibility_level,
|
2020-05-30 21:06:31 +05:30
|
|
|
import_export_upload: ImportExportUpload.new(import_file: params[:file])
|
2020-03-13 15:44:24 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
group = ::Groups::CreateService.new(current_user, group_params).execute
|
|
|
|
|
|
|
|
if group.persisted?
|
2020-06-23 00:09:42 +05:30
|
|
|
::Groups::ImportExport::ImportService.new(group: group, user: current_user).async_execute
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
accepted!
|
|
|
|
else
|
|
|
|
render_api_error!("Failed to save group #{group.errors.messages}", 400)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|