summaryrefslogtreecommitdiff
path: root/lib/github/client.rb
blob: 29bd9c1f39ee28f71159803d7bc0bcdd53d1380a (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
module Github
  class Client
    TIMEOUT = 60
    DEFAULT_PER_PAGE = 100

    attr_reader :connection, :rate_limit

    def initialize(options)
      @connection = Faraday.new(url: options.fetch(:url, root_endpoint)) do |faraday|
        faraday.options.open_timeout = options.fetch(:timeout, TIMEOUT)
        faraday.options.timeout = options.fetch(:timeout, TIMEOUT)
        faraday.authorization 'token', options.fetch(:token)
        faraday.adapter :net_http
        faraday.ssl.verify = verify_ssl
      end

      @rate_limit = RateLimit.new(connection)
    end

    def get(url, query = {})
      exceed, reset_in = rate_limit.get
      sleep reset_in if exceed

      Github::Response.new(connection.get(url, { per_page: DEFAULT_PER_PAGE }.merge(query)))
    end

    private

    def root_endpoint
      custom_endpoint || github_endpoint
    end

    def custom_endpoint
      github_omniauth_provider.dig('args', 'client_options', 'site')
    end

    def verify_ssl
      # If there is no config, we're connecting to github.com
      # and we should verify ssl.
      github_omniauth_provider.fetch('verify_ssl', true)
    end

    def github_endpoint
      OmniAuth::Strategies::GitHub.default_options[:client_options][:site]
    end

    def github_omniauth_provider
      @github_omniauth_provider ||=
        Gitlab.config.omniauth.providers
              .find { |provider| provider.name == 'github' }
              .to_h
    end
  end
end