Sha256: 2274255054b200ab1b0189baffdbb9e561e3ed948676d81d8320f7c6794f9f25

Contents?: true

Size: 1.42 KB

Versions: 3

Compression:

Stored size: 1.42 KB

Contents

module Sorcery
  module Providers
    # This class adds support for OAuth with google.com.
    #
    #   config.google.key = <key>
    #   config.google.secret = <secret>
    #   ...
    #
    class Google < Base

      include Protocols::Oauth2

      attr_accessor :auth_url, :scope, :token_url, :user_info_url

      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

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

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

      # calculates and returns the url to which the user should be redirected,
      # to get authenticated at the external provider's site.
      def login_url(params, session)
        authorize_url({ authorize_url: auth_url })
      end

      # tries to login the user from access token
      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

    end
  end
end

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
cbsorcery-0.8.6 lib/sorcery/providers/google.rb
cb-sorcery-0.8.6 lib/sorcery/providers/google.rb
sorcery-0.8.6 lib/sorcery/providers/google.rb