Class: OmniAuth::Strategies::Tsohu

Inherits:
OAuth
  • Object
show all
Defined in:
lib/omniauth/strategies/oauth/tsohu.rb

Overview

Authenticate to Tsohu via OAuth and retrieve basic user information.

Usage: use OmniAuth::Strategies::Tsohu, 'APIKey', 'APIKeySecret'

Instance Attribute Summary

Attributes inherited from OAuth

#consumer_key, #consumer_options, #consumer_secret, #name

Instance Method Summary collapse

Methods inherited from OAuth

#callback_phase, #consumer, #request_phase, #unique_id

Constructor Details

#initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block) ⇒ Tsohu

Returns a new instance of Tsohu.



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/omniauth/strategies/oauth/tsohu.rb', line 12

def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block)
  @api_key = consumer_key
  client_options = {
    :access_token_path => '/oauth/access_token',
    :authorize_path => '/oauth/authorize',
    :scheme => :header,
    :site => 'http://api.t.sohu.com',
    :request_token_path => '/oauth/request_token',
  }
  super(app, :tsohu, consumer_key, consumer_secret, client_options, options, &block)
end

Instance Method Details

#auth_hashObject



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/omniauth/strategies/oauth/tsohu.rb', line 24

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

#user_hashObject



50
51
52
# File 'lib/omniauth/strategies/oauth/tsohu.rb', line 50

def user_hash
  @user_hash ||= MultiJson.decode(@access_token.get('http://api.t.sohu.com/account/verify_credentials.json').body)
end

#user_infoObject



36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/omniauth/strategies/oauth/tsohu.rb', line 36

def 
  user_hash = self.user_hash
  {
    'username' => user_hash['screen_name'],
    'name' => user_hash['name'],
    'location' => user_hash['location'],
    'image' => user_hash['profile_image_url'],
    'description' => user_hash['description'],
    'urls' => {
      'Tsohu' => user_hash['url']
    }
  }
end