1 class TraceController < ApplicationController
2 before_filter :authorize_web
6 @page = params[:page].to_i
9 opt[:conditions] = ['public = true']
10 opt[:order] = 'timestamp DESC'
14 opt[:offset => 20*@page]
21 @traces = Trace.find(:all , opt)
25 @trace = Trace.find(params[:id])
28 render :nothing, :status => 401 if @trace.user.id != @user.id
34 filename = "/tmp/#{rand}"
36 File.open(filename, "w") { |f| f.write(@params['trace']['gpx_file'].read) }
37 @params['trace']['name'] = @params['trace']['gpx_file'].original_filename.gsub(/[^a-zA-Z0-9.]/, '_') # This makes sure filenames are sane
38 @params['trace'].delete('gpx_file') # let's remove the field from the hash, because there's no such field in the DB anyway.
39 @trace = Trace.new(@params['trace'])
40 @trace.inserted = false
41 @trace.user_id = @user.id
42 @trace.timestamp = Time.now
44 logger.info("id is #{@trace.id}")
45 `mv #{filename} /tmp/#{@trace.id}.gpx`
46 flash[:notice] = "Your GPX file has been uploaded and is awaiting insertion in to the database. This will usually happen within half an hour, and an email will be sent to you on completion."
49 redirect_to :action => 'mine'
53 traces = Trace.find(:all, :conditions => ['public = true'], :order => 'timestamp DESC', :limit => 20)
57 #def add(latitude=0, longitude=0, title_text='dummy title', url='http://www.example.com/', description_text='dummy description', timestamp=Time.now)
58 traces.each do |trace|
59 rss.add(trace.latitude, trace.longitude, trace.name, url_for({:controller => 'trace', :action => 'view', :id => trace.id, :display_name => trace.user.display_name}), "<img src='#{url_for({:controller => 'trace', :action => 'icon', :id => trace.id, :user_login => trace.user.display_name})}'> GPX file with #{trace.size} points from #{trace.user.display_name}", trace.timestamp)
62 response.headers["Content-Type"] = 'application/xml+rss'
64 render :text => rss.to_s
68 trace = Trace.find(params[:id])
69 send_data(trace.large_picture, :filename => "#{trace.id}.gif", :type => 'image/png', :disposition => 'inline') if trace.public
73 trace = Trace.find(params[:id])
74 send_data(trace.icon_picture, :filename => "#{trace.id}.gif", :type => 'image/gif', :disposition => 'inline') if trace.public