Module: Sorcery::Controller::Submodules::External::Providers::Google::GoogleClient

Extended by:
Sorcery::Controller::Submodules::External::Protocols::Oauth2
Defined in:
lib/sorcery/controller/submodules/external/providers/google.rb

Class Attribute Summary collapse

Class Method Summary collapse

Methods included from Sorcery::Controller::Submodules::External::Protocols::Oauth2

authorize_url, build_client, get_access_token, oauth_version

Class Attribute Details

.access_tokenObject (readonly)

Returns the value of attribute access_token.



40
41
42
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 40

def access_token
  @access_token
end

.auth_urlObject

Returns the value of attribute auth_url.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def auth_url
  @auth_url
end

.callback_urlObject

Returns the value of attribute callback_url.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def callback_url
  @callback_url
end

.keyObject

Returns the value of attribute key.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def key
  @key
end

.scopeObject

Returns the value of attribute scope.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def scope
  @scope
end

.secretObject

Returns the value of attribute secret.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def secret
  @secret
end

.siteObject

Returns the value of attribute site.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def site
  @site
end

.token_pathObject

Returns the value of attribute token_path.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def token_path
  @token_path
end

.user_info_mappingObject

Returns the value of attribute user_info_mapping.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def 
  @user_info_mapping
end

.user_info_urlObject

Returns the value of attribute user_info_url.



31
32
33
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 31

def 
  @user_info_url
end

Class Method Details

.get_user_hashObject



53
54
55
56
57
58
59
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 53

def get_user_hash
  user_hash = {}
  response = @access_token.get(@user_info_url)
  user_hash[:user_info] = JSON.parse(response.body)
  user_hash[:uid] = user_hash[:user_info]['id']
  user_hash
end

.has_callback?Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 61

def has_callback?
  true
end

.initObject



44
45
46
47
48
49
50
51
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 44

def init
  @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"
  @user_info_mapping = {}
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.



67
68
69
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 67

def (params,session)
  self.authorize_url({:authorize_url => @auth_url})
end

.process_callback(params, session) ⇒ Object

tries to login the user from access token



72
73
74
75
76
77
78
79
80
# File 'lib/sorcery/controller/submodules/external/providers/google.rb', line 72

def process_callback(params,session)
  args = {}
  args.merge!({:code => params[:code]}) if params[:code]
  options = {
    :token_url => @token_url,
    :token_method => :post
  }
  @access_token = self.get_access_token(args, options)
end