]> git.openstreetmap.org Git - rails.git/commitdiff
Get OAuth working, including a hack for Potlatch
authorTom Hughes <tom@compton.nu>
Fri, 30 Sep 2011 11:02:15 +0000 (12:02 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 14 Nov 2011 09:42:55 +0000 (09:42 +0000)
app/controllers/application_controller.rb
config/initializers/oauth.rb [new file with mode: 0644]

index b9f98071cccf216f0ad272a6296ddfb0bc9ae168..2d137cc41d7be704914a395899e4067adf1c2f22 100644 (file)
@@ -106,9 +106,7 @@ class ApplicationController < ActionController::Base
   # is optional.
   def setup_user_auth
     # try and setup using OAuth
-    if Authenticator.new(self, [:token]).allow?
-      @user = current_token.user
-    else
+    if not Authenticator.new(self, [:token]).allow?
       username, passwd = get_auth_data # parse from headers
       # authenticate per-scheme
       if username.nil?
@@ -358,6 +356,11 @@ private
     return [user, pass] 
   end 
 
+  # used by oauth plugin to set the current user
+  def current_user=(user)
+    @user=user
+  end
+
   # override to stop oauth plugin sending errors
   def invalid_oauth_response
   end
diff --git a/config/initializers/oauth.rb b/config/initializers/oauth.rb
new file mode 100644 (file)
index 0000000..56dd9ff
--- /dev/null
@@ -0,0 +1,11 @@
+require 'oauth/rack/oauth_filter'
+
+Rails.configuration.middleware.use OAuth::Rack::OAuthFilter
+
+module OAuth::RequestProxy
+  class RackRequest
+    def method
+      request.request_method
+    end
+  end
+end