From: Andy Allan Date: Wed, 31 Oct 2018 10:16:47 +0000 (+0100) Subject: Merge branch 'master' into cancancan X-Git-Tag: live~3741^2~4 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/f11221f05bcdd05edd7a9f97d6d57e7baaeb4921?ds=sidebyside;hp=-c Merge branch 'master' into cancancan --- f11221f05bcdd05edd7a9f97d6d57e7baaeb4921 diff --combined app/controllers/application_controller.rb index 20fcc5f47,17658231f..1df6dd7d1 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@@ -3,8 -3,6 +3,8 @@@ class ApplicationController < ActionCon 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? } @@@ -24,7 -22,7 +24,7 @@@ # don't allow access to any auth-requiring part of the site unless # the new CTs have been seen (and accept/decline chosen). elsif !current_user.terms_seen && flash[:skip_terms].nil? - flash[:notice] = t "user.terms.you need to accept or decline" + flash[:notice] = t "users.terms.you need to accept or decline" if params[:referer] redirect_to :controller => "users", :action => "terms", :referer => params[:referer] else @@@ -468,29 -466,6 +468,29 @@@ raise end + def current_ability + # Add in capabilities from the oauth token if it exists and is a valid access token + if Authenticator.new(self, [:token]).allow? + Ability.new(current_user).merge(Capability.new(current_token)) + else + Ability.new(current_user) + end + end + + def deny_access(_exception) + if current_token + set_locale + report_error t("oauth.permissions.missing"), :forbidden + elsif current_user + set_locale + report_error t("application.permission_denied"), :forbidden + elsif request.get? + redirect_to :controller => "users", :action => "login", :referer => request.fullpath + else + head :forbidden + end + end + private # extract authorisation credentials from headers, returns user = nil if none diff --combined config/locales/en.yml index 6942c1720,f6d396f76..7b13a894b --- a/config/locales/en.yml +++ b/config/locales/en.yml @@@ -1347,6 -1347,11 +1347,11 @@@ en CC BY), Land Vorarlberg and Land Tirol (under CC BY AT with amendments). + contributors_au_html: | + Australia: Contains data sourced from + PSMA Australia Limited + licensed by the Commonwealth of Australia under + CC BY 4.0. contributors_ca_html: | Canada: Contains data from GeoBase®, GeoGratis (© Department of Natural @@@ -1793,7 -1798,6 +1798,7 @@@ other: "GPX file with %{count} points from %{user}" description_without_count: "GPX file from %{user}" application: + permission_denied: You do not have permission to access that action require_cookies: cookies_needed: "You appear to have cookies disabled - please enable cookies in your browser before continuing." require_admin: