]> git.openstreetmap.org Git - rails.git/blob - app/controllers/traces_controller.rb
Make "include" and "limit" keyword args of pagination method
[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   end
69
70   def show
71     @trace = Trace.find(params[:id])
72
73     if @trace&.visible? &&
74        (@trace&.public? || @trace&.user == current_user)
75       @title = t ".title", :name => @trace.name
76     else
77       flash[:error] = t ".trace_not_found"
78       redirect_to :action => "index"
79     end
80   rescue ActiveRecord::RecordNotFound
81     flash[:error] = t ".trace_not_found"
82     redirect_to :action => "index"
83   end
84
85   def new
86     @title = t ".upload_trace"
87     @trace = Trace.new(:visibility => default_visibility)
88   end
89
90   def edit
91     @trace = Trace.find(params[:id])
92
93     if !@trace.visible?
94       head :not_found
95     elsif current_user.nil? || @trace.user != current_user
96       head :forbidden
97     else
98       @title = t ".title", :name => @trace.name
99     end
100   rescue ActiveRecord::RecordNotFound
101     head :not_found
102   end
103
104   def create
105     @title = t ".upload_trace"
106
107     logger.info(params[:trace][:gpx_file].class.name)
108
109     if params[:trace][:gpx_file].respond_to?(:read)
110       @trace = do_create(params[:trace][:gpx_file], params[:trace][:tagstring],
111                          params[:trace][:description], params[:trace][:visibility])
112
113       if @trace.id
114         flash[:notice] = t ".trace_uploaded"
115         flash[:warning] = t ".traces_waiting", :count => current_user.traces.where(:inserted => false).count if current_user.traces.where(:inserted => false).count > 4
116
117         @trace.schedule_import
118         redirect_to :action => :index, :display_name => current_user.display_name
119       else
120         flash[:error] = t(".upload_failed") if @trace.valid?
121
122         render :action => "new"
123       end
124     else
125       @trace = Trace.new(:name => "Dummy",
126                          :tagstring => params[:trace][:tagstring],
127                          :description => params[:trace][:description],
128                          :visibility => params[:trace][:visibility],
129                          :inserted => false, :user => current_user,
130                          :timestamp => Time.now.utc)
131       @trace.valid?
132       @trace.errors.add(:gpx_file, "can't be blank")
133
134       render :action => "new"
135     end
136   end
137
138   def update
139     @trace = Trace.find(params[:id])
140
141     if !@trace.visible?
142       head :not_found
143     elsif current_user.nil? || @trace.user != current_user
144       head :forbidden
145     elsif @trace.update(trace_params)
146       flash[:notice] = t ".updated"
147       redirect_to :action => "show", :display_name => current_user.display_name
148     else
149       @title = t ".title", :name => @trace.name
150       render :action => "edit"
151     end
152   rescue ActiveRecord::RecordNotFound
153     head :not_found
154   end
155
156   def destroy
157     trace = Trace.find(params[:id])
158
159     if !trace.visible?
160       head :not_found
161     elsif current_user.nil? || (trace.user != current_user && !current_user.administrator? && !current_user.moderator?)
162       head :forbidden
163     else
164       trace.visible = false
165       trace.save
166       flash[:notice] = t ".scheduled_for_deletion"
167       trace.schedule_destruction
168       redirect_to :action => :index, :display_name => trace.user.display_name
169     end
170   rescue ActiveRecord::RecordNotFound
171     head :not_found
172   end
173
174   def mine
175     redirect_to :action => :index, :display_name => current_user.display_name
176   end
177
178   def data
179     trace = Trace.find(params[:id])
180
181     if trace.visible? && (trace.public? || (current_user && current_user == trace.user))
182       if Acl.no_trace_download(request.remote_ip)
183         head :forbidden
184       elsif request.format == Mime[:xml]
185         send_data(trace.xml_file.read, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => "attachment")
186       elsif request.format == Mime[:gpx]
187         send_data(trace.xml_file.read, :filename => "#{trace.id}.gpx", :type => request.format.to_s, :disposition => "attachment")
188       elsif trace.file.attached?
189         redirect_to rails_blob_path(trace.file, :disposition => "attachment")
190       else
191         send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => "attachment")
192       end
193     else
194       head :not_found
195     end
196   rescue ActiveRecord::RecordNotFound
197     head :not_found
198   end
199
200   def georss
201     @traces = Trace.visible_to_all.visible
202
203     @traces = @traces.joins(:user).where(:users => { :display_name => params[:display_name] }) if params[:display_name]
204
205     @traces = @traces.tagged(params[:tag]) if params[:tag]
206     @traces = @traces.order("timestamp DESC")
207     @traces = @traces.limit(20)
208     @traces = @traces.includes(:user)
209   end
210
211   def picture
212     trace = Trace.find(params[:id])
213
214     if trace.visible? && trace.inserted?
215       if trace.public? || (current_user && current_user == trace.user)
216         if trace.icon.attached?
217           redirect_to rails_blob_path(trace.image, :disposition => "inline")
218         else
219           expires_in 7.days, :private => !trace.public?, :public => trace.public?
220           send_file(trace.large_picture_name, :filename => "#{trace.id}.gif", :type => "image/gif", :disposition => "inline")
221         end
222       else
223         head :forbidden
224       end
225     else
226       head :not_found
227     end
228   rescue ActiveRecord::RecordNotFound
229     head :not_found
230   end
231
232   def icon
233     trace = Trace.find(params[:id])
234
235     if trace.visible? && trace.inserted?
236       if trace.public? || (current_user && current_user == trace.user)
237         if trace.icon.attached?
238           redirect_to rails_blob_path(trace.icon, :disposition => "inline")
239         else
240           expires_in 7.days, :private => !trace.public?, :public => trace.public?
241           send_file(trace.icon_picture_name, :filename => "#{trace.id}_icon.gif", :type => "image/gif", :disposition => "inline")
242         end
243       else
244         head :forbidden
245       end
246     else
247       head :not_found
248     end
249   rescue ActiveRecord::RecordNotFound
250     head :not_found
251   end
252
253   private
254
255   def do_create(file, tags, description, visibility)
256     # Sanitise the user's filename
257     name = file.original_filename.gsub(/[^a-zA-Z0-9.]/, "_")
258
259     # Create the trace object
260     trace = Trace.new(
261       :name => name,
262       :tagstring => tags,
263       :description => description,
264       :visibility => visibility,
265       :inserted => false,
266       :user => current_user,
267       :timestamp => Time.now.utc,
268       :file => file
269     )
270
271     # Save the trace object
272     if trace.save
273       # Finally save the user's preferred privacy level
274       if pref = current_user.preferences.find_by(:k => "gps.trace.visibility")
275         pref.v = visibility
276         pref.save
277       else
278         current_user.preferences.create(:k => "gps.trace.visibility", :v => visibility)
279       end
280     end
281
282     trace
283   end
284
285   def offline_warning
286     flash.now[:warning] = t "traces.offline_warning.message" if Settings.status == "gpx_offline"
287   end
288
289   def offline_redirect
290     render :action => :offline if Settings.status == "gpx_offline"
291   end
292
293   def default_visibility
294     visibility = current_user.preferences.find_by(:k => "gps.trace.visibility")
295
296     if visibility
297       visibility.v
298     elsif current_user.preferences.find_by(:k => "gps.trace.public", :v => "default").nil?
299       "private"
300     else
301       "public"
302     end
303   end
304
305   def trace_params
306     params.require(:trace).permit(:description, :tagstring, :visibility)
307   end
308 end