Class: Sorcery::Providers::Google

Inherits:
Base
  • Object
show all
Includes:
Sorcery::Protocols::Oauth2
Defined in:
lib/sorcery/providers/google.rb

Overview

This class adds support for OAuth with google.com.

config.google.key = <key>
config.google.secret = <secret>
...

Instance Attribute Summary collapse

Attributes inherited from Base

#access_token, #callback_url, #key, #original_callback_url, #secret, #site, #state, #user_info_mapping

Instance Method Summary collapse

Methods included from Sorcery::Protocols::Oauth2

#authorize_url, #build_client, #get_access_token, #oauth_version

Methods inherited from Base

#auth_hash, descendants, #has_callback?, name

Constructor Details

#initializeGoogle

Returns a new instance of Google.



14
15
16
17
18
19
20
21
22
# File 'lib/sorcery/providers/google.rb', line 14

def initialize
  super

  @site          = 'https://accounts.google.com'
  @auth_url      = '/o/oauth2/auth'
  @token_url     = '/o/oauth2/token'
  @user_info_url = 'https://www.googleapis.com/oauth2/v1/userinfo'
  @scope         = 'https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile'
end

Instance Attribute Details

#auth_urlObject

Returns the value of attribute auth_url.



12
13
14
# File 'lib/sorcery/providers/google.rb', line 12

def auth_url
  @auth_url
end

#scopeObject

Returns the value of attribute scope.



12
13
14
# File 'lib/sorcery/providers/google.rb', line 12

def scope
  @scope
end

#token_urlObject

Returns the value of attribute token_url.



12
13
14
# File 'lib/sorcery/providers/google.rb', line 12

def token_url
  @token_url
end

#user_info_urlObject

Returns the value of attribute user_info_url.



12
13
14
# File 'lib/sorcery/providers/google.rb', line 12

def 
  @user_info_url
end

Instance Method Details

#get_user_hash(access_token) ⇒ Object



24
25
26
27
28
29
30
31
# File 'lib/sorcery/providers/google.rb', line 24

def get_user_hash(access_token)
  response = access_token.get()

  auth_hash(access_token).tap do |h|
    h[:user_info] = JSON.parse(response.body)
    h[:uid] = h[:user_info]['id']
  end
end

#login_url(_params, _session) ⇒ Object

calculates and returns the url to which the user should be redirected, to get authenticated at the external provider’s site.



35
36
37
# File 'lib/sorcery/providers/google.rb', line 35

def (_params, _session)
  authorize_url(authorize_url: auth_url)
end

#process_callback(params, _session) ⇒ Object

tries to login the user from access token



40
41
42
43
44
45
46
# File 'lib/sorcery/providers/google.rb', line 40

def process_callback(params, _session)
  args = {}.tap do |a|
    a[:code] = params[:code] if params[:code]
  end

  get_access_token(args, token_url: token_url, token_method: :post)
end