Sha256: ba281ed3ed1de309fb3636a554213c8d9f027518238beeafab5df121df6e7271
Contents?: true
Size: 1.54 KB
Versions: 3
Compression:
Stored size: 1.54 KB
Contents
require 'omniauth/oauth' require 'multi_json' module OmniAuth module Strategies # Authenticate to Identica via OAuth and retrieve basic # user information. # # Usage: # use OmniAuth::Strategies::Identica, 'consumerkey', 'consumersecret' class Identica < OmniAuth::Strategies::OAuth def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) client_options = { :access_token_path => '/api/oauth/access_token', :authorize_path => '/api/oauth/authorize', :request_token_path => '/api/oauth/request_token', :site => 'http://identi.ca', } super(app, :identica, consumer_key, consumer_secret, client_options, 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 def user_info user_hash = self.user_hash { 'nickname' => user_hash['screen_name'], 'name' => user_hash['name'], 'location' => user_hash['location'], 'image' => user_hash['profile_image_url'], 'description' => user_hash['description'], 'urls' => { 'Website' => user_hash['url'], }, } end def user_hash @user_hash ||= MultiJson.decode(@access_token.get('/api/account/verify_credentials.json').body) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
oa-oauth-0.3.2 | lib/omniauth/strategies/oauth/identica.rb |
oa-oauth-0.3.0 | lib/omniauth/strategies/oauth/identica.rb |
oa-oauth-0.3.0.rc3 | lib/omniauth/strategies/oauth/identica.rb |