File: tokens.rb

package info (click to toggle)
ruby-octokit 10.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,092 kB
  • sloc: ruby: 13,339; sh: 99; makefile: 7; javascript: 3
file content (31 lines) | stat: -rw-r--r-- 934 bytes parent folder | download | duplicates (2)
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
# frozen_string_literal: true

module Octokit
  class Client
    # Method to check scopes
    #
    # @see https://developer.github.com/v3/oauth_authorizations/#oauth-authorizations-api
    module Tokens
      # Check scopes for a token
      #
      # @param token [String] GitHub OAuth token
      # @param options [Hash] Header params for request
      # @return [Array<String>] OAuth scopes
      # @see https://developer.github.com/v3/oauth/#scopes
      def scopes(token = @access_token, options = {})
        options = options.dup
        raise ArgumentError, 'Access token required' if token.nil?

        auth = { 'Authorization' => "token #{token}" }
        headers = (options.delete(:headers) || {}).merge(auth)

        agent.call(:get, 'user', headers: headers)
             .headers['X-OAuth-Scopes']
             .to_s
             .split(',')
             .map(&:strip)
             .sort
      end
    end
  end
end