]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
separate ability and capability
[rails.git] / app / controllers / application_controller.rb
index 394b04d58d5a52b8656bca5db03e49384f425b2a..2be8c16371546e9fe39e7491b8e11a66536e54a4 100644 (file)
@@ -1,9 +1,11 @@
 class ApplicationController < ActionController::Base
   include SessionPersistence
-  check_authorization
+  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? }
 
@@ -468,9 +470,21 @@ class ApplicationController < ActionController::Base
     raise
   end
 
-  rescue_from CanCan::AccessDenied do |exception|
-    raise "Access denied on #{exception.action} #{exception.subject.inspect}"
-    # ...
+  def current_ability
+    Ability.new(current_user).merge(granted_capabily)
+  end
+
+  def granted_capabily
+    Capability.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