]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/request_token.rb
Standardise on double quoted strings
[rails.git] / app / models / request_token.rb
index 0044dde261e70debd643f09996d1bafe13c61995..02f1683465111c32aeda63d54b75c9f3bd6c3f5c 100644 (file)
@@ -1,13 +1,12 @@
 class RequestToken < OauthToken
-
   attr_accessor :provided_oauth_verifier
 
   def authorize!(user)
     return false if authorized?
     self.user = user
     self.authorized_at = Time.now
-    self.verifier = OAuth::Helper.generate_key(16)[0,20] unless oauth10?
-    self.save
+    self.verifier = OAuth::Helper.generate_key(20)[0, 20] unless oauth10?
+    save
   end
 
   def exchange!
@@ -17,9 +16,9 @@ class RequestToken < OauthToken
     RequestToken.transaction do
       params = { :user => user, :client_application => client_application }
       # copy the permissions from the authorised request token to the access token
-      client_application.permissions.each { |p|
+      client_application.permissions.each do |p|
         params[p] = read_attribute(p)
-      }
+      end
 
       access_token = AccessToken.create(params)
       invalidate!
@@ -36,11 +35,10 @@ class RequestToken < OauthToken
   end
 
   def oob?
-    self.callback_url=='oob'
+    callback_url.nil? || callback_url.downcase == "oob"
   end
 
   def oauth10?
-    (defined? OAUTH_10_SUPPORT) && OAUTH_10_SUPPORT && self.callback_url.blank?
+    (defined? OAUTH_10_SUPPORT) && OAUTH_10_SUPPORT && callback_url.blank?
   end
-
 end