gitlab-org--gitlab-foss/app/controllers/import/github_controller.rb

69 lines
1.8 KiB
Ruby
Raw Normal View History

2015-02-05 18:31:36 +00:00
class Import::GithubController < Import::BaseController
2014-12-31 13:07:48 +00:00
before_filter :github_auth, except: :callback
rescue_from Octokit::Unauthorized, with: :github_unauthorized
2015-01-13 19:44:17 +00:00
2014-12-31 13:07:48 +00:00
def callback
token = client.auth_code.get_token(params[:code]).token
current_user.github_access_token = token
current_user.save
2015-02-03 01:01:07 +00:00
redirect_to status_import_github_url
2014-12-31 13:07:48 +00:00
end
def status
@repos = octo_client.repos
octo_client.orgs.each do |org|
@repos += octo_client.repos(org.login)
end
@already_added_projects = current_user.created_projects.where(import_type: "github")
already_added_projects_names = @already_added_projects.pluck(:import_source)
2015-02-03 02:25:33 +00:00
@repos.reject!{ |repo| already_added_projects_names.include? repo.full_name }
2014-12-31 13:07:48 +00:00
end
2015-01-20 19:52:55 +00:00
def jobs
2015-02-03 03:30:09 +00:00
jobs = current_user.created_projects.where(import_type: "github").to_json(only: [:id, :import_status])
2015-01-20 19:52:55 +00:00
render json: jobs
end
2014-12-31 13:07:48 +00:00
def create
@repo_id = params[:repo_id].to_i
repo = octo_client.repo(@repo_id)
2015-02-05 18:31:36 +00:00
@target_namespace = params[:new_namespace].presence || repo.owner.login
@project_name = repo.name
namespace = get_or_create_namespace || (render and return)
2014-12-31 13:07:48 +00:00
2015-02-02 22:26:29 +00:00
@project = Gitlab::GithubImport::ProjectCreator.new(repo, namespace, current_user).execute
2014-12-31 13:07:48 +00:00
end
private
def client
2015-02-02 22:26:29 +00:00
@client ||= Gitlab::GithubImport::Client.new.client
2014-12-31 13:07:48 +00:00
end
def octo_client
Octokit.auto_paginate = true
2015-02-03 03:30:09 +00:00
@octo_client ||= Octokit::Client.new(access_token: current_user.github_access_token)
2014-12-31 13:07:48 +00:00
end
def github_auth
if current_user.github_access_token.blank?
go_to_github_for_permissions
2014-12-31 13:07:48 +00:00
end
end
def go_to_github_for_permissions
2014-12-31 13:07:48 +00:00
redirect_to client.auth_code.authorize_url({
2015-02-03 01:01:07 +00:00
redirect_uri: callback_import_github_url,
2014-12-31 13:07:48 +00:00
scope: "repo, user, user:email"
})
end
def github_unauthorized
go_to_github_for_permissions
2014-12-31 13:07:48 +00:00
end
end