1 class ApiController < ApplicationController
3 before_filter :authorize
4 after_filter :compress_output
9 #COUNT is the number of map requests to allow before exiting and starting a new process
13 @current_user = User.find_by_token(session[:token])
16 # The maximum area you're allowed to request, in square degrees
17 MAX_REQUEST_AREA = 0.25
20 # Number of GPS trace/trackpoints returned per-page
21 TRACEPOINTS_PER_PAGE = 5000
25 response.headers["Content-Type"] = 'text/xml'
26 #retrieve the page number
27 page = params['page'].to_i
33 report_error("Page number must be greater than or equal to 0")
37 offset = page * TRACEPOINTS_PER_PAGE
41 unless bbox and bbox.count(',') == 3
42 report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
46 bbox = bbox.split(',')
48 min_lon = bbox[0].to_f
49 min_lat = bbox[1].to_f
50 max_lon = bbox[2].to_f
51 max_lat = bbox[3].to_f
53 # check the bbox is sane
54 unless min_lon <= max_lon
55 report_error("The minimum longitude must be less than the maximum longitude, but it wasn't")
58 unless min_lat <= max_lat
59 report_error("The minimum latitude must be less than the maximum latitude, but it wasn't")
62 unless min_lon >= -180 && min_lat >= -90 && max_lon <= 180 && max_lat <= 90
63 report_error("The latitudes must be between -90 and 90, and longitudes between -180 and 180")
67 # check the bbox isn't too large
68 requested_area = (max_lat-min_lat)*(max_lon-min_lon)
69 if requested_area > MAX_REQUEST_AREA
70 report_error("The maximum bbox size is " + MAX_REQUEST_AREA.to_s + ", and your request was too large. Either request a smaller area, or use planet.osm")
75 min_lat = min_lat * 1000000
76 max_lat = max_lat * 1000000
77 min_lon = min_lon * 1000000
78 max_lon = max_lon * 1000000
80 points = Tracepoint.find(:all, :conditions => ['gps_points.latitude > ? AND gps_points.longitude > ? AND gps_points.latitude < ? AND gps_points.longitude < ? AND ( public = 1 OR gpx_files.user_id = ? ) AND visible = 1', min_lat.to_i, min_lon.to_i, max_lat.to_i, max_lon.to_i, @user.id ], :select => "gps_points.*", :joins => "INNER JOIN gpx_files ON gpx_files.id = gpx_id", :offset => offset, :limit => TRACEPOINTS_PER_PAGE, :order => "timestamp DESC" )
82 doc = XML::Document.new
83 doc.encoding = 'UTF-8'
84 root = XML::Node.new 'gpx'
85 root['version'] = '1.0'
86 root['creator'] = 'OpenStreetMap.org'
87 root['xmlns'] = "http://www.topografix.com/GPX/1/0/"
91 track = XML::Node.new 'trk'
94 trkseg = XML::Node.new 'trkseg'
97 points.each do |point|
98 trkseg << point.to_xml_node()
101 #exit when we have too many requests
102 if @@count > MAX_COUNT
103 render :text => doc.to_s
108 render :text => doc.to_s
115 response.headers["Content-Type"] = 'text/xml'
116 # Figure out the bbox
117 bbox = params['bbox']
118 unless bbox and bbox.count(',') == 3
119 report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
123 bbox = bbox.split(',')
125 min_lon = bbox[0].to_f
126 min_lat = bbox[1].to_f
127 max_lon = bbox[2].to_f
128 max_lat = bbox[3].to_f
130 # check the bbox is sane
131 unless min_lon <= max_lon
132 report_error("The minimum longitude must be less than the maximum longitude, but it wasn't")
135 unless min_lat <= max_lat
136 report_error("The minimum latitude must be less than the maximum latitude, but it wasn't")
139 unless min_lon >= -180 && min_lat >= -90 && max_lon <= 180 && max_lat <= 90
140 report_error("The latitudes must be between -90 and 90, and longitudes between -180 and 180")
144 # check the bbox isn't too large
145 requested_area = (max_lat-min_lat)*(max_lon-min_lon)
146 if requested_area > MAX_REQUEST_AREA
147 report_error("The maximum bbox size is " + MAX_REQUEST_AREA.to_s + ", and your request was too large. Either request a smaller area, or use planet.osm")
152 nodes = Node.find(:all, :conditions => ['latitude > ? AND longitude > ? AND latitude < ? AND longitude < ? AND visible = 1', min_lat, min_lon, max_lat, max_lon])
154 node_ids = nodes.collect {|node| node.id }
156 # (in the future, we may wish to abort here if we found too many nodes)
160 if node_ids.length > 0
161 node_ids_sql = "(#{node_ids.join(',')})"
162 # get the referenced segments
163 segments = Segment.find_by_sql "select * from current_segments where visible = 1 and (node_a in #{node_ids_sql} or node_b in #{node_ids_sql})"
165 # see if we have any missing nodes
166 segments_nodes = segments.collect {|segment| segment.node_a }
167 segments_nodes += segments.collect {|segment| segment.node_b }
171 missing_nodes = segments_nodes - node_ids
173 # get missing nodes if there are any
174 nodes += Node.find(missing_nodes) if missing_nodes.length > 0
176 doc = OSM::API.new.get_xml_doc
179 # find which ways are needed
180 segment_ids = segments.collect {|segment| segment.id }
182 if segment_ids.length > 0
183 way_segments = WaySegment.find_all_by_segment_id(segment_ids)
184 way_ids = way_segments.collect {|way_segment| way_segment.id }
185 ways = Way.find(way_ids) # NB: doesn't pick up segments, tags from db until accessed via way.way_segments etc.
189 doc.root << node.to_xml_node()
192 segments.each do |segment|
193 doc.root << segment.to_xml_node()
197 doc.root << way.to_xml_node()
200 render :text => doc.to_s
202 #exit when we have too many requests
203 if @@count > MAX_COUNT
204 render :text => doc.to_s