Class: OauthUtil

Inherits:
Object
  • Object
show all
Defined in:
lib/geokit/services/yahoo.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOauthUtil

Returns a new instance of OauthUtil.



103
104
105
106
107
108
109
110
111
112
# File 'lib/geokit/services/yahoo.rb', line 103

def initialize
  @consumer_key = ''
  @consumer_secret = ''
  @token = ''
  @token_secret = ''
  @req_method = 'GET'
  @sig_method = 'HMAC-SHA1'
  @oauth_version = '1.0'
  @callback_url = ''
end

Instance Attribute Details

#base_strObject

Returns the value of attribute base_str.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def base_str
  @base_str
end

#callback_urlObject

Returns the value of attribute callback_url.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def callback_url
  @callback_url
end

#consumer_keyObject

Returns the value of attribute consumer_key.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def consumer_key
  @consumer_key
end

#consumer_secretObject

Returns the value of attribute consumer_secret.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def consumer_secret
  @consumer_secret
end

#oauth_versionObject

Returns the value of attribute oauth_version.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def oauth_version
  @oauth_version
end

#paramsObject

Returns the value of attribute params.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def params
  @params
end

#req_methodObject

Returns the value of attribute req_method.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def req_method
  @req_method
end

#req_urlObject

Returns the value of attribute req_url.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def req_url
  @req_url
end

#sig_methodObject

Returns the value of attribute sig_method.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def sig_method
  @sig_method
end

#tokenObject

Returns the value of attribute token.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def token
  @token
end

#token_secretObject

Returns the value of attribute token_secret.



100
101
102
# File 'lib/geokit/services/yahoo.rb', line 100

def token_secret
  @token_secret
end

Instance Method Details

#nonceObject

openssl::random_bytes returns non-word chars, which need to be removed. using alt method to get length ref snippets.dzone.com/posts/show/491



116
117
118
# File 'lib/geokit/services/yahoo.rb', line 116

def nonce
  Array.new( 5 ) { rand(256) }.pack('C*').unpack('H*').first
end

#percent_encode(string) ⇒ Object



120
121
122
123
124
# File 'lib/geokit/services/yahoo.rb', line 120

def percent_encode( string )
  
  # ref http://snippets.dzone.com/posts/show/1260
  return URI.escape( string, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]") ).gsub('*', '%2A')
end

#query_stringObject

sort (very important as it affects the signature), concat, and percent encode



142
143
144
145
146
147
148
# File 'lib/geokit/services/yahoo.rb', line 142

def query_string
  pairs = []
  @params.sort.each { | key, val | 
    pairs.push( "#{ percent_encode( key ) }=#{ percent_encode( val.to_s ) }" )
  }
  pairs.join '&'
end

#sign(parsed_url) ⇒ Object

organize params & create signature



155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/geokit/services/yahoo.rb', line 155

def sign( parsed_url )
  
  @params = {
    'oauth_consumer_key' => @consumer_key,
    'oauth_nonce' => nonce,
    'oauth_signature_method' => @sig_method,
    'oauth_timestamp' => timestamp,
    'oauth_version' => @oauth_version
  }
 
  # if url has query, merge key/values into params obj overwriting defaults
  if parsed_url.query
    CGI.parse( parsed_url.query ).each do |k,v|
      if v.is_a?(Array) && v.count == 1
        @params[k] = v.first
      else
        @params[k] = v
      end
    end
  end
  
  # @ref http://oauth.net/core/1.0/#rfc.section.9.1.2
  @req_url = parsed_url.scheme + '://' + parsed_url.host + parsed_url.path
  
  # create base str. make it an object attr for ez debugging
  # ref http://oauth.net/core/1.0/#anchor14
  @base_str = [ 
    @req_method, 
    percent_encode( req_url ), 
    
    # normalization is just x-www-form-urlencoded
    percent_encode( query_string ) 
    
  ].join( '&' )
 
  # add signature
  @params[ 'oauth_signature' ] = signature
  
  return self
end

#signatureObject



127
128
129
130
131
132
133
134
135
136
# File 'lib/geokit/services/yahoo.rb', line 127

def signature
  key = percent_encode( @consumer_secret ) + '&' + percent_encode( @token_secret )
  
  # ref: http://blog.nathanielbibler.com/post/63031273/openssl-hmac-vs-ruby-hmac-benchmarks
  digest = OpenSSL::Digest::Digest.new( 'sha1' )
  hmac = OpenSSL::HMAC.digest( digest, key, @base_str )
  
  # ref http://groups.google.com/group/oauth-ruby/browse_thread/thread/9110ed8c8f3cae81
  Base64.encode64( hmac ).chomp.gsub( /\n/, '' )
end

#timestampObject



150
151
152
# File 'lib/geokit/services/yahoo.rb', line 150

def timestamp
  Time.now.to_i.to_s
end