Sha256: 7e5e17a9cf54b3bf487313f726dc34ddf352d67c51130ed04870b3ba724c49c8

Contents?: true

Size: 1.26 KB

Versions: 10

Compression:

Stored size: 1.26 KB

Contents

require 'omniauth/oauth'
require 'multi_json'

module OmniAuth
  module Strategies
    # 
    # Authenticate to SoundCloud via OAuth and retrieve basic
    # user information.
    #
    # Usage:
    #
    #    use OmniAuth::Strategies::SoundCloud, 'consumerkey', 'consumersecret'
    #
    
    class SoundCloud < OmniAuth::Strategies::OAuth
      def initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block)
        super(app, :soundcloud, consumer_key, consumer_secret, {:site => 'https://api.soundcloud.com'}, options)
      end
      
      def auth_hash
        OmniAuth::Utils.deep_merge(super, {
          'uid' => user_hash['id'],
          'user_info' => user_info,
          'extra' => {'user_hash' => user_hash}
        })
      end
      
      def user_info
        user_hash = self.user_hash
        
        {
          'name' => user_hash['full_name'],
          'nickname' => user_hash['username'],
          'location' => user_hash['city'],
          'description' => user_hash['description'],
          'image' => user_hash['avatar_url'],
          'urls' => {'Website' => user_hash['website']}
        }
      end
      
      def user_hash
        @user_hash ||= MultiJson.decode(@access_token.get('/me.json').body)
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
oa-oauth-0.2.4 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.3 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.2 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.1 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.0 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.0.beta5 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.0.beta4 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.0.beta3 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.0.beta2 lib/omniauth/strategies/sound_cloud.rb
oa-oauth-0.2.0.beta1 lib/omniauth/strategies/sound_cloud.rb