Sha256: 172707f2666081baed2460583a2620b4cbd2afa600b7abfa392dd057d201b3c9

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

require 'multi_xml'
require 'omniauth/oauth'

module OmniAuth
  module Strategies
    class Goodreads < OmniAuth::Strategies::OAuth

      def initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block)
        client_options = {
          :site => 'http://www.goodreads.com',
        }
        @consumer_key = consumer_key
        super(app, :goodreads, consumer_key, consumer_secret, client_options, options, &block)
      end

      def auth_hash
        hash = user_hash(@access_token)

        OmniAuth::Utils.deep_merge(super, {
          'uid' => hash.delete('id'),
          'user_info' => hash
        })
      end

      def user_hash(access_token)
        authenticated_user = MultiXml.parse(@access_token.get('/api/auth_user').body)
        id = authenticated_user.xpath('GoodreadsResponse/user').attribute('id').value.to_i
        response_doc = MultiXml.parse(open("http://www.goodreads.com/user/show/#{id}.xml?key=#{@consumer_key}").read)
        user = response_doc.xpath('GoodreadsResponse/user')

        hash = {
          'id' => id,
          'name' => user.xpath('name').text,
          'user_name' => user.xpath('user_name').text,
          'image_url' => user.xpath('image_url').text,
          'about' => user.xpath('about').text,
          'location' => user.xpath('location').text,
          'website' => user.xpath('website').text,
        }
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
omniauth-0.2.6 oa-oauth/lib/omniauth/strategies/goodreads.rb
oa-oauth-0.2.6 lib/omniauth/strategies/goodreads.rb
omniauth-0.2.5 oa-oauth/lib/omniauth/strategies/goodreads.rb
oa-oauth-0.2.5 lib/omniauth/strategies/goodreads.rb