Class: OauthUtil

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOauthUtil

Returns a new instance of OauthUtil.



96
97
98
99
100
101
102
103
104
105
# File 'lib/geokit/geocoders/yahoo.rb', line 96

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.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def base_str
  @base_str
end

#callback_urlObject

Returns the value of attribute callback_url.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def callback_url
  @callback_url
end

#consumer_keyObject

Returns the value of attribute consumer_key.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def consumer_key
  @consumer_key
end

#consumer_secretObject

Returns the value of attribute consumer_secret.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def consumer_secret
  @consumer_secret
end

#oauth_versionObject

Returns the value of attribute oauth_version.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def oauth_version
  @oauth_version
end

#paramsObject

Returns the value of attribute params.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def params
  @params
end

#req_methodObject

Returns the value of attribute req_method.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def req_method
  @req_method
end

#req_urlObject

Returns the value of attribute req_url.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def req_url
  @req_url
end

#sig_methodObject

Returns the value of attribute sig_method.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def sig_method
  @sig_method
end

#tokenObject

Returns the value of attribute token.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

def token
  @token
end

#token_secretObject

Returns the value of attribute token_secret.



93
94
95
# File 'lib/geokit/geocoders/yahoo.rb', line 93

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



109
110
111
# File 'lib/geokit/geocoders/yahoo.rb', line 109

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

#percent_encode(string) ⇒ Object



113
114
115
116
# File 'lib/geokit/geocoders/yahoo.rb', line 113

def percent_encode( string )
  # ref http://snippets.dzone.com/posts/show/1260
  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



134
135
136
137
138
139
140
# File 'lib/geokit/geocoders/yahoo.rb', line 134

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



147
148
149
150
151
152
153
154
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
# File 'lib/geokit/geocoders/yahoo.rb', line 147

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
  
  self
end

#signatureObject



119
120
121
122
123
124
125
126
127
128
# File 'lib/geokit/geocoders/yahoo.rb', line 119

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



142
143
144
# File 'lib/geokit/geocoders/yahoo.rb', line 142

def timestamp
  Time.now.to_i.to_s
end