class SwfController < ApplicationController
+ session :off
+ before_filter :check_availability
# to log:
# RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
lastfile='-1'
if params['token']
- token=sqlescape(params['token'])
+ user=User.authenticate(:token => params[:token])
sql="SELECT gps_points.latitude*0.000001 AS lat,gps_points.longitude*0.000001 AS lon,gpx_files.id AS fileid,UNIX_TIMESTAMP(gps_points.timestamp) AS ts "+
- " FROM gpx_files,gps_points,users "+
+ " FROM gpx_files,gps_points "+
"WHERE gpx_files.id=gpx_id "+
- " AND gpx_files.user_id=users.id "+
- " AND token='#{token}' "+
+ " AND gpx_files.user_id=#{user.id} "+
" AND (gps_points.longitude BETWEEN #{xminr} AND #{xmaxr}) "+
" AND (gps_points.latitude BETWEEN #{yminr} AND #{ymaxr}) "+
" AND (gps_points.timestamp IS NOT NULL) "+
" WHERE (cn1.longitude BETWEEN #{xmin} AND #{xmax})"+
" AND (cn1.latitude BETWEEN #{ymin} AND #{ymax})"+
" AND segment_id IS NULL"+
+ " AND current_segments.visible=1"+
" AND cn1.id=node_a AND cn1.visible=1"+
" AND cn2.id=node_b AND cn2.visible=1"
seglist=ActiveRecord::Base.connection.select_all sql
m=packRect(bounds_left,bounds_right,bounds_bottom,bounds_top) + 0.chr + 12.chr + packUI16(1) + m
m='FWS' + 6.chr + packUI32(m.length+8) + m
- response.headers["Content-Type"]="application/x-shockwave-flash"
- render :text=>m
+ render :text => m, :content_type => "application/x-shockwave-flash"
end
private