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.



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

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.



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

def base_str
  @base_str
end

#callback_urlObject

Returns the value of attribute callback_url.



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

def callback_url
  @callback_url
end

#consumer_keyObject

Returns the value of attribute consumer_key.



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

def consumer_key
  @consumer_key
end

#consumer_secretObject

Returns the value of attribute consumer_secret.



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

def consumer_secret
  @consumer_secret
end

#oauth_versionObject

Returns the value of attribute oauth_version.



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

def oauth_version
  @oauth_version
end

#paramsObject

Returns the value of attribute params.



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

def params
  @params
end

#req_methodObject

Returns the value of attribute req_method.



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

def req_method
  @req_method
end

#req_urlObject

Returns the value of attribute req_url.



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

def req_url
  @req_url
end

#sig_methodObject

Returns the value of attribute sig_method.



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

def sig_method
  @sig_method
end

#tokenObject

Returns the value of attribute token.



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

def token
  @token
end

#token_secretObject

Returns the value of attribute token_secret.



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

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



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

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

#percent_encode(string) ⇒ Object



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

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



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

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



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 148

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



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

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.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



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

def timestamp
  Time.now.to_i.to_s
end