1 class TraceController < ApplicationController
 
   4   before_filter :authorize_web
 
   5   before_filter :set_locale
 
   6   before_filter :require_user, :only => [:mine, :create, :edit, :delete]
 
   7   before_filter :authorize, :only => [:api_details, :api_data, :api_create]
 
   8   before_filter :check_database_readable, :except => [:api_details, :api_data, :api_create]
 
   9   before_filter :check_database_writable, :only => [:create, :edit, :delete]
 
  10   before_filter :check_api_readable, :only => [:api_details, :api_data]
 
  11   before_filter :check_api_writable, :only => [:api_create]
 
  12   before_filter :require_allow_read_gpx, :only => [:api_details, :api_data]
 
  13   before_filter :require_allow_write_gpx, :only => [:api_create]
 
  15   # Counts and selects pages of GPX traces for various criteria (by user, tags, public etc.).
 
  16   #  target_user - if set, specifies the user to fetch traces for.  if not set will fetch all traces
 
  17   def list(target_user = nil, action = "list")
 
  18     # from display name, pick up user id if one user's traces only
 
  19     display_name = params[:display_name]
 
  20     if target_user.nil? and !display_name.blank?
 
  21       target_user = User.find(:first, :conditions => [ "visible = ? and display_name = ?", true, display_name])
 
  23         @title = t'trace.no_such_user.title'
 
  24         @not_found_user = display_name
 
  25         render :action => 'no_such_user', :status => :not_found
 
  32       @title = t 'trace.list.public_traces'
 
  33     elsif @user and @user == target_user
 
  34       @title = t 'trace.list.your_traces'
 
  36       @title = t 'trace.list.public_traces_from', :user => target_user.display_name
 
  39     @title += t 'trace.list.tagged_with', :tags => params[:tag] if params[:tag]
 
  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     if target_user.nil? # all traces
 
  48         conditions = ["(gpx_files.visibility in ('public', 'identifiable') OR gpx_files.user_id = ?)", @user.id] #1
 
  50         conditions  = ["gpx_files.visibility in ('public', 'identifiable')"] #2
 
  53       if @user and @user == target_user
 
  54         conditions = ["gpx_files.user_id = ?", @user.id] #3 (check vs user id, so no join + can't pick up non-public traces by changing name)
 
  56         conditions = ["gpx_files.visibility in ('public', 'identifiable') AND gpx_files.user_id = ?", target_user.id] #4
 
  63       files = Tracetag.find_all_by_tag(params[:tag]).collect { |tt| tt.gpx_id }
 
  66         conditions[0] += " AND gpx_files.id IN (#{files.join(',')})"
 
  68         conditions[0] += " AND 0 = 1"
 
  72     conditions[0] += " AND gpx_files.visible = ?"
 
  75     @trace_pages, @traces = paginate(:traces,
 
  76                                      :include => [:user, :tags],
 
  77                                      :conditions => conditions,
 
  78                                      :order => "gpx_files.timestamp DESC",
 
  81     # put together SET of tags across traces, for related links
 
  84       @traces.each do |trace|
 
  85         trace.tags.reload if params[:tag] # if searched by tag, ActiveRecord won't bring back other tags, so do explicitly here
 
  86         trace.tags.each do |tag|
 
  87           tagset[tag.tag] = tag.tag
 
  92     # final helper vars for view
 
  94     @display_name = target_user.display_name if target_user
 
  95     @all_tags = tagset.values
 
  99     # Load the preference of whether the user set the trace public the last time
 
 101     visibility = @user.preferences.find(:first, :conditions => {:k => "gps.trace.visibility"})
 
 103       @trace.visibility = visibility.v
 
 104     elsif @user.preferences.find(:first, :conditions => {:k => "gps.trace.public", :v => "default"}).nil?
 
 105       @trace.visibility = "private"
 
 107       @trace.visibility = "public"
 
 113     @trace = Trace.find(params[:id])
 
 115     if @trace and @trace.visible? and
 
 116        (@trace.public? or @trace.user == @user)
 
 117       @title = t 'trace.view.title', :name => @trace.name
 
 119       flash[:notice] = t 'trace.view.trace_not_found'
 
 120       redirect_to :controller => 'trace', :action => 'list'
 
 122   rescue ActiveRecord::RecordNotFound
 
 123     flash[:notice] = t 'trace.view.trace_not_found'
 
 124     redirect_to :controller => 'trace', :action => 'list'
 
 129       logger.info(params[:trace][:gpx_file].class.name)
 
 130       if params[:trace][:gpx_file].respond_to?(:read)
 
 131         do_create(params[:trace][:gpx_file], params[:trace][:tagstring],
 
 132                   params[:trace][:description], params[:trace][:visibility])
 
 135           logger.info("id is #{@trace.id}")
 
 136           flash[:notice] = t 'trace.create.trace_uploaded'
 
 138           redirect_to :action => 'mine'
 
 141         @trace = Trace.new({:name => "Dummy",
 
 142                             :tagstring => params[:trace][:tagstring],
 
 143                             :description => params[:trace][:description],
 
 144                             :visibility => params[:trace][:visibility],
 
 145                             :inserted => false, :user => @user,
 
 146                             :timestamp => Time.now.getutc})
 
 148         @trace.errors.add(:gpx_file, "can't be blank")
 
 151     @title = t 'trace.create.upload_trace'
 
 155     trace = Trace.find(params[:id])
 
 157     if trace.visible? and (trace.public? or (@user and @user == trace.user))
 
 158       if request.format == Mime::XML
 
 159         send_file(trace.xml_file, :filename => "#{trace.id}.xml", :type => Mime::XML.to_s, :disposition => 'attachment')
 
 161         send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
 
 164       render :nothing => true, :status => :not_found
 
 166   rescue ActiveRecord::RecordNotFound
 
 167     render :nothing => true, :status => :not_found
 
 171     @trace = Trace.find(params[:id])
 
 173     if @user and @trace.user == @user
 
 174       @title = t 'trace.edit.title', :name => @trace.name
 
 176         @trace.description = params[:trace][:description]
 
 177         @trace.tagstring = params[:trace][:tagstring]
 
 178         @trace.visibility = params[:trace][:visibility]
 
 180           redirect_to :action => 'view'
 
 184       render :nothing => true, :status => :forbidden
 
 186   rescue ActiveRecord::RecordNotFound
 
 187     render :nothing => true, :status => :not_found
 
 191     trace = Trace.find(params[:id])
 
 193     if @user and trace.user == @user
 
 194       if request.post? and trace.visible?
 
 195         trace.visible = false
 
 197         flash[:notice] = t 'trace.delete.scheduled_for_deletion'
 
 198         redirect_to :controller => 'traces', :action => 'mine'
 
 200         render :nothing => true, :status => :bad_request
 
 203       render :nothing => true, :status => :forbidden
 
 205   rescue ActiveRecord::RecordNotFound
 
 206     render :nothing => true, :status => :not_found
 
 210     conditions = ["gpx_files.visibility in ('public', 'identifiable')"]
 
 212     if params[:display_name]
 
 213       conditions[0] += " AND users.display_name = ?"
 
 214       conditions << params[:display_name]
 
 218       conditions[0] += " AND EXISTS (SELECT * FROM gpx_file_tags AS gft WHERE gft.gpx_id = gpx_files.id AND gft.tag = ?)"
 
 219       conditions << params[:tag]
 
 222     traces = Trace.find(:all, :include => :user, :conditions => conditions, 
 
 223                         :order => "timestamp DESC", :limit => 20)
 
 225     rss = OSM::GeoRSS.new
 
 227     traces.each do |trace|
 
 228       rss.add(trace.latitude, trace.longitude, trace.name, trace.user.display_name, url_for({:controller => 'trace', :action => 'view', :id => trace.id, :display_name => trace.user.display_name}), "<img src='#{url_for({:controller => 'trace', :action => 'icon', :id => trace.id, :user_login => trace.user.display_name})}'> GPX file with #{trace.size} points from #{trace.user.display_name}", trace.timestamp)
 
 231     render :text => rss.to_s, :content_type => "application/rss+xml"
 
 235     trace = Trace.find(params[:id])
 
 238       if trace.public? or (@user and @user == trace.user)
 
 239         expires_in 7.days, :private => !trace.public?, :public => trace.public?
 
 240         send_file(trace.large_picture_name, :filename => "#{trace.id}.gif", :type => 'image/gif', :disposition => 'inline')
 
 242         render :nothing => true, :status => :forbidden
 
 245       render :nothing => true, :status => :not_found
 
 247   rescue ActiveRecord::RecordNotFound
 
 248     render :nothing => true, :status => :not_found
 
 252     trace = Trace.find(params[:id])
 
 255       if trace.public? or (@user and @user == trace.user)
 
 256         expires_in 7.days, :private => !trace.public?, :public => trace.public?
 
 257         send_file(trace.icon_picture_name, :filename => "#{trace.id}_icon.gif", :type => 'image/gif', :disposition => 'inline')
 
 259         render :nothing => true, :status => :forbidden
 
 262       render :nothing => true, :status => :not_found
 
 264   rescue ActiveRecord::RecordNotFound
 
 265     render :nothing => true, :status => :not_found
 
 269     trace = Trace.find(params[:id])
 
 271     if trace.public? or trace.user == @user
 
 272       render :text => trace.to_xml.to_s, :content_type => "text/xml"
 
 274       render :nothing => true, :status => :forbidden
 
 276   rescue ActiveRecord::RecordNotFound
 
 277     render :nothing => true, :status => :not_found
 
 281     trace = Trace.find(params[:id])
 
 283     if trace.public? or trace.user == @user
 
 284       send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
 
 286       render :nothing => true, :status => :forbidden
 
 288   rescue ActiveRecord::RecordNotFound
 
 289     render :nothing => true, :status => :not_found
 
 294       tags = params[:tags] || ""
 
 295       description = params[:description] || ""
 
 296       visibility = params[:visibility]
 
 300           visibility = "public"
 
 302           visibility = "private"
 
 306       if params[:file].respond_to?(:read)
 
 307         do_create(params[:file], tags, description, visibility)
 
 310           render :text => @trace.id.to_s, :content_type => "text/plain"
 
 312           render :nothing => true, :status => :internal_server_error
 
 314           render :nothing => true, :status => :bad_request
 
 317         render :nothing => true, :status => :bad_request
 
 320       render :nothing => true, :status => :method_not_allowed
 
 326   def do_create(file, tags, description, visibility)
 
 327     # Sanitise the user's filename
 
 328     name = file.original_filename.gsub(/[^a-zA-Z0-9.]/, '_')
 
 330     # Get a temporary filename...
 
 331     filename = "/tmp/#{rand}"
 
 333     # ...and save the uploaded file to that location
 
 334     File.open(filename, "w") { |f| f.write(file.read) }
 
 336     # Create the trace object, falsely marked as already
 
 337     # inserted to stop the import daemon trying to load it
 
 341       :description => description,
 
 342       :visibility => visibility,
 
 345       :timestamp => Time.now.getutc
 
 348     # Save the trace object
 
 350       # Rename the temporary file to the final name
 
 351       FileUtils.mv(filename, @trace.trace_name)
 
 353       # Clear the inserted flag to make the import daemon load the trace
 
 354       @trace.inserted = false
 
 357       # Remove the file as we have failed to update the database
 
 358       FileUtils.rm_f(filename)
 
 361     # Finally save the user's preferred previacy level
 
 362     if pref = @user.preferences.find(:first, :conditions => {:k => "gps.trace.visibility"})
 
 366       @user.preferences.create(:k => "gps.trace.visibility", :v => visibility)