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

70 lines
1.9 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class Import::GitlabController < Import::BaseController
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
def status
@repos = client.projects
2015-09-11 14:41:01 +05:30
2015-04-26 12:48:37 +05:30
@already_added_projects = current_user.created_projects.where(import_type: "gitlab")
already_added_projects_names = @already_added_projects.pluck(:import_source)
@repos = @repos.to_a.reject{ |repo| already_added_projects_names.include? repo["path_with_namespace"] }
end
def jobs
jobs = current_user.created_projects.where(import_type: "gitlab").to_json(only: [:id, :import_status])
render json: jobs
end
def create
@repo_id = params[:repo_id].to_i
repo = client.project(@repo_id)
@project_name = repo["name"]
repo_owner = repo["namespace"]["path"]
repo_owner = current_user.username if repo_owner == client.user["username"]
@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::GitlabImport::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::GitlabImport::Client.new(session[:gitlab_access_token])
2015-04-26 12:48:37 +05:30
end
def verify_gitlab_import_enabled
not_found! unless gitlab_import_enabled?
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
private
def access_params
{ gitlab_access_token: session[:gitlab_access_token] }
end
2015-04-26 12:48:37 +05:30
end