debian-mirror-gitlab/lib/api/import_github.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.8 KiB
Ruby
Raw Normal View History

2019-03-02 22:35:43 +05:30
# frozen_string_literal: true
module API
2021-01-03 14:25:43 +05:30
class ImportGithub < ::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
2019-03-02 22:35:43 +05:30
rescue_from Octokit::Unauthorized, with: :provider_unauthorized
helpers do
def client
2020-10-24 23:57:45 +05:30
@client ||= if Feature.enabled?(:remove_legacy_github_client)
2021-01-29 00:20:46 +05:30
Gitlab::GithubImport::Client.new(params[:personal_access_token], host: params[:github_hostname])
2020-10-24 23:57:45 +05:30
else
2022-07-16 23:28:13 +05:30
Gitlab::LegacyGithubImport::Client.new(params[:personal_access_token], **client_options)
2020-10-24 23:57:45 +05:30
end
2019-03-02 22:35:43 +05:30
end
def access_params
{ github_access_token: params[:personal_access_token] }
end
def client_options
2021-01-29 00:20:46 +05:30
{ host: params[:github_hostname] }
2019-03-02 22:35:43 +05:30
end
def provider
:github
end
2019-07-31 22:56:46 +05:30
def provider_unauthorized
error!("Access denied to your #{Gitlab::ImportSources.title(provider.to_s)} account.", 401)
end
2019-03-02 22:35:43 +05:30
end
desc 'Import a GitHub project' do
detail 'This feature was introduced in GitLab 11.3.4.'
2019-09-30 21:07:59 +05:30
success ::ProjectEntity
2019-03-02 22:35:43 +05:30
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'
2021-01-29 00:20:46 +05:30
optional :github_hostname, type: String, desc: 'Custom GitHub enterprise hostname'
2019-03-02 22:35:43 +05:30
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