]> git.openstreetmap.org Git - rails.git/blob - app/controllers/trace_controller.rb
337f27e0e80c32164f8d0790e4a6062c3833574a
[rails.git] / app / controllers / trace_controller.rb
1 class TraceController < ApplicationController
2   before_filter :authorize_web  
3   layout 'site'
4
5   def list
6     @traces = Trace.find(:all)
7   end
8
9   def mine
10     @traces = Trace.find(:all, :conditions => ['user_id = ?', @user.id])
11   end
12
13   def create
14     filename = "/tmp/#{rand}"
15
16     File.open(filename, "w") { |f| f.write(@params['trace']['gpx_file'].read) }
17     @params['trace']['name'] = @params['trace']['gpx_file'].original_filename.gsub(/[^a-zA-Z0-9.]/, '_') # This makes sure filenames are sane
18     #@params['trace']['data'] = @params['trace']['gpx_file'].read
19 #    @params['trace']['mime_type'] = @params['trace']['gpx_file'].content_type.chomp
20     @params['trace'].delete('gpx_file') # let's remove the field from the hash, because there's no such field in the DB anyway.
21     @trace = Trace.new(@params['trace'])
22     @trace.inserted = false
23     @trace.user_id = @user.id
24     @trace.timestamp = Time.now
25     if @trace.save
26       logger.info("id is #{@trace.id}")
27       `mv #{filename} /tmp/#{@trace.id}.gpx`
28       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."
29     end
30
31     redirect_to :action => 'mine'
32   end
33 end