1 class ApplicationController < ActionController::Base
2 include SessionPersistence
4 protect_from_forgery :with => :exception
6 before_action :fetch_body
8 helper_method :current_user
12 self.current_user = User.where(:id => session[:user]).where("status IN ('active', 'confirmed', 'suspended')").first
14 if current_user.status == "suspended"
16 session_expires_automatically
18 redirect_to :controller => "user", :action => "suspended"
20 # don't allow access to any auth-requiring part of the site unless
21 # the new CTs have been seen (and accept/decline chosen).
22 elsif !current_user.terms_seen && flash[:skip_terms].nil?
23 flash[:notice] = t "user.terms.you need to accept or decline"
25 redirect_to :controller => "user", :action => "terms", :referer => params[:referer]
27 redirect_to :controller => "user", :action => "terms", :referer => request.fullpath
31 if self.current_user = User.authenticate(:token => session[:token])
32 session[:user] = current_user.id
35 rescue StandardError => ex
36 logger.info("Exception authorizing user: #{ex}")
38 self.current_user = nil
44 redirect_to :controller => "user", :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 @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"] &&
287 request.headers["X-Error-Format"].casecmp("xml").zero?
288 result = OSM::API.new.get_xml_doc
289 result.root.name = "osmError"
290 result.root << (XML::Node.new("status") << "#{Rack::Utils.status_code(status)} #{Rack::Utils::HTTP_STATUS_CODES[status]}")
291 result.root << (XML::Node.new("message") << message)
293 render :xml => result.to_s
295 render :plain => message, :status => status
299 def preferred_languages
300 @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
312 if current_user && 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)
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.new(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
368 ex = ex.original_exception
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 "this_user" instance variable
383 unless @this_user = User.active.find_by(:display_name => params[:display_name])
384 render_unknown_user params[:display_name]
389 # render a "no such user" page
390 def render_unknown_user(name)
391 @title = t "user.no_such_user.title"
392 @not_found_user = name
394 respond_to do |format|
395 format.html { render :template => "user/no_such_user", :status => :not_found }
396 format.all { head :not_found }
401 # Unfortunately if a PUT or POST request that has a body fails to
402 # read it then Apache will sometimes fail to return the response it
403 # is given to the client properly, instead erroring:
405 # https://issues.apache.org/bugzilla/show_bug.cgi?id=44782
407 # To work round this we call rewind on the body here, which is added
408 # as a filter, to force it to be fetched from Apache into a file.
414 append_content_security_policy_directives(
415 :connect_src => %w[nominatim.openstreetmap.org overpass-api.de router.project-osrm.org valhalla.mapzen.com],
416 :script_src => %w[graphhopper.com open.mapquestapi.com],
417 :img_src => %w[developer.mapquest.com]
420 if STATUS == :database_offline || STATUS == :api_offline
421 flash.now[:warning] = t("layouts.osm_offline")
422 elsif STATUS == :database_readonly || STATUS == :api_readonly
423 flash.now[:warning] = t("layouts.osm_read_only")
426 request.xhr? ? "xhr" : "map"
430 editor = if params[:editor]
432 elsif current_user && current_user.preferred_editor
433 current_user.preferred_editor
441 helper_method :preferred_editor
444 if defined?(TOTP_KEY)
445 cookies["_osm_totp_token"] = {
446 :value => ROTP::TOTP.new(TOTP_KEY, :interval => 3600).now,
447 :domain => "openstreetmap.org",
448 :expires => 1.hour.from_now
455 # extract authorisation credentials from headers, returns user = nil if none
457 if request.env.key? "X-HTTP_AUTHORIZATION" # where mod_rewrite might have put it
458 authdata = request.env["X-HTTP_AUTHORIZATION"].to_s.split
459 elsif request.env.key? "REDIRECT_X_HTTP_AUTHORIZATION" # mod_fcgi
460 authdata = request.env["REDIRECT_X_HTTP_AUTHORIZATION"].to_s.split
461 elsif request.env.key? "HTTP_AUTHORIZATION" # regular location
462 authdata = request.env["HTTP_AUTHORIZATION"].to_s.split
464 # only basic authentication supported
465 if authdata && authdata[0] == "Basic"
466 user, pass = Base64.decode64(authdata[1]).split(":", 2)
471 # used to get the current logged in user
476 # used to set the current logged in user
477 def current_user=(user)
481 # override to stop oauth plugin sending errors
482 def invalid_oauth_response; end