]> git.openstreetmap.org Git - rails.git/blob - app/controllers/traces_controller.rb
Backfill note subscriptions
[rails.git] / app / controllers / traces_controller.rb
1 class TracesController < ApplicationController
2   include UserMethods
3   include PaginationMethods
4
5   layout "site", :except => :georss
6
7   before_action :authorize_web
8   before_action :set_locale
9   before_action :check_database_readable
10
11   authorize_resource
12
13   before_action :check_database_writable, :only => [:new, :create, :edit, :destroy]
14   before_action :offline_warning, :only => [:mine, :show]
15   before_action :offline_redirect, :only => [:new, :create, :edit, :destroy, :data]
16
17   # Counts and selects pages of GPX traces for various criteria (by user, tags, public etc.).
18   #  target_user - if set, specifies the user to fetch traces for.  if not set will fetch all traces
19   def index
20     # from display name, pick up user id if one user's traces only
21     display_name = params[:display_name]
22     if display_name.present?
23       target_user = User.active.find_by(:display_name => display_name)
24       if target_user.nil?
25         render_unknown_user display_name
26         return
27       end
28     end
29
30     # set title
31     @title = if target_user.nil?
32                t ".public_traces"
33              elsif current_user && current_user == target_user
34                t ".my_gps_traces"
35              else
36                t ".public_traces_from", :user => target_user.display_name
37              end
38
39     @title += t ".tagged_with", :tags => params[:tag] if params[:tag]
40
41     # four main cases:
42     # 1 - all traces, logged in = all public traces + all user's (i.e + all mine)
43     # 2 - all traces, not logged in = all public traces
44     # 3 - user's traces, logged in as same user = all user's traces
45     # 4 - user's traces, not logged in as that user = all user's public traces
46     traces = if target_user.nil? # all traces
47                if current_user
48                  Trace.visible_to(current_user) # 1
49                else
50                  Trace.visible_to_all # 2
51                end
52              elsif current_user && current_user == target_user
53                current_user.traces # 3 (check vs user id, so no join + can't pick up non-public traces by changing name)
54              else
55                target_user.traces.visible_to_all # 4
56              end
57
58     traces = traces.tagged(params[:tag]) if params[:tag]
59
60     traces = traces.visible
61
62     @params = params.permit(:display_name, :tag, :before, :after)
63
64     @traces, @newer_traces_id, @older_traces_id = get_page_items(traces, :includes => [:user, :tags])
65
66     # final helper vars for view
67     @target_user = target_user
68
69     render :partial => "page" if turbo_frame_request_id == "pagination"
70   end
71
72   def show
73     @trace = Trace.visible.find(params[:id])
74
75     if @trace.public? || @trace.user == current_user
76       @title = t ".title", :name => @trace.name
77     else
78       flash[:error] = t ".trace_not_found"
79       redirect_to :action => "index"
80     end
81   rescue ActiveRecord::RecordNotFound
82     flash[:error] = t ".trace_not_found"
83     redirect_to :action => "index"
84   end
85
86   def new
87     @title = t ".upload_trace"
88     @trace = Trace.new(:visibility => default_visibility)
89   end
90
91   def edit
92     @trace = Trace.visible.find(params[:id])
93
94     if current_user.nil? || @trace.user != current_user
95       head :forbidden
96     else
97       @title = t ".title", :name => @trace.name
98     end
99   rescue ActiveRecord::RecordNotFound
100     head :not_found
101   end
102
103   def create
104     @title = t ".upload_trace"
105
106     logger.info(params[:trace][:gpx_file].class.name)
107
108     if params[:trace][:gpx_file].respond_to?(:read)
109       @trace = do_create(params[:trace][:gpx_file], params[:trace][:tagstring],
110                          params[:trace][:description], params[:trace][:visibility])
111
112       if @trace.id
113         flash[:notice] = t ".trace_uploaded"
114         flash[:warning] = t ".traces_waiting", :count => current_user.traces.where(:inserted => false).count if current_user.traces.where(:inserted => false).count > 4
115
116         @trace.schedule_import
117         redirect_to :action => :index, :display_name => current_user.display_name
118       else
119         flash[:error] = t(".upload_failed") if @trace.valid?
120
121         render :action => "new"
122       end
123     else
124       @trace = Trace.new(:name => "Dummy",
125                          :tagstring => params[:trace][:tagstring],
126                          :description => params[:trace][:description],
127                          :visibility => params[:trace][:visibility],
128                          :inserted => false, :user => current_user,
129                          :timestamp => Time.now.utc)
130       @trace.valid?
131       @trace.errors.add(:gpx_file, "can't be blank")
132
133       render :action => "new"
134     end
135   end
136
137   def update
138     @trace = Trace.visible.find(params[:id])
139
140     if current_user.nil? || @trace.user != current_user
141       head :forbidden
142     elsif @trace.update(trace_params)
143       flash[:notice] = t ".updated"
144       redirect_to :action => "show", :display_name => current_user.display_name
145     else
146       @title = t "traces.edit.title", :name => @trace.name
147       render :action => "edit"
148     end
149   rescue ActiveRecord::RecordNotFound
150     head :not_found
151   end
152
153   def destroy
154     trace = Trace.visible.find(params[:id])
155
156     if current_user.nil? || (trace.user != current_user && !current_user.administrator? && !current_user.moderator?)
157       head :forbidden
158     else
159       trace.visible = false
160       trace.save
161       flash[:notice] = t ".scheduled_for_deletion"
162       trace.schedule_destruction
163       redirect_to :action => :index, :display_name => trace.user.display_name
164     end
165   rescue ActiveRecord::RecordNotFound
166     head :not_found
167   end
168
169   def mine
170     redirect_to :action => :index, :display_name => current_user.display_name
171   end
172
173   def data
174     trace = Trace.visible.find(params[:id])
175
176     if trace.public? || (current_user && current_user == trace.user)
177       if Acl.no_trace_download(request.remote_ip)
178         head :forbidden
179       elsif request.format == Mime[:xml]
180         send_data(trace.xml_file.read, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => "attachment")
181       elsif request.format == Mime[:gpx]
182         send_data(trace.xml_file.read, :filename => "#{trace.id}.gpx", :type => request.format.to_s, :disposition => "attachment")
183       elsif trace.file.attached?
184         redirect_to rails_blob_path(trace.file, :disposition => "attachment")
185       else
186         send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => "attachment")
187       end
188     else
189       head :not_found
190     end
191   rescue ActiveRecord::RecordNotFound
192     head :not_found
193   end
194
195   def georss
196     @traces = Trace.visible_to_all.visible
197
198     @traces = @traces.joins(:user).where(:users => { :display_name => params[:display_name] }) if params[:display_name]
199
200     @traces = @traces.tagged(params[:tag]) if params[:tag]
201     @traces = @traces.order("timestamp DESC")
202     @traces = @traces.limit(20)
203     @traces = @traces.includes(:user)
204   end
205
206   private
207
208   def do_create(file, tags, description, visibility)
209     # Sanitise the user's filename
210     name = file.original_filename.gsub(/[^a-zA-Z0-9.]/, "_")
211
212     # Create the trace object
213     trace = Trace.new(
214       :name => name,
215       :tagstring => tags,
216       :description => description,
217       :visibility => visibility,
218       :inserted => false,
219       :user => current_user,
220       :timestamp => Time.now.utc,
221       :file => file
222     )
223
224     # Save the trace object
225     if trace.save
226       # Finally save the user's preferred privacy level
227       if pref = current_user.preferences.find_by(:k => "gps.trace.visibility")
228         pref.v = visibility
229         pref.save
230       else
231         current_user.preferences.create(:k => "gps.trace.visibility", :v => visibility)
232       end
233     end
234
235     trace
236   end
237
238   def offline_warning
239     flash.now[:warning] = t "traces.offline_warning.message" if Settings.status == "gpx_offline"
240   end
241
242   def offline_redirect
243     render :action => :offline if Settings.status == "gpx_offline"
244   end
245
246   def default_visibility
247     visibility = current_user.preferences.find_by(:k => "gps.trace.visibility")
248
249     if visibility
250       visibility.v
251     elsif current_user.preferences.find_by(:k => "gps.trace.public", :v => "default").nil?
252       "private"
253     else
254       "public"
255     end
256   end
257
258   def trace_params
259     params.require(:trace).permit(:description, :tagstring, :visibility)
260   end
261 end