debian-mirror-gitlab/app/controllers/import/github_controller.rb

88 lines
2.3 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class Import::GithubController < Import::BaseController
2015-09-11 14:41:01 +05:30
before_action :verify_github_import_enabled
2016-08-24 12:49:21 +05:30
before_action :github_auth, only: [:status, :jobs, :create]
2015-04-26 12:48:37 +05:30
rescue_from Octokit::Unauthorized, with: :github_unauthorized
2016-08-24 12:49:21 +05:30
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
2015-04-26 12:48:37 +05:30
def callback
2015-09-25 12:07:36 +05:30
session[:github_access_token] = client.get_token(params[:code])
2015-04-26 12:48:37 +05:30
redirect_to status_import_github_url
end
2016-08-24 12:49:21 +05:30
def personal_access_token
session[:github_access_token] = params[:personal_access_token]
redirect_to status_import_github_url
end
2015-04-26 12:48:37 +05:30
def status
@repos = client.repos
@already_added_projects = current_user.created_projects.where(import_type: "github")
already_added_projects_names = @already_added_projects.pluck(:import_source)
@repos.reject!{ |repo| already_added_projects_names.include? repo.full_name }
end
def jobs
jobs = current_user.created_projects.where(import_type: "github").to_json(only: [:id, :import_status])
render json: jobs
end
def create
@repo_id = params[:repo_id].to_i
repo = client.repo(@repo_id)
@project_name = repo.name
repo_owner = repo.owner.login
repo_owner = current_user.username if repo_owner == client.user.login
@target_namespace = params[:new_namespace].presence || repo_owner
2015-09-11 14:41:01 +05:30
2015-04-26 12:48:37 +05:30
namespace = get_or_create_namespace || (render and return)
2015-09-25 12:07:36 +05:30
@project = Gitlab::GithubImport::ProjectCreator.new(repo, namespace, current_user, access_params).execute
2015-04-26 12:48:37 +05:30
end
private
def client
2015-09-25 12:07:36 +05:30
@client ||= Gitlab::GithubImport::Client.new(session[:github_access_token])
2015-04-26 12:48:37 +05:30
end
def verify_github_import_enabled
2015-10-24 18:46:33 +05:30
render_404 unless github_import_enabled?
2015-04-26 12:48:37 +05:30
end
def github_auth
2015-09-25 12:07:36 +05:30
if session[:github_access_token].blank?
2015-04-26 12:48:37 +05:30
go_to_github_for_permissions
end
end
def go_to_github_for_permissions
redirect_to client.authorize_url(callback_import_github_url)
end
def github_unauthorized
2016-08-24 12:49:21 +05:30
session[:github_access_token] = nil
redirect_to new_import_github_url,
alert: 'Access denied to your GitHub account.'
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
2016-08-24 12:49:21 +05:30
def logged_in_with_github?
current_user.identities.exists?(provider: 'github')
end
2015-09-25 12:07:36 +05:30
def access_params
{ github_access_token: session[:github_access_token] }
end
2015-04-26 12:48:37 +05:30
end