]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Use cancancan to authorize user_preference_controller
[rails.git] / app / controllers / application_controller.rb
index db4ae9ad392f20f91a60d6c251f8244633cc7d34..b6a2467a4149d01bbfebe932d128f0331ed2c393 100644 (file)
@@ -1,8 +1,11 @@
 class ApplicationController < ActionController::Base
   include SessionPersistence
+  # check_authorization
 
   protect_from_forgery :with => :exception
 
+  rescue_from CanCan::AccessDenied, :with => :deny_access
+
   before_action :fetch_body
   around_action :better_errors_allow_inline, :if => proc { Rails.env.development? }
 
@@ -467,6 +470,19 @@ class ApplicationController < ActionController::Base
     raise
   end
 
+  def current_ability
+    Ability.new(current_user, current_token)
+  end
+
+  def deny_access(exception)
+    if current_user
+      set_locale
+      report_error t("oauth.permissions.missing"), :forbidden
+    else
+      require_user
+    end
+  end
+
   private
 
   # extract authorisation credentials from headers, returns user = nil if none