Class: OmniAuth::Strategies::GoogleHealth

Inherits:
OAuth
  • Object
show all
Defined in:
lib/omniauth/strategies/oauth/google_health.rb

Overview

Authenticate to Google via OAuth and retrieve basic user information.

Usage: use OmniAuth::Strategies::Google, 'consumerkey', 'consumersecret'

Instance Attribute Summary

Attributes inherited from OAuth

#consumer_key, #consumer_options, #consumer_secret, #name

Instance Method Summary collapse

Methods inherited from OAuth

#callback_phase, #consumer, #unique_id

Constructor Details

#initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block) ⇒ GoogleHealth

Returns a new instance of GoogleHealth.



12
13
14
15
16
17
18
19
20
# File 'lib/omniauth/strategies/oauth/google_health.rb', line 12

def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block)
  client_options = {
    :access_token_path => '/accounts/OAuthGetAccessToken',
    :authorize_path => '/accounts/OAuthAuthorizeToken',
    :request_token_path => '/accounts/OAuthGetRequestToken',
    :site => 'https://www.google.com',
  }
  super(app, :google_health, consumer_key, consumer_secret, client_options, options, &block)
end

Instance Method Details

#auth_hashObject



22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/omniauth/strategies/oauth/google_health.rb', line 22

def auth_hash
  ui = 
  OmniAuth::Utils.deep_merge(
    super, {
      'uid' => ui['uid'],
      'user_info' => ui,
      'extra' => {
        'user_hash' => user_hash,
      },
    }
  )
end

#request_phaseObject

Monkeypatch OmniAuth to pass the scope in the consumer.get_request_token call



58
59
60
61
62
63
64
65
66
67
68
# File 'lib/omniauth/strategies/oauth/google_health.rb', line 58

def request_phase
  request_token = consumer.get_request_token({:oauth_callback => callback_url}, {:scope => 'http://www.google.com/health/feeds'})
  (session['oauth']||={})[name.to_s] = {'callback_confirmed' => request_token.callback_confirmed?, 'request_token' => request_token.token, 'request_secret' => request_token.secret}
  r = Rack::Response.new
  if request_token.callback_confirmed?
    r.redirect(request_token.authorize_url)
  else
    r.redirect(request_token.authorize_url(:oauth_callback => callback_url))
  end
  r.finish
end

#user_hashObject



46
47
48
49
50
51
52
53
54
55
# File 'lib/omniauth/strategies/oauth/google_health.rb', line 46

def user_hash
  # Google is very strict about keeping authorization and
  # authentication separated.
  # They give no endpoint to get a user's profile directly that I can
  # find. We *can* get their name and email out of the contacts feed,
  # however. It will fail in the extremely rare case of a user who has
  # a Google Account but has never even signed up for Gmail. This has
  # not been seen in the field.
  @user_hash ||= MultiJson.decode(@access_token.get('http://www.google.com/health/feeds/profile/default/default?digest=true&alt=json').body)
end

#user_infoObject



35
36
37
38
39
40
41
42
43
44
# File 'lib/omniauth/strategies/oauth/google_health.rb', line 35

def 
  email = user_hash['feed']['id']['$t']
  name = user_hash['feed']['author'].first['name']['$t']
  name = email if name.strip == '(unknown)'
  {
    'email' => email,
    'uid' => email,
    'name' => name,
  }
end