1 class ApplicationController < ActionController::Base
2 include SessionPersistence
5 protect_from_forgery :with => :exception
7 before_action :fetch_body
8 around_action :better_errors_allow_inline, :if => proc { Rails.env.development? }
10 attr_accessor :current_user
11 helper_method :current_user
15 self.current_user = User.where(:id => session[:user]).where("status IN ('active', 'confirmed', 'suspended')").first
17 if current_user.status == "suspended"
19 session_expires_automatically
21 redirect_to :controller => "user", :action => "suspended"
23 # don't allow access to any auth-requiring part of the site unless
24 # the new CTs have been seen (and accept/decline chosen).
25 elsif !current_user.terms_seen && flash[:skip_terms].nil?
26 flash[:notice] = t "user.terms.you need to accept or decline"
28 redirect_to :controller => "user", :action => "terms", :referer => params[:referer]
30 redirect_to :controller => "user", :action => "terms", :referer => request.fullpath
34 session[:user] = current_user.id if self.current_user = User.authenticate(:token => session[:token])
36 rescue StandardError => ex
37 logger.info("Exception authorizing user: #{ex}")
39 self.current_user = nil
45 redirect_to :controller => "user", :action => "login", :referer => request.fullpath
53 @oauth = current_user.access_token(OAUTH_KEY) if current_user && defined? OAUTH_KEY
57 # requires the user to be logged in by the token or HTTP methods, or have an
58 # OAuth token with the right capability. this method is a bit of a pain to call
59 # directly, since it's cumbersome to call filters with arguments in rails. to
60 # make it easier to read and write the code, there are some utility methods
62 def require_capability(cap)
63 # when the current token is nil, it means the user logged in with a different
64 # method, otherwise an OAuth token was used, which has to be checked.
65 unless current_token.nil?
66 unless current_token.read_attribute(cap)
68 report_error t("oauth.permissions.missing"), :forbidden
75 # require the user to have cookies enabled in their browser
77 if request.cookies["_osm_session"].to_s == ""
78 if params[:cookie_test].nil?
79 session[:cookie_test] = true
80 redirect_to params.to_unsafe_h.merge(:cookie_test => "true")
83 flash.now[:warning] = t "application.require_cookies.cookies_needed"
86 session.delete(:cookie_test)
90 # Utility methods to make the controller filter methods easier to read and write.
91 def require_allow_read_prefs
92 require_capability(:allow_read_prefs)
95 def require_allow_write_prefs
96 require_capability(:allow_write_prefs)
99 def require_allow_write_diary
100 require_capability(:allow_write_diary)
103 def require_allow_write_api
104 require_capability(:allow_write_api)
106 if REQUIRE_TERMS_AGREED && current_user.terms_agreed.nil?
107 report_error "You must accept the contributor terms before you can edit.", :forbidden
112 def require_allow_read_gpx
113 require_capability(:allow_read_gpx)
116 def require_allow_write_gpx
117 require_capability(:allow_write_gpx)
120 def require_allow_write_notes
121 require_capability(:allow_write_notes)
125 # require that the user is a moderator, or fill out a helpful error message
126 # and return them to the index for the controller this is wrapped from.
127 def require_moderator
128 unless current_user.moderator?
130 flash[:error] = t("application.require_moderator.not_a_moderator")
131 redirect_to :action => "index"
139 # sets up the current_user for use by other methods. this is mostly called
140 # from the authorize method, but can be called elsewhere if authorisation
143 # try and setup using OAuth
144 unless Authenticator.new(self, [:token]).allow?
145 username, passwd = get_auth_data # parse from headers
146 # authenticate per-scheme
147 self.current_user = if username.nil?
148 nil # no authentication provided - perhaps first connect (client should retry after 401)
149 elsif username == "token"
150 User.authenticate(:token => passwd) # preferred - random token for user from db, passed in basic auth
152 User.authenticate(:username => username, :password => passwd) # basic auth
156 # have we identified the user?
158 # check if the user has been banned
159 user_block = current_user.blocks.active.take
160 unless user_block.nil?
162 if user_block.zero_hour?
163 report_error t("application.setup_user_auth.blocked_zero_hour"), :forbidden
165 report_error t("application.setup_user_auth.blocked"), :forbidden
169 # if the user hasn't seen the contributor terms then don't
170 # allow editing - they have to go to the web site and see
171 # (but can decline) the CTs to continue.
172 if REQUIRE_TERMS_SEEN && !current_user.terms_seen && flash[:skip_terms].nil?
174 report_error t("application.setup_user_auth.need_to_see_terms"), :forbidden
179 def authorize(realm = "Web Password", errormessage = "Couldn't authenticate you")
180 # make the current_user object from any auth sources we have
183 # handle authenticate pass/fail
185 # no auth, the user does not exist or the password was wrong
186 response.headers["WWW-Authenticate"] = "Basic realm=\"#{realm}\""
187 render :plain => errormessage, :status => :unauthorized
193 # to be used as a before_filter *after* authorize. this checks that
194 # the user is a moderator and, if not, returns a forbidden error.
196 # NOTE: this isn't a very good way of doing it - it duplicates logic
197 # from require_moderator - but what we really need to do is a fairly
198 # drastic refactoring based on :format and respond_to? but not a
199 # good idea to do that in this branch.
200 def authorize_moderator(errormessage = "Access restricted to moderators")
201 # check user is a moderator
202 unless current_user.moderator?
203 render :plain => errormessage, :status => :forbidden
208 def check_database_readable(need_api = false)
209 if STATUS == :database_offline || (need_api && STATUS == :api_offline)
211 report_error "Database offline for maintenance", :service_unavailable
213 redirect_to :controller => "site", :action => "offline"
218 def check_database_writable(need_api = false)
219 if STATUS == :database_offline || STATUS == :database_readonly ||
220 (need_api && (STATUS == :api_offline || STATUS == :api_readonly))
222 report_error "Database offline for maintenance", :service_unavailable
224 redirect_to :controller => "site", :action => "offline"
229 def check_api_readable
230 if api_status == :offline
231 report_error "Database offline for maintenance", :service_unavailable
236 def check_api_writable
237 unless api_status == :online
238 report_error "Database offline for maintenance", :service_unavailable
244 if STATUS == :database_offline
246 elsif STATUS == :database_readonly
254 status = database_status
256 if STATUS == :api_offline
258 elsif STATUS == :api_readonly
266 status = database_status
267 status = :offline if status == :online && STATUS == :gpx_offline
271 def require_public_data
272 unless current_user.data_public?
273 report_error "You must make your edits public to upload new data", :forbidden
278 # Report and error to the user
279 # (If anyone ever fixes Rails so it can set a http status "reason phrase",
280 # rather than only a status code and having the web engine make up a
281 # phrase from that, we can also put the error message into the status
282 # message. For now, rails won't let us)
283 def report_error(message, status = :bad_request)
284 # TODO: some sort of escaping of problem characters in the message
285 response.headers["Error"] = message
287 if request.headers["X-Error-Format"] &&
288 request.headers["X-Error-Format"].casecmp("xml").zero?
289 result = OSM::API.new.get_xml_doc
290 result.root.name = "osmError"
291 result.root << (XML::Node.new("status") << "#{Rack::Utils.status_code(status)} #{Rack::Utils::HTTP_STATUS_CODES[status]}")
292 result.root << (XML::Node.new("message") << message)
294 render :xml => result.to_s
296 render :plain => message, :status => status
300 def preferred_languages(reset = false)
301 @preferred_languages = nil if reset
302 @preferred_languages ||= if params[:locale]
303 Locale.list(params[:locale])
305 current_user.preferred_languages
307 Locale.list(http_accept_language.user_preferred_languages)
311 helper_method :preferred_languages
313 def set_locale(reset = false)
314 if current_user && current_user.languages.empty? && !http_accept_language.user_preferred_languages.empty?
315 current_user.languages = http_accept_language.user_preferred_languages
319 I18n.locale = Locale.available.preferred(preferred_languages(reset))
321 response.headers["Vary"] = "Accept-Language"
322 response.headers["Content-Language"] = I18n.locale.to_s
325 def api_call_handle_error
327 rescue ActiveRecord::RecordNotFound => ex
329 rescue LibXML::XML::Error, ArgumentError => ex
330 report_error ex.message, :bad_request
331 rescue ActiveRecord::RecordInvalid => ex
332 message = "#{ex.record.class} #{ex.record.id}: "
333 ex.record.errors.each { |attr, msg| message << "#{attr}: #{msg} (#{ex.record[attr].inspect})" }
334 report_error message, :bad_request
335 rescue OSM::APIError => ex
336 report_error ex.message, ex.status
337 rescue AbstractController::ActionNotFound => ex
339 rescue StandardError => ex
340 logger.info("API threw unexpected #{ex.class} exception: #{ex.message}")
341 ex.backtrace.each { |l| logger.info(l) }
342 report_error "#{ex.class}: #{ex.message}", :internal_server_error
346 # asserts that the request method is the +method+ given as a parameter
347 # or raises a suitable error. +method+ should be a symbol, e.g: :put or :get.
348 def assert_method(method)
349 ok = request.send((method.to_s.downcase + "?").to_sym)
350 raise OSM::APIBadMethodError, method unless ok
354 # wrap an api call in a timeout
356 OSM::Timer.timeout(API_TIMEOUT, Timeout::Error) do
359 rescue Timeout::Error
360 raise OSM::APITimeoutError
364 # wrap a web page in a timeout
366 OSM::Timer.timeout(WEB_TIMEOUT, Timeout::Error) do
369 rescue ActionView::Template::Error => ex
372 if ex.is_a?(Timeout::Error) ||
373 (ex.is_a?(ActiveRecord::StatementInvalid) && ex.message =~ /execution expired/)
374 render :action => "timeout"
378 rescue Timeout::Error
379 render :action => "timeout"
383 # ensure that there is a "user" instance variable
385 render_unknown_user params[:display_name] unless @user = User.active.find_by(:display_name => 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 :child_src => %w[http://127.0.0.1:8111 https://127.0.0.1:8112],
416 :frame_src => %w[http://127.0.0.1:8111 https://127.0.0.1:8112],
417 :connect_src => %w[nominatim.openstreetmap.org overpass-api.de router.project-osrm.org graphhopper.com],
418 :form_action => %w[render.openstreetmap.org],
419 :script_src => %w[open.mapquestapi.com],
420 :img_src => %w[developer.mapquest.com]
423 if STATUS == :database_offline || STATUS == :api_offline
424 flash.now[:warning] = t("layouts.osm_offline")
425 elsif STATUS == :database_readonly || STATUS == :api_readonly
426 flash.now[:warning] = t("layouts.osm_read_only")
429 request.xhr? ? "xhr" : "map"
432 def allow_thirdparty_images
433 append_content_security_policy_directives(:img_src => %w[*])
437 editor = if params[:editor]
439 elsif current_user && current_user.preferred_editor
440 current_user.preferred_editor
448 helper_method :preferred_editor
451 if defined?(TOTP_KEY)
452 cookies["_osm_totp_token"] = {
453 :value => ROTP::TOTP.new(TOTP_KEY, :interval => 3600).now,
454 :domain => "openstreetmap.org",
455 :expires => 1.hour.from_now
460 def better_errors_allow_inline
463 append_content_security_policy_directives(
464 :script_src => %w['unsafe-inline'],
465 :style_src => %w['unsafe-inline']
471 rescue_from CanCan::AccessDenied do |exception|
472 raise "Access denied on #{exception.action} #{exception.subject.inspect}"
478 # extract authorisation credentials from headers, returns user = nil if none
480 if request.env.key? "X-HTTP_AUTHORIZATION" # where mod_rewrite might have put it
481 authdata = request.env["X-HTTP_AUTHORIZATION"].to_s.split
482 elsif request.env.key? "REDIRECT_X_HTTP_AUTHORIZATION" # mod_fcgi
483 authdata = request.env["REDIRECT_X_HTTP_AUTHORIZATION"].to_s.split
484 elsif request.env.key? "HTTP_AUTHORIZATION" # regular location
485 authdata = request.env["HTTP_AUTHORIZATION"].to_s.split
487 # only basic authentication supported
488 user, pass = Base64.decode64(authdata[1]).split(":", 2) if authdata && authdata[0] == "Basic"
492 # override to stop oauth plugin sending errors
493 def invalid_oauth_response; end