X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b8a8a88004d25837a10436fdc13128146b32c32b..8360f275f95450f3d2ff9815c06cdb014a32a2e4:/app/controllers/application_controller.rb diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index bd1995014..ad91b3a3b 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -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? } @@ -466,6 +469,23 @@ class ApplicationController < ActionController::Base raise end + def current_ability + Ability.new(current_user).merge(granted_capability) + end + + def granted_capability + 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 # extract authorisation credentials from headers, returns user = nil if none