103 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module API
 | 
						|
  class ImportGithub < ::API::Base
 | 
						|
    before { authenticate! }
 | 
						|
 | 
						|
    feature_category :importers
 | 
						|
    urgency :low
 | 
						|
 | 
						|
    rescue_from Octokit::Unauthorized, with: :provider_unauthorized
 | 
						|
    rescue_from Gitlab::GithubImport::RateLimitError, with: :too_many_requests
 | 
						|
 | 
						|
    helpers ::API::Helpers::ImportGithubHelpers
 | 
						|
 | 
						|
    desc 'Import a GitHub project' do
 | 
						|
      detail 'This feature was introduced in GitLab 11.3.4.'
 | 
						|
      success code: 201, model: ::ProjectEntity
 | 
						|
      failure [
 | 
						|
        { code: 400, message: 'Bad request' },
 | 
						|
        { code: 401, message: 'Unauthorized' },
 | 
						|
        { code: 403, message: 'Forbidden' },
 | 
						|
        { code: 422, message: 'Unprocessable entity' },
 | 
						|
        { code: 503, message: 'Service unavailable' }
 | 
						|
      ]
 | 
						|
      tags ['project_import_github']
 | 
						|
    end
 | 
						|
    params do
 | 
						|
      requires :personal_access_token, type: String, desc: 'GitHub personal access token'
 | 
						|
      requires :repo_id, type: Integer, desc: 'GitHub repository ID'
 | 
						|
      optional :new_name, type: String, desc: 'New repo name'
 | 
						|
      requires :target_namespace, type: String, allow_blank: false, desc: 'Namespace or group to import repository into'
 | 
						|
      optional :github_hostname, type: String, desc: 'Custom GitHub enterprise hostname. ' \
 | 
						|
                                                 'For example: https://github.example.com. From GitLab 16.5 to ' \
 | 
						|
                                                 'GitLab 17.1, you must include the path `/api/v3`.'
 | 
						|
      optional :optional_stages, type: Hash, desc: 'Optional stages of import to be performed'
 | 
						|
      optional :timeout_strategy, type: String, values: ::ProjectImportData::TIMEOUT_STRATEGIES,
 | 
						|
        desc: 'Strategy for behavior on timeouts'
 | 
						|
      optional :pagination_limit, type: Integer, desc: 'Pagination limit', values: ->(v) { v > 0 && v <= 100 }
 | 
						|
    end
 | 
						|
    post 'import/github' do
 | 
						|
      result = Import::GithubService.new(client, current_user, params).execute(access_params, provider)
 | 
						|
      if result[:status] == :success
 | 
						|
        present ProjectSerializer.new.represent(result[:project], { serializer: :import, warning: result[:warning] })
 | 
						|
      else
 | 
						|
        status result[:http_status]
 | 
						|
        { errors: result[:message] }
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    desc 'Cancel GitHub project import' do
 | 
						|
      detail 'This feature was introduced in GitLab 15.5'
 | 
						|
      success code: 200, model: ProjectImportEntity
 | 
						|
      failure [
 | 
						|
        { code: 400, message: 'Bad request' },
 | 
						|
        { code: 401, message: 'Unauthorized' },
 | 
						|
        { code: 403, message: 'Forbidden' },
 | 
						|
        { code: 404, message: 'Not found' },
 | 
						|
        { code: 503, message: 'Service unavailable' }
 | 
						|
      ]
 | 
						|
      tags ['project_import_github']
 | 
						|
    end
 | 
						|
    params do
 | 
						|
      requires :project_id, type: Integer, desc: 'ID of importing project to be canceled'
 | 
						|
    end
 | 
						|
    post 'import/github/cancel' do
 | 
						|
      project = Project.imported_from(provider.to_s).find(params[:project_id])
 | 
						|
      result = Import::Github::CancelProjectImportService.new(project, current_user).execute
 | 
						|
 | 
						|
      if result[:status] == :success
 | 
						|
        status :ok
 | 
						|
        present ProjectSerializer.new.represent(project, serializer: :import)
 | 
						|
      else
 | 
						|
        render_api_error!(result[:message], result[:http_status])
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    desc 'Import User Gists' do
 | 
						|
      detail 'This feature was introduced in GitLab 15.8'
 | 
						|
      success code: 202
 | 
						|
      failure [
 | 
						|
        { code: 401, message: 'Unauthorized' },
 | 
						|
        { code: 422, message: 'Unprocessable Entity' },
 | 
						|
        { code: 429, message: 'Too Many Requests' }
 | 
						|
      ]
 | 
						|
    end
 | 
						|
    params do
 | 
						|
      requires :personal_access_token, type: String, desc: 'GitHub personal access token'
 | 
						|
    end
 | 
						|
    post 'import/github/gists' do
 | 
						|
      authorize! :create_snippet
 | 
						|
 | 
						|
      result = Import::Github::GistsImportService.new(current_user, client, access_params).execute
 | 
						|
 | 
						|
      if result[:status] == :success
 | 
						|
        status 202
 | 
						|
      else
 | 
						|
        status result[:http_status]
 | 
						|
        { errors: result[:message] }
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |