X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/727ee97a3f40f6b6d40546d1417f3a936692b755..2a44ff581f4c547a3637ea52567a3398b1d8bfe0:/app/controllers/application_controller.rb diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index db4ae9ad3..b6a2467a4 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? } @@ -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