2015-02-05 13:31:36 -05:00
|
|
|
class Import::GitlabController < Import::BaseController
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :verify_gitlab_import_enabled
|
|
|
|
before_action :gitlab_auth, except: :callback
|
2015-01-27 18:37:19 -05:00
|
|
|
|
|
|
|
rescue_from OAuth2::Error, with: :gitlab_unauthorized
|
|
|
|
|
|
|
|
def callback
|
2015-08-07 03:06:20 -04:00
|
|
|
session[:gitlab_access_token] = client.get_token(params[:code], callback_import_gitlab_url)
|
2015-02-02 20:01:07 -05:00
|
|
|
redirect_to status_import_gitlab_url
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def status
|
|
|
|
@repos = client.projects
|
2015-04-16 08:03:37 -04:00
|
|
|
|
2015-01-27 18:37:19 -05:00
|
|
|
@already_added_projects = current_user.created_projects.where(import_type: "gitlab")
|
|
|
|
already_added_projects_names = @already_added_projects.pluck(:import_source)
|
|
|
|
|
2015-02-25 05:18:15 -05:00
|
|
|
@repos = @repos.to_a.reject{ |repo| already_added_projects_names.include? repo["path_with_namespace"] }
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def jobs
|
2015-02-02 21:25:33 -05:00
|
|
|
jobs = current_user.created_projects.where(import_type: "gitlab").to_json(only: [:id, :import_status])
|
2015-01-27 18:37:19 -05:00
|
|
|
render json: jobs
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@repo_id = params[:repo_id].to_i
|
|
|
|
repo = client.project(@repo_id)
|
2016-08-29 17:17:11 -04:00
|
|
|
@project_name = repo['name']
|
2016-08-30 13:34:37 -04:00
|
|
|
@target_namespace = find_or_create_namespace(repo['namespace']['path'], client.user['username'])
|
2015-01-27 18:37:19 -05:00
|
|
|
|
2016-08-30 13:34:37 -04:00
|
|
|
if current_user.can?(:create_projects, @target_namespace)
|
|
|
|
@project = Gitlab::GitlabImport::ProjectCreator.new(repo, @target_namespace, current_user, access_params).execute
|
|
|
|
else
|
|
|
|
render 'unauthorized'
|
|
|
|
end
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def client
|
2015-08-07 03:06:20 -04:00
|
|
|
@client ||= Gitlab::GitlabImport::Client.new(session[:gitlab_access_token])
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
|
2015-02-17 16:52:32 -05:00
|
|
|
def verify_gitlab_import_enabled
|
2015-10-09 13:07:29 -04:00
|
|
|
render_404 unless gitlab_import_enabled?
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
2015-01-27 18:37:19 -05:00
|
|
|
def gitlab_auth
|
2015-08-07 03:06:20 -04:00
|
|
|
if session[:gitlab_access_token].blank?
|
2015-01-27 18:37:19 -05:00
|
|
|
go_to_gitlab_for_permissions
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def go_to_gitlab_for_permissions
|
2015-02-02 20:01:07 -05:00
|
|
|
redirect_to client.authorize_url(callback_import_gitlab_url)
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_unauthorized
|
|
|
|
go_to_gitlab_for_permissions
|
|
|
|
end
|
2015-08-07 03:06:20 -04:00
|
|
|
|
|
|
|
def access_params
|
|
|
|
{ gitlab_access_token: session[:gitlab_access_token] }
|
|
|
|
end
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|