Module: Sorcery::Protocols::Oauth2

Instance Method Summary collapse

Instance Method Details

#authorize_url(options = {}) ⇒ Object



10
11
12
13
14
15
16
17
18
# File 'lib/sorcery/protocols/oauth2.rb', line 10

def authorize_url(options = {})
  client = build_client(options)
  client.auth_code.authorize_url(
    redirect_uri: @callback_url,
    scope: @scope,
    display: @display,
    state: @state
  )
end

#build_client(options = {}) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
# File 'lib/sorcery/protocols/oauth2.rb', line 32

def build_client(options = {})
  defaults = {
    site: @site,
    ssl: { ca_file: Sorcery::Controller::Config.ca_file }
  }
  ::OAuth2::Client.new(
    @key,
    @secret,
    defaults.merge!(options)
  )
end

#get_access_token(args, options = {}) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
# File 'lib/sorcery/protocols/oauth2.rb', line 20

def get_access_token(args, options = {})
  client = build_client(options)
  client.auth_code.get_token(
    args[:code],
    {
      redirect_uri: @callback_url,
      parse: options.delete(:parse)
    },
    options
  )
end

#oauth_versionObject



6
7
8
# File 'lib/sorcery/protocols/oauth2.rb', line 6

def oauth_version
  '2.0'
end