]> git.openstreetmap.org Git - rails.git/blob - app/controllers/application_controller.rb
Improved error reporting when trace upload fails
[rails.git] / app / controllers / application_controller.rb
1 class ApplicationController < ActionController::Base
2   require "timeout"
3
4   include SessionPersistence
5
6   protect_from_forgery :with => :exception
7
8   add_flash_types :warning, :error
9
10   rescue_from CanCan::AccessDenied, :with => :deny_access
11   check_authorization
12
13   rescue_from RailsParam::InvalidParameterError, :with => :invalid_parameter
14
15   before_action :fetch_body
16
17   attr_accessor :current_user, :oauth_token
18
19   helper_method :current_user
20   helper_method :oauth_token
21
22   def self.allow_thirdparty_images(**options)
23     content_security_policy(options) do |policy|
24       policy.img_src("*")
25     end
26   end
27
28   def self.allow_social_login(**options)
29     content_security_policy(options) do |policy|
30       policy.form_action(*policy.form_action, "accounts.google.com", "*.facebook.com", "login.microsoftonline.com", "github.com", "meta.wikimedia.org")
31     end
32   end
33
34   def self.allow_all_form_action(**options)
35     content_security_policy(options) do |policy|
36       policy.form_action(nil)
37     end
38   end
39
40   private
41
42   def authorize_web
43     if session[:user]
44       self.current_user = User.find_by(:id => session[:user], :status => %w[active confirmed suspended])
45
46       if session[:fingerprint] &&
47          session[:fingerprint] != current_user.fingerprint
48         reset_session
49         self.current_user = nil
50       elsif current_user.status == "suspended"
51         session.delete(:user)
52         session_expires_automatically
53
54         redirect_to :controller => "users", :action => "suspended"
55
56       # don't allow access to any auth-requiring part of the site unless
57       # the new CTs have been seen (and accept/decline chosen).
58       elsif !current_user.terms_seen && flash[:skip_terms].nil?
59         flash[:notice] = t "users.terms.you need to accept or decline"
60         if params[:referer]
61           redirect_to :controller => "users", :action => "terms", :referer => params[:referer]
62         else
63           redirect_to :controller => "users", :action => "terms", :referer => request.fullpath
64         end
65       end
66     end
67
68     session[:fingerprint] = current_user.fingerprint if current_user && session[:fingerprint].nil?
69   rescue StandardError => e
70     logger.info("Exception authorizing user: #{e}")
71     reset_session
72     self.current_user = nil
73   end
74
75   def require_user
76     unless current_user
77       if request.get?
78         redirect_to login_path(:referer => request.fullpath)
79       else
80         head :forbidden
81       end
82     end
83   end
84
85   def require_oauth
86     @oauth_token = current_user.oauth_token(Settings.oauth_application) if current_user && Settings.key?(:oauth_application)
87   end
88
89   ##
90   # require the user to have cookies enabled in their browser
91   def require_cookies
92     if request.cookies["_osm_session"].to_s == ""
93       if params[:cookie_test].nil?
94         session[:cookie_test] = true
95         redirect_to params.to_unsafe_h.merge(:only_path => true, :cookie_test => "true")
96         false
97       else
98         flash.now[:warning] = t "application.require_cookies.cookies_needed"
99       end
100     else
101       session.delete(:cookie_test)
102     end
103   end
104
105   def check_database_readable(need_api: false)
106     if Settings.status == "database_offline" || (need_api && Settings.status == "api_offline")
107       if request.xhr?
108         report_error "Database offline for maintenance", :service_unavailable
109       else
110         redirect_to :controller => "site", :action => "offline"
111       end
112     end
113   end
114
115   def check_database_writable(need_api: false)
116     if Settings.status == "database_offline" || Settings.status == "database_readonly" ||
117        (need_api && (Settings.status == "api_offline" || Settings.status == "api_readonly"))
118       if request.xhr?
119         report_error "Database offline for maintenance", :service_unavailable
120       else
121         redirect_to :controller => "site", :action => "offline"
122       end
123     end
124   end
125
126   def check_api_readable
127     if api_status == "offline"
128       report_error "Database offline for maintenance", :service_unavailable
129       false
130     end
131   end
132
133   def check_api_writable
134     unless api_status == "online"
135       report_error "Database offline for maintenance", :service_unavailable
136       false
137     end
138   end
139
140   def database_status
141     case Settings.status
142     when "database_offline"
143       "offline"
144     when "database_readonly"
145       "readonly"
146     else
147       "online"
148     end
149   end
150
151   def api_status
152     status = database_status
153     if status == "online"
154       case Settings.status
155       when "api_offline"
156         status = "offline"
157       when "api_readonly"
158         status = "readonly"
159       end
160     end
161     status
162   end
163
164   def require_public_data
165     unless current_user.data_public?
166       report_error "You must make your edits public to upload new data", :forbidden
167       false
168     end
169   end
170
171   # Report and error to the user
172   # (If anyone ever fixes Rails so it can set a http status "reason phrase",
173   #  rather than only a status code and having the web engine make up a
174   #  phrase from that, we can also put the error message into the status
175   #  message. For now, rails won't let us)
176   def report_error(message, status = :bad_request)
177     # TODO: some sort of escaping of problem characters in the message
178     response.headers["Error"] = message
179
180     if request.headers["X-Error-Format"]&.casecmp?("xml")
181       result = OSM::API.new.xml_doc
182       result.root.name = "osmError"
183       result.root << (XML::Node.new("status") << "#{Rack::Utils.status_code(status)} #{Rack::Utils::HTTP_STATUS_CODES[status]}")
184       result.root << (XML::Node.new("message") << message)
185
186       render :xml => result.to_s
187     else
188       render :plain => message, :status => status
189     end
190   end
191
192   def preferred_languages
193     @preferred_languages ||= if params[:locale]
194                                Locale.list(params[:locale])
195                              elsif current_user
196                                current_user.preferred_languages
197                              else
198                                Locale.list(http_accept_language.user_preferred_languages)
199                              end
200   end
201
202   helper_method :preferred_languages
203
204   def set_locale
205     if current_user&.languages&.empty? && !http_accept_language.user_preferred_languages.empty?
206       current_user.languages = http_accept_language.user_preferred_languages
207       current_user.save
208     end
209
210     I18n.locale = Locale.available.preferred(preferred_languages)
211
212     response.headers["Vary"] = "Accept-Language"
213     response.headers["Content-Language"] = I18n.locale.to_s
214   end
215
216   ##
217   # wrap a web page in a timeout
218   def web_timeout(&block)
219     Timeout.timeout(Settings.web_timeout, &block)
220   rescue ActionView::Template::Error => e
221     e = e.cause
222
223     if e.is_a?(Timeout::Error) ||
224        (e.is_a?(ActiveRecord::StatementInvalid) && e.message.include?("execution expired"))
225       ActiveRecord::Base.connection.raw_connection.cancel
226       render :action => "timeout"
227     else
228       raise
229     end
230   rescue Timeout::Error
231     ActiveRecord::Base.connection.raw_connection.cancel
232     render :action => "timeout"
233   end
234
235   ##
236   # Unfortunately if a PUT or POST request that has a body fails to
237   # read it then Apache will sometimes fail to return the response it
238   # is given to the client properly, instead erroring:
239   #
240   #   https://issues.apache.org/bugzilla/show_bug.cgi?id=44782
241   #
242   # To work round this we call rewind on the body here, which is added
243   # as a filter, to force it to be fetched from Apache into a file.
244   def fetch_body
245     request.body.rewind
246   end
247
248   def map_layout
249     policy = request.content_security_policy.clone
250
251     policy.child_src(*policy.child_src, "http://127.0.0.1:8111", "https://127.0.0.1:8112")
252     policy.frame_src(*policy.frame_src, "http://127.0.0.1:8111", "https://127.0.0.1:8112")
253     policy.connect_src(*policy.connect_src, Settings.nominatim_url, Settings.overpass_url, Settings.fossgis_osrm_url, Settings.graphhopper_url, Settings.fossgis_valhalla_url)
254     policy.form_action(*policy.form_action, "render.openstreetmap.org")
255     policy.style_src(*policy.style_src, :unsafe_inline)
256
257     request.content_security_policy = policy
258
259     case Settings.status
260     when "database_offline", "api_offline"
261       flash.now[:warning] = t("layouts.osm_offline")
262     when "database_readonly", "api_readonly"
263       flash.now[:warning] = t("layouts.osm_read_only")
264     end
265
266     request.xhr? ? "xhr" : "map"
267   end
268
269   def preferred_editor
270     if params[:editor]
271       params[:editor]
272     elsif current_user&.preferred_editor
273       current_user.preferred_editor
274     else
275       Settings.default_editor
276     end
277   end
278
279   helper_method :preferred_editor
280
281   def update_totp
282     if Settings.key?(:totp_key)
283       cookies["_osm_totp_token"] = {
284         :value => ROTP::TOTP.new(Settings.totp_key, :interval => 3600).now,
285         :domain => "openstreetmap.org",
286         :expires => 1.hour.from_now
287       }
288     end
289   end
290
291   def current_ability
292     Ability.new(current_user)
293   end
294
295   def deny_access(_exception)
296     if doorkeeper_token
297       set_locale
298       report_error t("oauth.permissions.missing"), :forbidden
299     elsif current_user
300       set_locale
301       respond_to do |format|
302         format.html { redirect_to :controller => "/errors", :action => "forbidden" }
303         format.any { report_error t("application.permission_denied"), :forbidden }
304       end
305     elsif request.get?
306       respond_to do |format|
307         format.html { redirect_to login_path(:referer => request.fullpath) }
308         format.any { head :forbidden }
309       end
310     else
311       head :forbidden
312     end
313   end
314
315   def invalid_parameter(_exception)
316     if request.get?
317       respond_to do |format|
318         format.html { redirect_to :controller => "/errors", :action => "bad_request" }
319         format.any { head :bad_request }
320       end
321     else
322       head :bad_request
323     end
324   end
325
326   # clean any referer parameter
327   def safe_referer(referer)
328     begin
329       referer = URI.parse(referer)
330
331       if referer.scheme == "http" || referer.scheme == "https"
332         referer.scheme = nil
333         referer.host = nil
334         referer.port = nil
335       elsif referer.scheme || referer.host || referer.port
336         referer = nil
337       end
338
339       referer = nil if referer&.path&.first != "/"
340     rescue URI::InvalidURIError
341       referer = nil
342     end
343
344     referer&.to_s
345   end
346
347   def scope_enabled?(scope)
348     doorkeeper_token&.includes_scope?(scope)
349   end
350
351   helper_method :scope_enabled?
352 end