]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/traces_controller.rb
Fix new rubocop warnings
[rails.git] / app / controllers / api / traces_controller.rb
1 module Api
2   class TracesController < ApiController
3     before_action :authorize_web
4     before_action :set_locale
5     before_action :authorize
6
7     authorize_resource
8
9     before_action :check_database_readable, :except => [:show, :data]
10     before_action :check_database_writable, :only => [:create, :update, :destroy]
11     before_action :check_api_readable, :only => [:show, :data]
12     before_action :check_api_writable, :only => [:create, :update, :destroy]
13     before_action :offline_error, :only => [:create, :destroy, :data]
14     around_action :api_call_handle_error
15
16     def show
17       @trace = Trace.visible.find(params[:id])
18
19       head :forbidden unless @trace.public? || @trace.user == current_user
20     end
21
22     def update
23       trace = Trace.visible.find(params[:id])
24
25       if trace.user == current_user
26         trace.update_from_xml(request.raw_post)
27         trace.save!
28
29         head :ok
30       else
31         head :forbidden
32       end
33     end
34
35     def destroy
36       trace = Trace.visible.find(params[:id])
37
38       if trace.user == current_user
39         trace.visible = false
40         trace.save!
41         TraceDestroyerJob.perform_later(trace)
42
43         head :ok
44       else
45         head :forbidden
46       end
47     end
48
49     def data
50       trace = Trace.visible.find(params[:id])
51
52       if trace.public? || trace.user == current_user
53         if request.format == Mime[:xml]
54           send_data(trace.xml_file.read, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => "attachment")
55         elsif request.format == Mime[:gpx]
56           send_data(trace.xml_file.read, :filename => "#{trace.id}.gpx", :type => request.format.to_s, :disposition => "attachment")
57         else
58           send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => "attachment")
59         end
60       else
61         head :forbidden
62       end
63     end
64
65     def create
66       tags = params[:tags] || ""
67       description = params[:description] || ""
68       visibility = params[:visibility]
69
70       if visibility.nil?
71         visibility = if params[:public]&.to_i&.nonzero?
72                        "public"
73                      else
74                        "private"
75                      end
76       end
77
78       if params[:file].respond_to?(:read)
79         trace = do_create(params[:file], tags, description, visibility)
80
81         if trace.id
82           TraceImporterJob.perform_later(trace)
83           render :plain => trace.id.to_s
84         elsif trace.valid?
85           head :internal_server_error
86         else
87           head :bad_request
88         end
89       else
90         head :bad_request
91       end
92     end
93
94     private
95
96     def do_create(file, tags, description, visibility)
97       # Sanitise the user's filename
98       name = file.original_filename.gsub(/[^a-zA-Z0-9.]/, "_")
99
100       # Get a temporary filename...
101       filename = "/tmp/#{rand}"
102
103       # ...and save the uploaded file to that location
104       File.binwrite(filename, file.read)
105
106       # Create the trace object, falsely marked as already
107       # inserted to stop the import daemon trying to load it
108       trace = Trace.new(
109         :name => name,
110         :tagstring => tags,
111         :description => description,
112         :visibility => visibility,
113         :inserted => true,
114         :user => current_user,
115         :timestamp => Time.now.getutc
116       )
117
118       if trace.valid?
119         Trace.transaction do
120           begin
121             # Save the trace object
122             trace.save!
123
124             # Rename the temporary file to the final name
125             FileUtils.mv(filename, trace.trace_name)
126           rescue StandardError
127             # Remove the file as we have failed to update the database
128             FileUtils.rm_f(filename)
129
130             # Pass the exception on
131             raise
132           end
133
134           begin
135             # Clear the inserted flag to make the import daemon load the trace
136             trace.inserted = false
137             trace.save!
138           rescue StandardError
139             # Remove the file as we have failed to update the database
140             FileUtils.rm_f(trace.trace_name)
141
142             # Pass the exception on
143             raise
144           end
145         end
146       end
147
148       # Finally save the user's preferred privacy level
149       if pref = current_user.preferences.where(:k => "gps.trace.visibility").first
150         pref.v = visibility
151         pref.save
152       else
153         current_user.preferences.create(:k => "gps.trace.visibility", :v => visibility)
154       end
155
156       trace
157     end
158
159     def offline_error
160       report_error "GPX files offline for maintenance", :service_unavailable if Settings.status == "gpx_offline"
161     end
162   end
163 end