Sha256: 6a8981971a4a107e4685d9ab81d4696314b41069f290697287209cabed6944a1

Contents?: true

Size: 1.36 KB

Versions: 4

Compression:

Stored size: 1.36 KB

Contents

require 'omniauth/oauth'
require 'multi_json'

module OmniAuth
  module Strategies
    #
    # Authenticate to SmugMug via OAuth and retrieve basic user information.
    # Usage:
    #    use OmniAuth::Strategies::SmugMug, 'consumerkey', 'consumersecret'
    #
    class SmugMug < OmniAuth::Strategies::OAuth
      def initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block)
        super(app, :smugmug, consumer_key, consumer_secret,
                {:site               => 'http://api.smugmug.com',
                :request_token_path => "/services/oauth/getRequestToken.mg",
                :access_token_path  => "/services/oauth/getAccessToken.mg",
                :authorize_path     => "/services/oauth/authorize.mg"}, options, &block)
      end

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

      # user info according to schema
      def user_info
        {
          'nickname' => user_hash['NickName'],
          'name' => user_hash['NickName']
        }
      end

      # info as supplied by SmugMug
      def user_hash
        @user_hash ||= MultiJson.decode(@access_token.get('/services/api/json/1.2.2/?method=smugmug.auth.checkAccessToken').body)['Auth']['User']
      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/smug_mug.rb
oa-oauth-0.2.6 lib/omniauth/strategies/smug_mug.rb
omniauth-0.2.5 oa-oauth/lib/omniauth/strategies/smug_mug.rb
oa-oauth-0.2.5 lib/omniauth/strategies/smug_mug.rb