Class: Muddyit::OAuth

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/muddyit/oauth.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ctoken, csecret, options = {}) ⇒ OAuth

Returns a new instance of OAuth.



10
11
12
# File 'lib/muddyit/oauth.rb', line 10

def initialize(ctoken, csecret, options={})
  @ctoken, @csecret, @consumer_options = ctoken, csecret, {}
end

Instance Attribute Details

#consumer_optionsObject (readonly)

Returns the value of attribute consumer_options.



7
8
9
# File 'lib/muddyit/oauth.rb', line 7

def consumer_options
  @consumer_options
end

#csecretObject (readonly)

Returns the value of attribute csecret.



7
8
9
# File 'lib/muddyit/oauth.rb', line 7

def csecret
  @csecret
end

#ctokenObject (readonly)

Returns the value of attribute ctoken.



7
8
9
# File 'lib/muddyit/oauth.rb', line 7

def ctoken
  @ctoken
end

Instance Method Details

#access_tokenObject



36
37
38
# File 'lib/muddyit/oauth.rb', line 36

def access_token
  @access_token ||= ::OAuth::AccessToken.new(consumer, @atoken, @asecret)
end

#authorize_from_access(atoken, asecret) ⇒ Object



40
41
42
# File 'lib/muddyit/oauth.rb', line 40

def authorize_from_access(atoken, asecret)
  @atoken, @asecret = atoken, asecret
end

#authorize_from_request(rtoken, rsecret) ⇒ Object



30
31
32
33
34
# File 'lib/muddyit/oauth.rb', line 30

def authorize_from_request(rtoken, rsecret)
  request_token = ::OAuth::RequestToken.new(consumer, rtoken, rsecret)
  access_token = request_token.get_access_token()
  @atoken, @asecret = access_token.token, access_token.secret
end

#consumerObject



14
15
16
# File 'lib/muddyit/oauth.rb', line 14

def consumer
  @consumer ||= ::OAuth::Consumer.new(@ctoken, @csecret, {:site => 'http://muddy.it'}.merge(consumer_options))
end

#request_token(options = {}) ⇒ Object

Note: If using oauth with a web app, be sure to provide :oauth_callback. Options:

:oauth_callback => String, url that twitter should redirect to


26
27
28
# File 'lib/muddyit/oauth.rb', line 26

def request_token(options={})
  @request_token ||= consumer.get_request_token(options)
end

#set_callback_url(url) ⇒ Object



18
19
20
21
# File 'lib/muddyit/oauth.rb', line 18

def set_callback_url(url)
  clear_request_token
  request_token(:oauth_callback => url)
end