Class: OmniAuth::Strategies::Teambox

Inherits:
OAuth2
  • Object
show all
Defined in:
lib/omniauth/strategies/teambox.rb

Instance Attribute Summary

Attributes inherited from OAuth2

#client_id, #client_options, #client_secret, #options

Instance Method Summary collapse

Methods inherited from OAuth2

#callback_url, #client

Constructor Details

#initialize(app, client_id = nil, client_secret = nil, options = {}, &block) ⇒ Teambox

Returns a new instance of Teambox.



7
8
9
10
11
12
13
14
# File 'lib/omniauth/strategies/teambox.rb', line 7

def initialize(app, client_id = nil, client_secret = nil, options = {}, &block)
  client_options = {
    :site => "https://teambox.com/",
    :authorize_path => "/oauth/authorize",
    :access_token_path => "/oauth/token"
  }
  super(app, :teambox, client_id, client_secret, client_options, options, &block)
end

Instance Method Details

#auth_hashObject



39
40
41
42
43
44
45
# File 'lib/omniauth/strategies/teambox.rb', line 39

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

#callback_phaseObject



21
22
23
24
# File 'lib/omniauth/strategies/teambox.rb', line 21

def callback_phase
  options[:grant_type] ||= 'authorization_code'
  super
end

#request_phaseObject



15
16
17
18
19
# File 'lib/omniauth/strategies/teambox.rb', line 15

def request_phase
  options[:scope] ||= "offline_access"
  options[:response_type] ||= 'code'
  super
end

#user_dataObject



26
27
28
# File 'lib/omniauth/strategies/teambox.rb', line 26

def user_data
  @data ||= MultiJson.decode(@access_token.get("/api/1/account"))
end

#user_infoObject



30
31
32
33
34
35
36
37
# File 'lib/omniauth/strategies/teambox.rb', line 30

def 
  {
    'nickname' => user_data['username'],
    'name' => user_data['first_name'],
    'image' => user_data['avatar_url'],
    'urls' => {}
  }
end