summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/client.rb
blob: 270cbcd9ccd92b9ec35da9d90ec688b81f05b983 (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
module Gitlab
  module GithubImport
    class Client
      attr_reader :client, :api

      def initialize(access_token)
        @client = ::OAuth2::Client.new(
          config.app_id,
          config.app_secret,
          github_options
        )

        if access_token
          ::Octokit.auto_paginate = true
          @api = ::Octokit::Client.new(access_token: access_token)
        end
      end

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

      def get_token(code)
        client.auth_code.get_token(code).token
      end

      def method_missing(method, *args, &block)
        if api.respond_to?(method)
          api.send(method, *args, &block)
        else
          super(method, *args, &block)
        end
      end

      def respond_to?(method)
        api.respond_to?(method) || super
      end

      private

      def config
        Gitlab.config.omniauth.providers.find{|provider| provider.name == "github"}
      end

      def github_options
        OmniAuth::Strategies::GitHub.default_options[:client_options].symbolize_keys
      end
    end
  end
end