X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0a8c26e596b40da6d428a5c91db0d815d13c89e4..8dbaf76e7cbdaa3aa0c6a9ac8d1fb886c1fe9fcd:/app/controllers/application.rb diff --git a/app/controllers/application.rb b/app/controllers/application.rb index bc61db5f9..918e4b617 100644 --- a/app/controllers/application.rb +++ b/app/controllers/application.rb @@ -2,6 +2,10 @@ # Likewise, all the methods added will be available for all controllers. class ApplicationController < ActionController::Base + if OSM_STATUS == :database_offline + session :off + end + def authorize_web if session[:user] @user = User.find(session[:user]) @@ -9,6 +13,9 @@ class ApplicationController < ActionController::Base @user = User.authenticate(:token => session[:token]) session[:user] = @user.id end + rescue Exception => ex + logger.info("Exception authorizing user: #{ex.to_s}") + @user = nil end def require_user @@ -36,8 +43,22 @@ class ApplicationController < ActionController::Base end end - def check_availability - if API_READONLY + def check_database_availability(need_api = false) + if OSM_STATUS == :database_offline or (need_api and OSM_STATUS == :api_offline) + redirect_to :controller => 'site', :action => 'offline' + end + end + + def check_read_availability + if OSM_STATUS == :database_offline or OSM_STATUS == :api_offline + response.headers['Error'] = "Database offline for maintenance" + render :nothing => true, :status => :service_unavailable + return false + end + end + + def check_write_availability + if OSM_STATUS == :database_offline or OSM_STATUS == :api_offline or OSM_STATUS == :api_readonly response.headers['Error'] = "Database offline for maintenance" render :nothing => true, :status => :service_unavailable return false