2015-02-05 13:31:36 -05:00
|
|
|
class Import::GithubController < Import::BaseController
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :verify_github_import_enabled
|
2016-06-27 07:42:22 -04:00
|
|
|
before_action :github_auth, only: [:status, :jobs, :create]
|
2014-12-31 08:07:48 -05:00
|
|
|
|
|
|
|
rescue_from Octokit::Unauthorized, with: :github_unauthorized
|
2015-01-13 14:44:17 -05:00
|
|
|
|
2016-05-02 11:22:38 -04:00
|
|
|
helper_method :logged_in_with_github?
|
|
|
|
|
|
|
|
def new
|
|
|
|
if logged_in_with_github?
|
|
|
|
go_to_github_for_permissions
|
|
|
|
elsif session[:github_access_token]
|
|
|
|
redirect_to status_import_github_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-12-31 08:07:48 -05:00
|
|
|
def callback
|
2015-08-07 03:06:20 -04:00
|
|
|
session[:github_access_token] = client.get_token(params[:code])
|
2015-02-02 20:01:07 -05:00
|
|
|
redirect_to status_import_github_url
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
|
2016-05-02 11:22:38 -04:00
|
|
|
def personal_access_token
|
|
|
|
session[:github_access_token] = params[:personal_access_token]
|
|
|
|
redirect_to status_import_github_url
|
|
|
|
end
|
|
|
|
|
2014-12-31 08:07:48 -05:00
|
|
|
def status
|
2015-02-05 19:57:27 -05:00
|
|
|
@repos = client.repos
|
2014-12-31 08:07:48 -05:00
|
|
|
@already_added_projects = current_user.created_projects.where(import_type: "github")
|
|
|
|
already_added_projects_names = @already_added_projects.pluck(:import_source)
|
|
|
|
|
2015-02-02 21:25:33 -05:00
|
|
|
@repos.reject!{ |repo| already_added_projects_names.include? repo.full_name }
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
|
2015-01-20 14:52:55 -05:00
|
|
|
def jobs
|
2015-02-02 22:30:09 -05:00
|
|
|
jobs = current_user.created_projects.where(import_type: "github").to_json(only: [:id, :import_status])
|
2015-01-20 14:52:55 -05:00
|
|
|
render json: jobs
|
|
|
|
end
|
|
|
|
|
2014-12-31 08:07:48 -05:00
|
|
|
def create
|
|
|
|
@repo_id = params[:repo_id].to_i
|
2015-02-05 19:57:27 -05:00
|
|
|
repo = client.repo(@repo_id)
|
2016-08-08 09:05:58 -04:00
|
|
|
@project_name = params[:new_name].presence || repo.name
|
|
|
|
namespace_path = params[:target_namespace].presence || current_user.namespace_path
|
|
|
|
@target_namespace = find_or_create_namespace(namespace_path, current_user.namespace_path)
|
2014-12-31 08:07:48 -05:00
|
|
|
|
2016-08-30 13:34:37 -04:00
|
|
|
if current_user.can?(:create_projects, @target_namespace)
|
2016-08-08 09:05:58 -04:00
|
|
|
@project = Gitlab::GithubImport::ProjectCreator.new(repo, @project_name, @target_namespace, current_user, access_params).execute
|
2016-08-30 13:34:37 -04:00
|
|
|
else
|
|
|
|
render 'unauthorized'
|
|
|
|
end
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def client
|
2015-08-07 03:06:20 -04:00
|
|
|
@client ||= Gitlab::GithubImport::Client.new(session[:github_access_token])
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
|
2015-02-17 16:52:32 -05:00
|
|
|
def verify_github_import_enabled
|
2015-10-09 13:07:29 -04:00
|
|
|
render_404 unless github_import_enabled?
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
2014-12-31 08:07:48 -05:00
|
|
|
def github_auth
|
2015-08-07 03:06:20 -04:00
|
|
|
if session[:github_access_token].blank?
|
2015-01-18 10:29:37 -05:00
|
|
|
go_to_github_for_permissions
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-18 10:29:37 -05:00
|
|
|
def go_to_github_for_permissions
|
2015-02-05 19:57:27 -05:00
|
|
|
redirect_to client.authorize_url(callback_import_github_url)
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def github_unauthorized
|
2016-05-02 11:22:38 -04:00
|
|
|
session[:github_access_token] = nil
|
|
|
|
redirect_to new_import_github_url,
|
|
|
|
alert: 'Access denied to your GitHub account.'
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
2015-08-07 03:06:20 -04:00
|
|
|
|
2016-05-02 11:22:38 -04:00
|
|
|
def logged_in_with_github?
|
|
|
|
current_user.identities.exists?(provider: 'github')
|
|
|
|
end
|
2015-08-07 03:06:20 -04:00
|
|
|
|
|
|
|
def access_params
|
|
|
|
{ github_access_token: session[:github_access_token] }
|
|
|
|
end
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|