Class: OmniAuth::Strategies::Google
- Inherits:
-
OAuth
- Object
- OAuth
- OmniAuth::Strategies::Google
- Defined in:
- lib/omniauth/strategies/google.rb
Overview
Authenticate to Google via OAuth and retrieve basic user information.
Usage:
use OmniAuth::Strategies::Google, 'consumerkey', 'consumersecret'
Instance Method Summary collapse
-
#initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block) ⇒ Google
constructor
A new instance of Google.
-
#request_phase ⇒ Object
Monkeypatch OmniAuth to pass the scope and authorize_params in the consumer.get_request_token call.
- #user_hash ⇒ Object
- #user_info ⇒ Object
Constructor Details
#initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block) ⇒ Google
Returns a new instance of Google.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/omniauth/strategies/google.rb', line 11 def initialize(app, consumer_key=nil, consumer_secret=nil, ={}, &block) = { :access_token_path => '/accounts/OAuthGetAccessToken', :authorize_path => '/accounts/OAuthAuthorizeToken', :request_token_path => '/accounts/OAuthGetRequestToken', :site => 'https://www.google.com', } google_contacts_auth = 'www.google.com/m8/feeds' [:scope] ||= "https://#{google_contacts_auth}" [:scope] << " https://#{google_contacts_auth}" unless [:scope] =~ %r[http[s]?:\/\/#{google_contacts_auth}] [:client_options] = super(app, consumer_key, consumer_secret, , &block) end |
Instance Method Details
#request_phase ⇒ Object
Monkeypatch OmniAuth to pass the scope and authorize_params in the consumer.get_request_token call
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/omniauth/strategies/google.rb', line 63 def request_phase = {:scope => [:scope]} .merge!([:authorize_params]) request_token = consumer.get_request_token({:oauth_callback => callback_url}, ) session['oauth'] ||= {} 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.) else r.redirect(request_token.(:oauth_callback => callback_url)) end r.finish rescue ::Timeout::Error => e fail!(:timeout, e) rescue ::Net::HTTPFatalError, ::OpenSSL::SSL::SSLError => e fail!(:service_unavailable, e) end |
#user_hash ⇒ Object
51 52 53 54 55 56 57 58 59 60 |
# File 'lib/omniauth/strategies/google.rb', line 51 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('https://www.google.com/m8/feeds/contacts/default/full?max-results=1&alt=json').body) end |
#user_info ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/omniauth/strategies/google.rb', line 38 def user_info 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 |