Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github_controller.rb « import « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 108fc4396a6069bda1d6f6e5ff0b647200340932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
class Import::GithubController < Import::BaseController
  before_filter :github_auth, except: :callback

  rescue_from Octokit::Unauthorized, with: :github_unauthorized

  def callback
    token = client.auth_code.get_token(params[:code]).token
    current_user.github_access_token = token
    current_user.save
    redirect_to status_import_github_url
  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)

    @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 = octo_client.repo(@repo_id)
    @target_namespace = params[:new_namespace].presence || repo.owner.login
    @project_name = repo.name
    
    namespace = get_or_create_namespace || (render and return)

    @project = Gitlab::GithubImport::ProjectCreator.new(repo, namespace, current_user).execute
  end

  private

  def client
    @client ||= Gitlab::GithubImport::Client.new.client
  end

  def octo_client
    Octokit.auto_paginate = true
    @octo_client ||= Octokit::Client.new(access_token: current_user.github_access_token)
  end

  def github_auth
    if current_user.github_access_token.blank?
      go_to_github_for_permissions
    end
  end

  def go_to_github_for_permissions
    redirect_to client.auth_code.authorize_url({
      redirect_uri: callback_import_github_url,
      scope: "repo, user, user:email"
    })
  end

  def github_unauthorized
    go_to_github_for_permissions
  end
end