X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3a43f9fe0421afdf74d2f570ee8987a4022519cf..a155a2fda3e014fee0aa52ca44e7f28cf738b2dd:/app/controllers/api/traces_controller.rb diff --git a/app/controllers/api/traces_controller.rb b/app/controllers/api/traces_controller.rb index 6c77f9dc4..e91261058 100644 --- a/app/controllers/api/traces_controller.rb +++ b/app/controllers/api/traces_controller.rb @@ -1,17 +1,13 @@ module Api class TracesController < ApiController - before_action :authorize_web + before_action :check_api_writable, :only => [:create, :update, :destroy] before_action :set_locale before_action :authorize authorize_resource - before_action :check_database_readable, :except => [:show, :data] - before_action :check_database_writable, :only => [:create, :update, :destroy] - before_action :check_api_readable, :only => [:show, :data] - before_action :check_api_writable, :only => [:create, :update, :destroy] - before_action :offline_error, :only => [:create, :destroy, :data] - around_action :api_call_handle_error + before_action :offline_error, :only => [:create, :destroy] + skip_around_action :api_call_timeout, :only => :create def show @trace = Trace.visible.find(params[:id]) @@ -19,49 +15,6 @@ module Api head :forbidden unless @trace.public? || @trace.user == current_user end - def update - trace = Trace.visible.find(params[:id]) - - if trace.user == current_user - trace.update_from_xml(request.raw_post) - trace.save! - - head :ok - else - head :forbidden - end - end - - def destroy - trace = Trace.visible.find(params[:id]) - - if trace.user == current_user - trace.visible = false - trace.save! - TraceDestroyerJob.perform_later(trace) if Settings.trace_use_job_queue - - head :ok - else - head :forbidden - end - end - - def data - trace = Trace.visible.find(params[:id]) - - if trace.public? || trace.user == current_user - if request.format == Mime[:xml] - send_data(trace.xml_file.read, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => "attachment") - elsif request.format == Mime[:gpx] - send_data(trace.xml_file.read, :filename => "#{trace.id}.gpx", :type => request.format.to_s, :disposition => "attachment") - else - send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => "attachment") - end - else - head :forbidden - end - end - def create tags = params[:tags] || "" description = params[:description] || "" @@ -79,7 +32,7 @@ module Api trace = do_create(params[:file], tags, description, visibility) if trace.id - TraceImporterJob.perform_later(trace) if Settings.trace_use_job_queue + trace.schedule_import render :plain => trace.id.to_s elsif trace.valid? head :internal_server_error @@ -91,18 +44,39 @@ module Api end end + def update + trace = Trace.visible.find(params[:id]) + + if trace.user == current_user + trace.update_from_xml(request.raw_post) + trace.save! + + head :ok + else + head :forbidden + end + end + + def destroy + trace = Trace.visible.find(params[:id]) + + if trace.user == current_user + trace.visible = false + trace.save! + trace.schedule_destruction + + head :ok + else + head :forbidden + end + end + private def do_create(file, tags, description, visibility) # Sanitise the user's filename name = file.original_filename.gsub(/[^a-zA-Z0-9.]/, "_") - # Get a temporary filename... - filename = "/tmp/#{rand}" - - # ...and save the uploaded file to that location - File.open(filename, "wb") { |f| f.write(file.read) } - # Create the trace object, falsely marked as already # inserted to stop the import daemon trying to load it trace = Trace.new( @@ -110,43 +84,17 @@ module Api :tagstring => tags, :description => description, :visibility => visibility, - :inserted => true, + :inserted => false, :user => current_user, - :timestamp => Time.now.getutc + :timestamp => Time.now.utc, + :file => file ) - if trace.valid? - Trace.transaction do - begin - # Save the trace object - trace.save! - - # Rename the temporary file to the final name - FileUtils.mv(filename, trace.trace_name) - rescue StandardError - # Remove the file as we have failed to update the database - FileUtils.rm_f(filename) - - # Pass the exception on - raise - end - - begin - # Clear the inserted flag to make the import daemon load the trace - trace.inserted = false - trace.save! - rescue StandardError - # Remove the file as we have failed to update the database - FileUtils.rm_f(trace.trace_name) - - # Pass the exception on - raise - end - end - end + # Save the trace object + trace.save! # Finally save the user's preferred privacy level - if pref = current_user.preferences.where(:k => "gps.trace.visibility").first + if pref = current_user.preferences.find_by(:k => "gps.trace.visibility") pref.v = visibility pref.save else