1 class ApplicationController < ActionController::Base
2 include SessionPersistence
4 protect_from_forgery :with => :exception
6 rescue_from CanCan::AccessDenied, :with => :deny_access
9 before_action :fetch_body
10 around_action :better_errors_allow_inline, :if => proc { Rails.env.development? }
12 attr_accessor :current_user
13 helper_method :current_user
19 self.current_user = User.where(:id => session[:user]).where("status IN ('active', 'confirmed', 'suspended')").first
21 if current_user.status == "suspended"
23 session_expires_automatically
25 redirect_to :controller => "users", :action => "suspended"
27 # don't allow access to any auth-requiring part of the site unless
28 # the new CTs have been seen (and accept/decline chosen).
29 elsif !current_user.terms_seen && flash[:skip_terms].nil?
30 flash[:notice] = t "users.terms.you need to accept or decline"
32 redirect_to :controller => "users", :action => "terms", :referer => params[:referer]
34 redirect_to :controller => "users", :action => "terms", :referer => request.fullpath
38 session[:user] = current_user.id if self.current_user = User.authenticate(:token => session[:token])
40 rescue StandardError => ex
41 logger.info("Exception authorizing user: #{ex}")
43 self.current_user = nil
49 redirect_to :controller => "users", :action => "login", :referer => request.fullpath
57 @oauth = current_user.access_token(Settings.oauth_key) if current_user && Settings.key?(:oauth_key)
61 # require the user to have cookies enabled in their browser
63 if request.cookies["_osm_session"].to_s == ""
64 if params[:cookie_test].nil?
65 session[:cookie_test] = true
66 redirect_to params.to_unsafe_h.merge(:cookie_test => "true")
69 flash.now[:warning] = t "application.require_cookies.cookies_needed"
72 session.delete(:cookie_test)
76 def check_database_readable(need_api = false)
77 if Settings.status == "database_offline" || (need_api && Settings.status == "api_offline")
79 report_error "Database offline for maintenance", :service_unavailable
81 redirect_to :controller => "site", :action => "offline"
86 def check_database_writable(need_api = false)
87 if Settings.status == "database_offline" || Settings.status == "database_readonly" ||
88 (need_api && (Settings.status == "api_offline" || Settings.status == "api_readonly"))
90 report_error "Database offline for maintenance", :service_unavailable
92 redirect_to :controller => "site", :action => "offline"
97 def check_api_readable
98 if api_status == "offline"
99 report_error "Database offline for maintenance", :service_unavailable
104 def check_api_writable
105 unless api_status == "online"
106 report_error "Database offline for maintenance", :service_unavailable
112 if Settings.status == "database_offline"
114 elsif Settings.status == "database_readonly"
122 status = database_status
123 if status == "online"
124 if Settings.status == "api_offline"
126 elsif Settings.status == "api_readonly"
133 def require_public_data
134 unless current_user.data_public?
135 report_error "You must make your edits public to upload new data", :forbidden
140 # Report and error to the user
141 # (If anyone ever fixes Rails so it can set a http status "reason phrase",
142 # rather than only a status code and having the web engine make up a
143 # phrase from that, we can also put the error message into the status
144 # message. For now, rails won't let us)
145 def report_error(message, status = :bad_request)
146 # TODO: some sort of escaping of problem characters in the message
147 response.headers["Error"] = message
149 if request.headers["X-Error-Format"]&.casecmp("xml")&.zero?
150 result = OSM::API.new.get_xml_doc
151 result.root.name = "osmError"
152 result.root << (XML::Node.new("status") << "#{Rack::Utils.status_code(status)} #{Rack::Utils::HTTP_STATUS_CODES[status]}")
153 result.root << (XML::Node.new("message") << message)
155 render :xml => result.to_s
157 render :plain => message, :status => status
161 def preferred_languages(reset = false)
162 @preferred_languages = nil if reset
163 @preferred_languages ||= if params[:locale]
164 Locale.list(params[:locale])
166 current_user.preferred_languages
168 Locale.list(http_accept_language.user_preferred_languages)
172 helper_method :preferred_languages
174 def set_locale(reset = false)
175 if current_user&.languages&.empty? && !http_accept_language.user_preferred_languages.empty?
176 current_user.languages = http_accept_language.user_preferred_languages
180 I18n.locale = Locale.available.preferred(preferred_languages(reset))
182 response.headers["Vary"] = "Accept-Language"
183 response.headers["Content-Language"] = I18n.locale.to_s
186 def api_call_handle_error
188 rescue ActiveRecord::RecordNotFound => ex
190 rescue LibXML::XML::Error, ArgumentError => ex
191 report_error ex.message, :bad_request
192 rescue ActiveRecord::RecordInvalid => ex
193 message = "#{ex.record.class} #{ex.record.id}: "
194 ex.record.errors.each { |attr, msg| message << "#{attr}: #{msg} (#{ex.record[attr].inspect})" }
195 report_error message, :bad_request
196 rescue OSM::APIError => ex
197 report_error ex.message, ex.status
198 rescue AbstractController::ActionNotFound => ex
200 rescue StandardError => ex
201 logger.info("API threw unexpected #{ex.class} exception: #{ex.message}")
202 ex.backtrace.each { |l| logger.info(l) }
203 report_error "#{ex.class}: #{ex.message}", :internal_server_error
207 # asserts that the request method is the +method+ given as a parameter
208 # or raises a suitable error. +method+ should be a symbol, e.g: :put or :get.
209 def assert_method(method)
210 ok = request.send((method.to_s.downcase + "?").to_sym)
211 raise OSM::APIBadMethodError, method unless ok
215 # wrap an api call in a timeout
217 OSM::Timer.timeout(Settings.api_timeout, Timeout::Error) do
220 rescue Timeout::Error
221 raise OSM::APITimeoutError
225 # wrap a web page in a timeout
227 OSM::Timer.timeout(Settings.web_timeout, Timeout::Error) do
230 rescue ActionView::Template::Error => ex
233 if ex.is_a?(Timeout::Error) ||
234 (ex.is_a?(ActiveRecord::StatementInvalid) && ex.message =~ /execution expired/)
235 render :action => "timeout"
239 rescue Timeout::Error
240 render :action => "timeout"
244 # ensure that there is a "user" instance variable
246 render_unknown_user params[:display_name] unless @user = User.active.find_by(:display_name => params[:display_name])
250 # render a "no such user" page
251 def render_unknown_user(name)
252 @title = t "users.no_such_user.title"
253 @not_found_user = name
255 respond_to do |format|
256 format.html { render :template => "users/no_such_user", :status => :not_found }
257 format.all { head :not_found }
262 # Unfortunately if a PUT or POST request that has a body fails to
263 # read it then Apache will sometimes fail to return the response it
264 # is given to the client properly, instead erroring:
266 # https://issues.apache.org/bugzilla/show_bug.cgi?id=44782
268 # To work round this we call rewind on the body here, which is added
269 # as a filter, to force it to be fetched from Apache into a file.
275 append_content_security_policy_directives(
276 :child_src => %w[http://127.0.0.1:8111 https://127.0.0.1:8112],
277 :frame_src => %w[http://127.0.0.1:8111 https://127.0.0.1:8112],
278 :connect_src => [Settings.nominatim_url, Settings.overpass_url, Settings.fossgis_osrm_url, Settings.graphhopper_url],
279 :form_action => %w[render.openstreetmap.org],
280 :style_src => %w['unsafe-inline']
283 if Settings.status == "database_offline" || Settings.status == "api_offline"
284 flash.now[:warning] = t("layouts.osm_offline")
285 elsif Settings.status == "database_readonly" || Settings.status == "api_readonly"
286 flash.now[:warning] = t("layouts.osm_read_only")
289 request.xhr? ? "xhr" : "map"
292 def allow_thirdparty_images
293 append_content_security_policy_directives(:img_src => %w[*])
297 editor = if params[:editor]
299 elsif current_user&.preferred_editor
300 current_user.preferred_editor
302 Settings.default_editor
308 helper_method :preferred_editor
311 if Settings.key?(:totp_key)
312 cookies["_osm_totp_token"] = {
313 :value => ROTP::TOTP.new(Settings.totp_key, :interval => 3600).now,
314 :domain => "openstreetmap.org",
315 :expires => 1.hour.from_now
320 def better_errors_allow_inline
323 append_content_security_policy_directives(
324 :script_src => %w['unsafe-inline'],
325 :style_src => %w['unsafe-inline']
332 # Use capabilities from the oauth token if it exists and is a valid access token
333 if Authenticator.new(self, [:token]).allow?
334 Ability.new(nil).merge(Capability.new(current_token))
336 Ability.new(current_user)
340 def deny_access(_exception)
343 report_error t("oauth.permissions.missing"), :forbidden
346 respond_to do |format|
347 format.html { redirect_to :controller => "errors", :action => "forbidden" }
348 format.any { report_error t("application.permission_denied"), :forbidden }
351 respond_to do |format|
352 format.html { redirect_to :controller => "users", :action => "login", :referer => request.fullpath }
353 format.any { head :forbidden }
360 # extract authorisation credentials from headers, returns user = nil if none
362 if request.env.key? "X-HTTP_AUTHORIZATION" # where mod_rewrite might have put it
363 authdata = request.env["X-HTTP_AUTHORIZATION"].to_s.split
364 elsif request.env.key? "REDIRECT_X_HTTP_AUTHORIZATION" # mod_fcgi
365 authdata = request.env["REDIRECT_X_HTTP_AUTHORIZATION"].to_s.split
366 elsif request.env.key? "HTTP_AUTHORIZATION" # regular location
367 authdata = request.env["HTTP_AUTHORIZATION"].to_s.split
369 # only basic authentication supported
370 user, pass = Base64.decode64(authdata[1]).split(":", 2) if authdata && authdata[0] == "Basic"
374 # override to stop oauth plugin sending errors
375 def invalid_oauth_response; end