]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Merge 17067 from trunk.
[rails.git] / app / controllers / application_controller.rb
index c701d8adde71093f37b9f927c1e8b228e4d5bbc6..e36c9842ba6c55eea2e652d453b60d16732bc86e 100644 (file)
@@ -39,6 +39,19 @@ class ApplicationController < ActionController::Base
     end
   end
 
+  ##
+  # require the user to have cookies enabled in their browser
+  def require_cookies
+    if request.cookies["_osm_session"].to_s == ""
+      if params[:cookie_test].nil?
+        redirect_to params.merge(:cookie_test => "true")
+        return false
+      else
+        @notice = t 'application.require_cookies.cookies_needed'
+      end
+    end
+  end
+
   # Utility methods to make the controller filter methods easier to read and write.
   def require_allow_read_prefs
     require_capability(:allow_read_prefs)