Class: OmniAuth::Strategies::Vimeo

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

Overview

Authenticate to Vimeo via OAuth and retrieve basic user information.

Usage:

use OmniAuth::Strategies::Vimeo, 'consumerkey', 'consumersecret'

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) ⇒ Vimeo

Returns a new instance of Vimeo.



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

def initialize(app, consumer_key = nil, consumer_secret = nil, options = {}, &block)
  opts = {
    :site               => 'http://vimeo.com',
    :request_token_path => '/oauth/request_token',
    :access_token_path  => '/oauth/access_token',
    :authorize_path     => '/oauth/authorize'
  }
  super(app, :vimeo, consumer_key, consumer_secret, opts, options, &block)
end

Instance Method Details

#auth_hashObject



24
25
26
27
28
29
30
31
# File 'lib/omniauth/strategies/vimeo.rb', line 24

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

#user_hashObject



48
49
50
51
# File 'lib/omniauth/strategies/vimeo.rb', line 48

def user_hash
  url = "http://vimeo.com/api/rest/v2?method=vimeo.people.getInfo&format=json"
  @user_hash ||= MultiJson.decode(@access_token.get(url).body)
end

#user_infoObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/omniauth/strategies/vimeo.rb', line 33

def 
  user = user_hash['person']
  {
    'nickname' => user['username'],
    'name' => user['display_name'],
    'location' => user['location'],
    'description' => user['bio'],
    'image' => user['portraits']['portrait'].select{|h| h['height'] == '300'}.first['_content'],
    'urls' => {
      'website' => user['url'],
      'vimeo' => user['profileurl']
    }
  }
end