X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f98e6aac0a33ed8c179841c3c3dc7e2c0393d869..fb1467a94487cfdfcb19e4f88e05be7aa88096f0:/app/controllers/trace_controller.rb diff --git a/app/controllers/trace_controller.rb b/app/controllers/trace_controller.rb index 7420ea52d..1c1b968d6 100644 --- a/app/controllers/trace_controller.rb +++ b/app/controllers/trace_controller.rb @@ -1,2 +1,24 @@ class TraceController < ApplicationController + before_filter :authorize_web + layout 'site' + + def list + @traces = Trace.find(:all) + end + + def create + @params['trace']['name'] = @params['trace']['gpx_file'].original_filename.gsub(/[^a-zA-Z0-9.]/, '_') # This makes sure filenames are sane + @params['trace']['data'] = @params['trace']['gpx_file'].read + @params['trace']['mime_type'] = @params['trace']['gpx_file'].content_type.chomp + @params['trace'].delete('gpx_file') # let's remove the field from the hash, because there's no such field in the DB anyway. + @trace = Trace.new(@params['trace']) + @trace.inserted = false + @trace.user_id = @user.id + @trace.timestamp = Time.now + if @trace.save + 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." + end + + redirect_to :action => 'mine' + end end