2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
class Import::GitlabController < Import::BaseController
|
2018-11-18 11:00:15 +05:30
|
|
|
MAX_PROJECT_PAGES = 15
|
|
|
|
PER_PAGE_PROJECTS = 100
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :verify_gitlab_import_enabled
|
|
|
|
before_action :gitlab_auth, except: :callback
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
rescue_from OAuth2::Error, with: :gitlab_unauthorized
|
|
|
|
|
|
|
|
def callback
|
2015-09-25 12:07:36 +05:30
|
|
|
session[:gitlab_access_token] = client.get_token(params[:code], callback_import_gitlab_url)
|
2015-04-26 12:48:37 +05:30
|
|
|
redirect_to status_import_gitlab_url
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2015-04-26 12:48:37 +05:30
|
|
|
def status
|
2018-11-18 11:00:15 +05:30
|
|
|
@repos = client.projects(starting_page: 1, page_limit: MAX_PROJECT_PAGES, per_page: PER_PAGE_PROJECTS)
|
2015-09-11 14:41:01 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
@already_added_projects = find_already_added_projects('gitlab')
|
2015-04-26 12:48:37 +05:30
|
|
|
already_added_projects_names = @already_added_projects.pluck(:import_source)
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
@repos = @repos.to_a.reject { |repo| already_added_projects_names.include? repo["path_with_namespace"] }
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
def jobs
|
2018-10-15 14:42:47 +05:30
|
|
|
render json: find_jobs('gitlab')
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2018-03-27 19:54:05 +05:30
|
|
|
repo = client.project(params[:repo_id].to_i)
|
|
|
|
target_namespace = find_or_create_namespace(repo['namespace']['path'], client.user['username'])
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
if current_user.can?(:create_projects, target_namespace)
|
|
|
|
project = Gitlab::GitlabImport::ProjectCreator.new(repo, target_namespace, current_user, access_params).execute
|
|
|
|
|
|
|
|
if project.persisted?
|
|
|
|
render json: ProjectSerializer.new.represent(project)
|
|
|
|
else
|
2018-11-08 19:23:39 +05:30
|
|
|
render json: { errors: project_save_error(project) }, status: :unprocessable_entity
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
2016-09-29 09:46:39 +05:30
|
|
|
else
|
2019-07-07 11:18:12 +05:30
|
|
|
render json: { errors: _('This namespace has already been taken! Please choose another one.') }, status: :unprocessable_entity
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def client
|
2015-09-25 12:07:36 +05:30
|
|
|
@client ||= Gitlab::GitlabImport::Client.new(session[:gitlab_access_token])
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def verify_gitlab_import_enabled
|
2015-10-24 18:46:33 +05:30
|
|
|
render_404 unless gitlab_import_enabled?
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_auth
|
2015-09-25 12:07:36 +05:30
|
|
|
if session[:gitlab_access_token].blank?
|
2015-04-26 12:48:37 +05:30
|
|
|
go_to_gitlab_for_permissions
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def go_to_gitlab_for_permissions
|
|
|
|
redirect_to client.authorize_url(callback_import_gitlab_url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_unauthorized
|
|
|
|
go_to_gitlab_for_permissions
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
|
|
|
|
def access_params
|
|
|
|
{ gitlab_access_token: session[:gitlab_access_token] }
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|