gitlab-org--gitlab-foss/lib/api/import_github.rb

62 lines
1.9 KiB
Ruby
Raw Normal View History

2019-01-17 10:37:08 +00:00
# frozen_string_literal: true
module API
class ImportGithub < ::API::Base
feature_category :importers
2019-01-17 10:37:08 +00:00
rescue_from Octokit::Unauthorized, with: :provider_unauthorized
before do
forbidden! unless Gitlab::CurrentSettings.import_sources&.include?('github')
end
2019-01-17 10:37:08 +00:00
helpers do
def client
@client ||= if Feature.enabled?(:remove_legacy_github_client)
Gitlab::GithubImport::Client.new(params[:personal_access_token], host: params[:github_hostname])
else
Gitlab::LegacyGithubImport::Client.new(params[:personal_access_token], client_options)
end
2019-01-17 10:37:08 +00:00
end
def access_params
{ github_access_token: params[:personal_access_token] }
end
def client_options
{ host: params[:github_hostname] }
2019-01-17 10:37:08 +00:00
end
def provider
:github
end
2019-04-10 21:37:05 +00:00
def provider_unauthorized
2019-04-11 06:43:09 +00:00
error!("Access denied to your #{Gitlab::ImportSources.title(provider.to_s)} account.", 401)
end
2019-01-17 10:37:08 +00:00
end
desc 'Import a GitHub project' do
detail 'This feature was introduced in GitLab 11.3.4.'
2019-07-01 08:19:48 +00:00
success ::ProjectEntity
2019-01-17 10:37:08 +00:00
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, desc: 'Namespace to import repo into'
optional :github_hostname, type: String, desc: 'Custom GitHub enterprise hostname'
2019-01-17 10:37:08 +00:00
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])
else
status result[:http_status]
{ errors: result[:message] }
end
end
end
end