]> git.openstreetmap.org Git - rails.git/blob - app/controllers/trace_controller.rb
5dd49c6be704edf8400663be9712d574308aa01d
[rails.git] / app / controllers / trace_controller.rb
1 class TraceController < ApplicationController
2   layout "site", :except => :georss
3
4   skip_before_action :verify_authenticity_token, :only => [:api_create, :api_read, :api_update, :api_delete, :api_data]
5   before_action :authorize_web
6   before_action :set_locale
7   before_action :require_user, :only => [:mine, :create, :edit, :delete]
8   before_action :authorize, :only => [:api_create, :api_read, :api_update, :api_delete, :api_data]
9   before_action :check_database_readable, :except => [:api_read, :api_data]
10   before_action :check_database_writable, :only => [:create, :edit, :delete, :api_create, :api_update, :api_delete]
11   before_action :check_api_readable, :only => [:api_read, :api_data]
12   before_action :check_api_writable, :only => [:api_create, :api_update, :api_delete]
13   before_action :require_allow_read_gpx, :only => [:api_read, :api_data]
14   before_action :require_allow_write_gpx, :only => [:api_create, :api_update, :api_delete]
15   before_action :offline_warning, :only => [:mine, :view]
16   before_action :offline_redirect, :only => [:create, :edit, :delete, :data, :api_create, :api_delete, :api_data]
17   around_action :api_call_handle_error, :only => [:api_create, :api_read, :api_update, :api_delete, :api_data]
18
19   # Counts and selects pages of GPX traces for various criteria (by user, tags, public etc.).
20   #  target_user - if set, specifies the user to fetch traces for.  if not set will fetch all traces
21   def list
22     # from display name, pick up user id if one user's traces only
23     display_name = params[:display_name]
24     if display_name.present?
25       target_user = User.active.where(:display_name => display_name).first
26       if target_user.nil?
27         render_unknown_user display_name
28         return
29       end
30     end
31
32     # set title
33     @title = if target_user.nil?
34                t "trace.list.public_traces"
35              elsif current_user && current_user == target_user
36                t "trace.list.your_traces"
37              else
38                t "trace.list.public_traces_from", :user => target_user.display_name
39              end
40
41     @title += t "trace.list.tagged_with", :tags => params[:tag] if params[:tag]
42
43     # four main cases:
44     # 1 - all traces, logged in = all public traces + all user's (i.e + all mine)
45     # 2 - all traces, not logged in = all public traces
46     # 3 - user's traces, logged in as same user = all user's traces
47     # 4 - user's traces, not logged in as that user = all user's public traces
48     @traces = if target_user.nil? # all traces
49                 if current_user
50                   Trace.visible_to(current_user) # 1
51                 else
52                   Trace.visible_to_all # 2
53                 end
54               elsif current_user && current_user == target_user
55                 current_user.traces # 3 (check vs user id, so no join + can't pick up non-public traces by changing name)
56               else
57                 target_user.traces.visible_to_all # 4
58               end
59
60     @traces = @traces.tagged(params[:tag]) if params[:tag]
61
62     @params = params.permit(:display_name, :tag)
63
64     @page = (params[:page] || 1).to_i
65     @page_size = 20
66
67     @traces = @traces.visible
68     @traces = @traces.order(:id => :desc)
69     @traces = @traces.offset((@page - 1) * @page_size)
70     @traces = @traces.limit(@page_size)
71     @traces = @traces.includes(:user, :tags)
72
73     # put together SET of tags across traces, for related links
74     tagset = {}
75     @traces.each do |trace|
76       trace.tags.reload if params[:tag] # if searched by tag, ActiveRecord won't bring back other tags, so do explicitly here
77       trace.tags.each do |tag|
78         tagset[tag.tag] = tag.tag
79       end
80     end
81
82     # final helper vars for view
83     @target_user = target_user
84     @display_name = target_user.display_name if target_user
85     @all_tags = tagset.values
86   end
87
88   def mine
89     redirect_to :action => :list, :display_name => current_user.display_name
90   end
91
92   def view
93     @trace = Trace.find(params[:id])
94
95     if @trace && @trace.visible? &&
96        (@trace.public? || @trace.user == current_user)
97       @title = t "trace.view.title", :name => @trace.name
98     else
99       flash[:error] = t "trace.view.trace_not_found"
100       redirect_to :action => "list"
101     end
102   rescue ActiveRecord::RecordNotFound
103     flash[:error] = t "trace.view.trace_not_found"
104     redirect_to :action => "list"
105   end
106
107   def create
108     if request.post?
109       logger.info(params[:trace][:gpx_file].class.name)
110
111       if params[:trace][:gpx_file].respond_to?(:read)
112         begin
113           do_create(params[:trace][:gpx_file], params[:trace][:tagstring],
114                     params[:trace][:description], params[:trace][:visibility])
115         rescue StandardError => ex
116           logger.debug ex
117         end
118
119         if @trace.id
120           flash[:notice] = t "trace.create.trace_uploaded"
121
122           flash[:warning] = t "trace.trace_header.traces_waiting", :count => current_user.traces.where(:inserted => false).count if current_user.traces.where(:inserted => false).count > 4
123
124           redirect_to :action => :list, :display_name => current_user.display_name
125         end
126       else
127         @trace = Trace.new(:name => "Dummy",
128                            :tagstring => params[:trace][:tagstring],
129                            :description => params[:trace][:description],
130                            :visibility => params[:trace][:visibility],
131                            :inserted => false, :user => current_user,
132                            :timestamp => Time.now.getutc)
133         @trace.valid?
134         @trace.errors.add(:gpx_file, "can't be blank")
135       end
136     else
137       @trace = Trace.new(:visibility => default_visibility)
138     end
139
140     @title = t "trace.create.upload_trace"
141   end
142
143   def data
144     trace = Trace.find(params[:id])
145
146     if trace.visible? && (trace.public? || (current_user && current_user == trace.user))
147       if Acl.no_trace_download(request.remote_ip)
148         head :forbidden
149       elsif request.format == Mime[:xml]
150         send_data(trace.xml_file.read, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => "attachment")
151       elsif request.format == Mime[:gpx]
152         send_data(trace.xml_file.read, :filename => "#{trace.id}.gpx", :type => request.format.to_s, :disposition => "attachment")
153       else
154         send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => "attachment")
155       end
156     else
157       head :not_found
158     end
159   rescue ActiveRecord::RecordNotFound
160     head :not_found
161   end
162
163   def edit
164     @trace = Trace.find(params[:id])
165
166     if !@trace.visible?
167       head :not_found
168     elsif current_user.nil? || @trace.user != current_user
169       head :forbidden
170     else
171       @title = t "trace.edit.title", :name => @trace.name
172
173       if request.post? && params[:trace]
174         @trace.description = params[:trace][:description]
175         @trace.tagstring = params[:trace][:tagstring]
176         @trace.visibility = params[:trace][:visibility]
177         redirect_to :action => "view", :display_name => current_user.display_name if @trace.save
178       end
179     end
180   rescue ActiveRecord::RecordNotFound
181     head :not_found
182   end
183
184   def delete
185     trace = Trace.find(params[:id])
186
187     if !trace.visible?
188       head :not_found
189     elsif current_user.nil? || (trace.user != current_user && !current_user.administrator? && !current_user.moderator?)
190       head :forbidden
191     else
192       trace.visible = false
193       trace.save
194       flash[:notice] = t "trace.delete.scheduled_for_deletion"
195       if current_user.administrator? || current_user.moderator?
196         redirect_to :action => :list, :display_name => trace.user.display_name
197       else
198         redirect_to :action => :list, :display_name => current_user.display_name
199       end
200     end
201   rescue ActiveRecord::RecordNotFound
202     head :not_found
203   end
204
205   def georss
206     @traces = Trace.visible_to_all.visible
207
208     @traces = @traces.joins(:user).where(:users => { :display_name => params[:display_name] }) if params[:display_name]
209
210     @traces = @traces.tagged(params[:tag]) if params[:tag]
211     @traces = @traces.order("timestamp DESC")
212     @traces = @traces.limit(20)
213     @traces = @traces.includes(:user)
214   end
215
216   def picture
217     trace = Trace.find(params[:id])
218
219     if trace.visible? && trace.inserted?
220       if trace.public? || (current_user && current_user == trace.user)
221         expires_in 7.days, :private => !trace.public?, :public => trace.public?
222         send_file(trace.large_picture_name, :filename => "#{trace.id}.gif", :type => "image/gif", :disposition => "inline")
223       else
224         head :forbidden
225       end
226     else
227       head :not_found
228     end
229   rescue ActiveRecord::RecordNotFound
230     head :not_found
231   end
232
233   def icon
234     trace = Trace.find(params[:id])
235
236     if trace.visible? && trace.inserted?
237       if trace.public? || (current_user && current_user == trace.user)
238         expires_in 7.days, :private => !trace.public?, :public => trace.public?
239         send_file(trace.icon_picture_name, :filename => "#{trace.id}_icon.gif", :type => "image/gif", :disposition => "inline")
240       else
241         head :forbidden
242       end
243     else
244       head :not_found
245     end
246   rescue ActiveRecord::RecordNotFound
247     head :not_found
248   end
249
250   def api_read
251     trace = Trace.visible.find(params[:id])
252
253     if trace.public? || trace.user == current_user
254       render :xml => trace.to_xml.to_s
255     else
256       head :forbidden
257     end
258   end
259
260   def api_update
261     trace = Trace.visible.find(params[:id])
262
263     if trace.user == current_user
264       trace.update_from_xml(request.raw_post)
265       trace.save!
266
267       head :ok
268     else
269       head :forbidden
270     end
271   end
272
273   def api_delete
274     trace = Trace.visible.find(params[:id])
275
276     if trace.user == current_user
277       trace.visible = false
278       trace.save!
279
280       head :ok
281     else
282       head :forbidden
283     end
284   end
285
286   def api_data
287     trace = Trace.visible.find(params[:id])
288
289     if trace.public? || trace.user == current_user
290       if request.format == Mime[:xml]
291         send_data(trace.xml_file.read, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => "attachment")
292       elsif request.format == Mime[:gpx]
293         send_data(trace.xml_file.read, :filename => "#{trace.id}.gpx", :type => request.format.to_s, :disposition => "attachment")
294       else
295         send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => "attachment")
296       end
297     else
298       head :forbidden
299     end
300   end
301
302   def api_create
303     tags = params[:tags] || ""
304     description = params[:description] || ""
305     visibility = params[:visibility]
306
307     if visibility.nil?
308       visibility = if params[:public] && params[:public].to_i.nonzero?
309                      "public"
310                    else
311                      "private"
312                    end
313     end
314
315     if params[:file].respond_to?(:read)
316       do_create(params[:file], tags, description, visibility)
317
318       if @trace.id
319         render :plain => @trace.id.to_s
320       elsif @trace.valid?
321         head :internal_server_error
322       else
323         head :bad_request
324       end
325     else
326       head :bad_request
327     end
328   end
329
330   private
331
332   def do_create(file, tags, description, visibility)
333     # Sanitise the user's filename
334     name = file.original_filename.gsub(/[^a-zA-Z0-9.]/, "_")
335
336     # Get a temporary filename...
337     filename = "/tmp/#{rand}"
338
339     # ...and save the uploaded file to that location
340     File.open(filename, "wb") { |f| f.write(file.read) }
341
342     # Create the trace object, falsely marked as already
343     # inserted to stop the import daemon trying to load it
344     @trace = Trace.new(
345       :name => name,
346       :tagstring => tags,
347       :description => description,
348       :visibility => visibility,
349       :inserted => true,
350       :user => current_user,
351       :timestamp => Time.now.getutc
352     )
353
354     Trace.transaction do
355       begin
356         # Save the trace object
357         @trace.save!
358
359         # Rename the temporary file to the final name
360         FileUtils.mv(filename, @trace.trace_name)
361       rescue StandardError
362         # Remove the file as we have failed to update the database
363         FileUtils.rm_f(filename)
364
365         # Pass the exception on
366         raise
367       end
368
369       begin
370         # Clear the inserted flag to make the import daemon load the trace
371         @trace.inserted = false
372         @trace.save!
373       rescue StandardError
374         # Remove the file as we have failed to update the database
375         FileUtils.rm_f(@trace.trace_name)
376
377         # Pass the exception on
378         raise
379       end
380     end
381
382     # Finally save the user's preferred privacy level
383     if pref = current_user.preferences.where(:k => "gps.trace.visibility").first
384       pref.v = visibility
385       pref.save
386     else
387       current_user.preferences.create(:k => "gps.trace.visibility", :v => visibility)
388     end
389   end
390
391   def offline_warning
392     flash.now[:warning] = t "trace.offline_warning.message" if STATUS == :gpx_offline
393   end
394
395   def offline_redirect
396     redirect_to :action => :offline if STATUS == :gpx_offline
397   end
398
399   def default_visibility
400     visibility = current_user.preferences.where(:k => "gps.trace.visibility").first
401
402     if visibility
403       visibility.v
404     elsif current_user.preferences.where(:k => "gps.trace.public", :v => "default").first.nil?
405       "private"
406     else
407       "public"
408     end
409   end
410 end