1 class TraceController < ApplicationController
4 skip_before_filter :verify_authenticity_token, :only => [:api_create, :api_read, :api_update, :api_delete, :api_data]
5 before_filter :authorize_web
6 before_filter :set_locale
7 before_filter :require_user, :only => [:mine, :create, :edit, :delete]
8 before_filter :authorize, :only => [:api_create, :api_read, :api_update, :api_delete, :api_data]
9 before_filter :check_database_readable, :except => [:api_read, :api_data]
10 before_filter :check_database_writable, :only => [:create, :edit, :delete, :api_create, :api_update, :api_delete]
11 before_filter :check_api_readable, :only => [:api_read, :api_data]
12 before_filter :check_api_writable, :only => [:api_create, :api_update, :api_delete]
13 before_filter :require_allow_read_gpx, :only => [:api_read, :api_data]
14 before_filter :require_allow_write_gpx, :only => [:api_create, :api_update, :api_delete]
15 before_filter :offline_warning, :only => [:mine, :view]
16 before_filter :offline_redirect, :only => [:create, :edit, :delete, :data, :api_create, :api_delete, :api_data]
17 around_filter :api_call_handle_error, :only => [:api_create, :api_read, :api_update, :api_delete, :api_data]
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
22 # from display name, pick up user id if one user's traces only
23 display_name = params[:display_name]
24 if !display_name.blank?
25 target_user = User.active.where(:display_name => display_name).first
27 render_unknown_user display_name
34 @title = t 'trace.list.public_traces'
35 elsif @user and @user == target_user
36 @title = t 'trace.list.your_traces'
38 @title = t 'trace.list.public_traces_from', :user => target_user.display_name
41 @title += t 'trace.list.tagged_with', :tags => params[:tag] if params[:tag]
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 if target_user.nil? # all traces
50 @traces = Trace.visible_to(@user) #1
52 @traces = Trace.public #2
55 if @user and @user == target_user
56 @traces = @user.traces #3 (check vs user id, so no join + can't pick up non-public traces by changing name)
58 @traces = target_user.traces.public #4
63 @traces = @traces.tagged(params[:tag])
66 @page = (params[:page] || 1).to_i
69 @traces = @traces.visible
70 @traces = @traces.order("timestamp DESC")
71 @traces = @traces.offset((@page - 1) * @page_size)
72 @traces = @traces.limit(@page_size)
73 @traces = @traces.includes(:user, :tags)
75 # put together SET of tags across traces, for related links
77 @traces.each do |trace|
78 trace.tags.reload if params[:tag] # if searched by tag, ActiveRecord won't bring back other tags, so do explicitly here
79 trace.tags.each do |tag|
80 tagset[tag.tag] = tag.tag
84 # final helper vars for view
85 @target_user = target_user
86 @display_name = target_user.display_name if target_user
87 @all_tags = tagset.values
91 redirect_to :action => :list, :display_name => @user.display_name
95 @trace = Trace.find(params[:id])
97 if @trace and @trace.visible? and
98 (@trace.public? or @trace.user == @user)
99 @title = t 'trace.view.title', :name => @trace.name
101 flash[:error] = t 'trace.view.trace_not_found'
102 redirect_to :controller => 'trace', :action => 'list'
104 rescue ActiveRecord::RecordNotFound
105 flash[:error] = t 'trace.view.trace_not_found'
106 redirect_to :controller => 'trace', :action => 'list'
111 logger.info(params[:trace][:gpx_file].class.name)
113 if params[:trace][:gpx_file].respond_to?(:read)
115 do_create(params[:trace][:gpx_file], params[:trace][:tagstring],
116 params[:trace][:description], params[:trace][:visibility])
122 logger.info("id is #{@trace.id}")
123 flash[:notice] = t 'trace.create.trace_uploaded'
125 if @user.traces.where(:inserted => false).count > 4
126 flash[:warning] = t 'trace.trace_header.traces_waiting', :count => @user.traces.where(:inserted => false).count
129 redirect_to :action => :list, :display_name => @user.display_name
132 @trace = Trace.new({:name => "Dummy",
133 :tagstring => params[:trace][:tagstring],
134 :description => params[:trace][:description],
135 :visibility => params[:trace][:visibility],
136 :inserted => false, :user => @user,
137 :timestamp => Time.now.getutc})
139 @trace.errors.add(:gpx_file, "can't be blank")
142 @trace = Trace.new(:visibility => default_visibility)
145 @title = t 'trace.create.upload_trace'
149 trace = Trace.find(params[:id])
151 if trace.visible? and (trace.public? or (@user and @user == trace.user))
152 if Acl.no_trace_download(request.remote_ip)
153 render :text => "", :status => :forbidden
154 elsif request.format == Mime::XML or request.format == Mime::GPX
155 send_file(trace.xml_file, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => 'attachment')
157 send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
160 render :text => "", :status => :not_found
162 rescue ActiveRecord::RecordNotFound
163 render :text => "", :status => :not_found
167 @trace = Trace.find(params[:id])
169 if @user and @trace.user == @user
170 @title = t 'trace.edit.title', :name => @trace.name
172 @trace.description = params[:trace][:description]
173 @trace.tagstring = params[:trace][:tagstring]
174 @trace.visibility = params[:trace][:visibility]
176 redirect_to :action => 'view', :display_name => @user.display_name
180 render :text => "", :status => :forbidden
182 rescue ActiveRecord::RecordNotFound
183 render :text => "", :status => :not_found
187 trace = Trace.find(params[:id])
189 if @user and trace.user == @user
191 trace.visible = false
193 flash[:notice] = t 'trace.delete.scheduled_for_deletion'
194 redirect_to :action => :list, :display_name => @user.display_name
196 render :text => "", :status => :not_found
199 render :text => "", :status => :forbidden
201 rescue ActiveRecord::RecordNotFound
202 render :text => "", :status => :not_found
206 @traces = Trace.public.visible
208 if params[:display_name]
209 @traces = @traces.joins(:user).where(:users => {:display_name => params[:display_name]})
213 @traces = @traces.tagged(params[:tag])
216 @traces = @traces.order("timestamp DESC")
217 @traces = @traces.limit(20)
218 @traces = @traces.includes(:user)
222 trace = Trace.find(params[:id])
225 if trace.public? or (@user and @user == trace.user)
226 expires_in 7.days, :private => !trace.public?, :public => trace.public?
227 send_file(trace.large_picture_name, :filename => "#{trace.id}.gif", :type => 'image/gif', :disposition => 'inline')
229 render :text => "", :status => :forbidden
232 render :text => "", :status => :not_found
234 rescue ActiveRecord::RecordNotFound
235 render :text => "", :status => :not_found
239 trace = Trace.find(params[:id])
242 if trace.public? or (@user and @user == trace.user)
243 expires_in 7.days, :private => !trace.public?, :public => trace.public?
244 send_file(trace.icon_picture_name, :filename => "#{trace.id}_icon.gif", :type => 'image/gif', :disposition => 'inline')
246 render :text => "", :status => :forbidden
249 render :text => "", :status => :not_found
251 rescue ActiveRecord::RecordNotFound
252 render :text => "", :status => :not_found
256 trace = Trace.visible.find(params[:id])
258 if trace.public? or trace.user == @user
259 render :text => trace.to_xml.to_s, :content_type => "text/xml"
261 render :text => "", :status => :forbidden
266 trace = Trace.visible.find(params[:id])
268 if trace.user == @user
269 new_trace = Trace.from_xml(request.raw_post)
271 unless new_trace and new_trace.id == trace.id
272 raise OSM::APIBadUserInput.new("The id in the url (#{trace.id}) is not the same as provided in the xml (#{new_trace.id})")
275 trace.description = new_trace.description
276 trace.tags = new_trace.tags
277 trace.visibility = new_trace.visibility
280 render :text => "", :status => :ok
282 render :text => "", :status => :forbidden
287 trace = Trace.visible.find(params[:id])
289 if trace.user == @user
290 trace.visible = false
293 render :text => "", :status => :ok
295 render :text => "", :status => :forbidden
300 trace = Trace.find(params[:id])
302 if trace.public? or trace.user == @user
303 if request.format == Mime::XML or request.format == Mime::GPX
304 send_file(trace.xml_file, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => 'attachment')
306 send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
309 render :text => "", :status => :forbidden
314 tags = params[:tags] || ""
315 description = params[:description] || ""
316 visibility = params[:visibility]
319 if params[:public] && params[:public].to_i.nonzero?
320 visibility = "public"
322 visibility = "private"
326 if params[:file].respond_to?(:read)
327 do_create(params[:file], tags, description, visibility)
330 render :text => @trace.id.to_s, :content_type => "text/plain"
332 render :text => "", :status => :internal_server_error
334 render :text => "", :status => :bad_request
337 render :text => "", :status => :bad_request
343 def do_create(file, tags, description, visibility)
344 # Sanitise the user's filename
345 name = file.original_filename.gsub(/[^a-zA-Z0-9.]/, '_')
347 # Get a temporary filename...
348 filename = "/tmp/#{rand}"
350 # ...and save the uploaded file to that location
351 File.open(filename, "wb") { |f| f.write(file.read) }
353 # Create the trace object, falsely marked as already
354 # inserted to stop the import daemon trying to load it
358 :description => description,
359 :visibility => visibility,
362 :timestamp => Time.now.getutc
367 # Save the trace object
370 # Rename the temporary file to the final name
371 FileUtils.mv(filename, @trace.trace_name)
372 rescue Exception => ex
373 # Remove the file as we have failed to update the database
374 FileUtils.rm_f(filename)
376 # Pass the exception on
381 # Clear the inserted flag to make the import daemon load the trace
382 @trace.inserted = false
384 rescue Exception => ex
385 # Remove the file as we have failed to update the database
386 FileUtils.rm_f(@trace.trace_name)
388 # Pass the exception on
393 # Finally save the user's preferred privacy level
394 if pref = @user.preferences.where(:k => "gps.trace.visibility").first
398 @user.preferences.create(:k => "gps.trace.visibility", :v => visibility)
404 flash.now[:warning] = t 'trace.offline_warning.message' if STATUS == :gpx_offline
408 redirect_to :action => :offline if STATUS == :gpx_offline
411 def default_visibility
412 visibility = @user.preferences.where(:k => "gps.trace.visibility").first
416 elsif @user.preferences.where(:k => "gps.trace.public", :v => "default").first.nil?