1 class ApplicationController < ActionController::Base
2 include SessionPersistence
4 protect_from_forgery :with => :exception
6 before_action :fetch_body
7 around_action :better_errors_allow_inline, :if => proc { Rails.env.development? }
9 attr_accessor :current_user
10 helper_method :current_user
14 self.current_user = User.where(:id => session[:user]).where("status IN ('active', 'confirmed', 'suspended')").first
16 if current_user.status == "suspended"
18 session_expires_automatically
20 redirect_to :controller => "users", :action => "suspended"
22 # don't allow access to any auth-requiring part of the site unless
23 # the new CTs have been seen (and accept/decline chosen).
24 elsif !current_user.terms_seen && flash[:skip_terms].nil?
25 flash[:notice] = t "users.terms.you need to accept or decline"
27 redirect_to :controller => "users", :action => "terms", :referer => params[:referer]
29 redirect_to :controller => "users", :action => "terms", :referer => request.fullpath
33 session[:user] = current_user.id if self.current_user = User.authenticate(:token => session[:token])
35 rescue StandardError => ex
36 logger.info("Exception authorizing user: #{ex}")
38 self.current_user = nil
44 redirect_to :controller => "users", :action => "login", :referer => request.fullpath
52 @oauth = current_user.access_token(OAUTH_KEY) if current_user && defined? OAUTH_KEY
56 # requires the user to be logged in by the token or HTTP methods, or have an
57 # OAuth token with the right capability. this method is a bit of a pain to call
58 # directly, since it's cumbersome to call filters with arguments in rails. to
59 # make it easier to read and write the code, there are some utility methods
61 def require_capability(cap)
62 # when the current token is nil, it means the user logged in with a different
63 # method, otherwise an OAuth token was used, which has to be checked.
64 unless current_token.nil?
65 unless current_token.read_attribute(cap)
67 report_error t("oauth.permissions.missing"), :forbidden
74 # require the user to have cookies enabled in their browser
76 if request.cookies["_osm_session"].to_s == ""
77 if params[:cookie_test].nil?
78 session[:cookie_test] = true
79 redirect_to params.to_unsafe_h.merge(:cookie_test => "true")
82 flash.now[:warning] = t "application.require_cookies.cookies_needed"
85 session.delete(:cookie_test)
89 # Utility methods to make the controller filter methods easier to read and write.
90 def require_allow_read_prefs
91 require_capability(:allow_read_prefs)
94 def require_allow_write_prefs
95 require_capability(:allow_write_prefs)
98 def require_allow_write_diary
99 require_capability(:allow_write_diary)
102 def require_allow_write_api
103 require_capability(:allow_write_api)
105 if REQUIRE_TERMS_AGREED && current_user.terms_agreed.nil?
106 report_error "You must accept the contributor terms before you can edit.", :forbidden
111 def require_allow_read_gpx
112 require_capability(:allow_read_gpx)
115 def require_allow_write_gpx
116 require_capability(:allow_write_gpx)
119 def require_allow_write_notes
120 require_capability(:allow_write_notes)
124 # require that the user is a moderator, or fill out a helpful error message
125 # and return them to the index for the controller this is wrapped from.
126 def require_moderator
127 unless current_user.moderator?
129 flash[:error] = t("application.require_moderator.not_a_moderator")
130 redirect_to :action => "index"
138 # sets up the current_user for use by other methods. this is mostly called
139 # from the authorize method, but can be called elsewhere if authorisation
142 # try and setup using OAuth
143 unless Authenticator.new(self, [:token]).allow?
144 username, passwd = get_auth_data # parse from headers
145 # authenticate per-scheme
146 self.current_user = if username.nil?
147 nil # no authentication provided - perhaps first connect (client should retry after 401)
148 elsif username == "token"
149 User.authenticate(:token => passwd) # preferred - random token for user from db, passed in basic auth
151 User.authenticate(:username => username, :password => passwd) # basic auth
155 # have we identified the user?
157 # check if the user has been banned
158 user_block = current_user.blocks.active.take
159 unless user_block.nil?
161 if user_block.zero_hour?
162 report_error t("application.setup_user_auth.blocked_zero_hour"), :forbidden
164 report_error t("application.setup_user_auth.blocked"), :forbidden
168 # if the user hasn't seen the contributor terms then don't
169 # allow editing - they have to go to the web site and see
170 # (but can decline) the CTs to continue.
171 if REQUIRE_TERMS_SEEN && !current_user.terms_seen && flash[:skip_terms].nil?
173 report_error t("application.setup_user_auth.need_to_see_terms"), :forbidden
178 def authorize(realm = "Web Password", errormessage = "Couldn't authenticate you")
179 # make the current_user object from any auth sources we have
182 # handle authenticate pass/fail
184 # no auth, the user does not exist or the password was wrong
185 response.headers["WWW-Authenticate"] = "Basic realm=\"#{realm}\""
186 render :plain => errormessage, :status => :unauthorized
192 # to be used as a before_filter *after* authorize. this checks that
193 # the user is a moderator and, if not, returns a forbidden error.
195 # NOTE: this isn't a very good way of doing it - it duplicates logic
196 # from require_moderator - but what we really need to do is a fairly
197 # drastic refactoring based on :format and respond_to? but not a
198 # good idea to do that in this branch.
199 def authorize_moderator(errormessage = "Access restricted to moderators")
200 # check user is a moderator
201 unless current_user.moderator?
202 render :plain => errormessage, :status => :forbidden
207 def check_database_readable(need_api = false)
208 if STATUS == :database_offline || (need_api && STATUS == :api_offline)
210 report_error "Database offline for maintenance", :service_unavailable
212 redirect_to :controller => "site", :action => "offline"
217 def check_database_writable(need_api = false)
218 if STATUS == :database_offline || STATUS == :database_readonly ||
219 (need_api && (STATUS == :api_offline || STATUS == :api_readonly))
221 report_error "Database offline for maintenance", :service_unavailable
223 redirect_to :controller => "site", :action => "offline"
228 def check_api_readable
229 if api_status == :offline
230 report_error "Database offline for maintenance", :service_unavailable
235 def check_api_writable
236 unless api_status == :online
237 report_error "Database offline for maintenance", :service_unavailable
243 if STATUS == :database_offline
245 elsif STATUS == :database_readonly
253 status = database_status
255 if STATUS == :api_offline
257 elsif STATUS == :api_readonly
265 status = database_status
266 status = :offline if status == :online && STATUS == :gpx_offline
270 def require_public_data
271 unless current_user.data_public?
272 report_error "You must make your edits public to upload new data", :forbidden
277 # Report and error to the user
278 # (If anyone ever fixes Rails so it can set a http status "reason phrase",
279 # rather than only a status code and having the web engine make up a
280 # phrase from that, we can also put the error message into the status
281 # message. For now, rails won't let us)
282 def report_error(message, status = :bad_request)
283 # TODO: some sort of escaping of problem characters in the message
284 response.headers["Error"] = message
286 if request.headers["X-Error-Format"]&.casecmp("xml")&.zero?
287 result = OSM::API.new.get_xml_doc
288 result.root.name = "osmError"
289 result.root << (XML::Node.new("status") << "#{Rack::Utils.status_code(status)} #{Rack::Utils::HTTP_STATUS_CODES[status]}")
290 result.root << (XML::Node.new("message") << message)
292 render :xml => result.to_s
294 render :plain => message, :status => status
298 def preferred_languages(reset = false)
299 @preferred_languages = nil if reset
300 @preferred_languages ||= if params[:locale]
301 Locale.list(params[:locale])
303 current_user.preferred_languages
305 Locale.list(http_accept_language.user_preferred_languages)
309 helper_method :preferred_languages
311 def set_locale(reset = false)
312 if current_user&.languages&.empty? && !http_accept_language.user_preferred_languages.empty?
313 current_user.languages = http_accept_language.user_preferred_languages
317 I18n.locale = Locale.available.preferred(preferred_languages(reset))
319 response.headers["Vary"] = "Accept-Language"
320 response.headers["Content-Language"] = I18n.locale.to_s
323 def api_call_handle_error
325 rescue ActiveRecord::RecordNotFound => ex
327 rescue LibXML::XML::Error, ArgumentError => ex
328 report_error ex.message, :bad_request
329 rescue ActiveRecord::RecordInvalid => ex
330 message = "#{ex.record.class} #{ex.record.id}: "
331 ex.record.errors.each { |attr, msg| message << "#{attr}: #{msg} (#{ex.record[attr].inspect})" }
332 report_error message, :bad_request
333 rescue OSM::APIError => ex
334 report_error ex.message, ex.status
335 rescue AbstractController::ActionNotFound => ex
337 rescue StandardError => ex
338 logger.info("API threw unexpected #{ex.class} exception: #{ex.message}")
339 ex.backtrace.each { |l| logger.info(l) }
340 report_error "#{ex.class}: #{ex.message}", :internal_server_error
344 # asserts that the request method is the +method+ given as a parameter
345 # or raises a suitable error. +method+ should be a symbol, e.g: :put or :get.
346 def assert_method(method)
347 ok = request.send((method.to_s.downcase + "?").to_sym)
348 raise OSM::APIBadMethodError, method unless ok
352 # wrap an api call in a timeout
354 OSM::Timer.timeout(API_TIMEOUT, Timeout::Error) do
357 rescue Timeout::Error
358 raise OSM::APITimeoutError
362 # wrap a web page in a timeout
364 OSM::Timer.timeout(WEB_TIMEOUT, Timeout::Error) do
367 rescue ActionView::Template::Error => ex
370 if ex.is_a?(Timeout::Error) ||
371 (ex.is_a?(ActiveRecord::StatementInvalid) && ex.message =~ /execution expired/)
372 render :action => "timeout"
376 rescue Timeout::Error
377 render :action => "timeout"
381 # ensure that there is a "user" instance variable
383 render_unknown_user params[:display_name] unless @user = User.active.find_by(:display_name => params[:display_name])
387 # render a "no such user" page
388 def render_unknown_user(name)
389 @title = t "users.no_such_user.title"
390 @not_found_user = name
392 respond_to do |format|
393 format.html { render :template => "users/no_such_user", :status => :not_found }
394 format.all { head :not_found }
399 # Unfortunately if a PUT or POST request that has a body fails to
400 # read it then Apache will sometimes fail to return the response it
401 # is given to the client properly, instead erroring:
403 # https://issues.apache.org/bugzilla/show_bug.cgi?id=44782
405 # To work round this we call rewind on the body here, which is added
406 # as a filter, to force it to be fetched from Apache into a file.
412 append_content_security_policy_directives(
413 :child_src => %w[http://127.0.0.1:8111 https://127.0.0.1:8112],
414 :frame_src => %w[http://127.0.0.1:8111 https://127.0.0.1:8112],
415 :connect_src => %w[nominatim.openstreetmap.org overpass-api.de router.project-osrm.org graphhopper.com],
416 :form_action => %w[render.openstreetmap.org],
417 :script_src => %w[open.mapquestapi.com],
418 :img_src => %w[developer.mapquest.com]
421 if STATUS == :database_offline || STATUS == :api_offline
422 flash.now[:warning] = t("layouts.osm_offline")
423 elsif STATUS == :database_readonly || STATUS == :api_readonly
424 flash.now[:warning] = t("layouts.osm_read_only")
427 request.xhr? ? "xhr" : "map"
430 def allow_thirdparty_images
431 append_content_security_policy_directives(:img_src => %w[*])
435 editor = if params[:editor]
437 elsif current_user&.preferred_editor
438 current_user.preferred_editor
446 helper_method :preferred_editor
449 if defined?(TOTP_KEY)
450 cookies["_osm_totp_token"] = {
451 :value => ROTP::TOTP.new(TOTP_KEY, :interval => 3600).now,
452 :domain => "openstreetmap.org",
453 :expires => 1.hour.from_now
458 def better_errors_allow_inline
461 append_content_security_policy_directives(
462 :script_src => %w['unsafe-inline'],
463 :style_src => %w['unsafe-inline']
471 # extract authorisation credentials from headers, returns user = nil if none
473 if request.env.key? "X-HTTP_AUTHORIZATION" # where mod_rewrite might have put it
474 authdata = request.env["X-HTTP_AUTHORIZATION"].to_s.split
475 elsif request.env.key? "REDIRECT_X_HTTP_AUTHORIZATION" # mod_fcgi
476 authdata = request.env["REDIRECT_X_HTTP_AUTHORIZATION"].to_s.split
477 elsif request.env.key? "HTTP_AUTHORIZATION" # regular location
478 authdata = request.env["HTTP_AUTHORIZATION"].to_s.split
480 # only basic authentication supported
481 user, pass = Base64.decode64(authdata[1]).split(":", 2) if authdata && authdata[0] == "Basic"
485 # override to stop oauth plugin sending errors
486 def invalid_oauth_response; end