1 class ApiController < ApplicationController
4 before_filter :check_read_availability, :except => [:capabilities]
5 after_filter :compress_output
7 # Help methods for checking boundary sanity and area size
10 #COUNT is the number of map requests to allow before exiting and starting a new process
13 # The maximum area you're allowed to request, in square degrees
14 MAX_REQUEST_AREA = 0.25
16 # Number of GPS trace/trackpoints returned per-page
17 TRACEPOINTS_PER_PAGE = 5000
22 #retrieve the page number
23 page = params['page'].to_i
29 report_error("Page number must be greater than or equal to 0")
33 offset = page * TRACEPOINTS_PER_PAGE
37 unless bbox and bbox.count(',') == 3
38 report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
42 bbox = bbox.split(',')
43 min_lon, min_lat, max_lon, max_lat = sanitise_boundaries(bbox)
44 # check boundary is sane and area within defined
45 # see /config/application.yml
47 check_boundaries(min_lon, min_lat, max_lon, max_lat)
48 rescue Exception => err
49 report_error(err.message)
54 points = Tracepoint.find_by_area(min_lat, min_lon, max_lat, max_lon, :offset => offset, :limit => TRACEPOINTS_PER_PAGE, :order => "timestamp DESC" )
56 doc = XML::Document.new
57 doc.encoding = 'UTF-8'
58 root = XML::Node.new 'gpx'
59 root['version'] = '1.0'
60 root['creator'] = 'OpenStreetMap.org'
61 root['xmlns'] = "http://www.topografix.com/GPX/1/0/"
65 track = XML::Node.new 'trk'
68 trkseg = XML::Node.new 'trkseg'
71 points.each do |point|
72 trkseg << point.to_xml_node()
75 #exit when we have too many requests
76 if @@count > MAX_COUNT
77 render :text => doc.to_s, :content_type => "text/xml"
82 response.headers["Content-Disposition"] = "attachment; filename=\"map.osm\""
84 render :text => doc.to_s, :content_type => "text/xml"
93 unless bbox and bbox.count(',') == 3
94 # alternatively: report_error(TEXT['boundary_parameter_required']
95 report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
99 bbox = bbox.split(',')
101 min_lon, min_lat, max_lon, max_lat = sanitise_boundaries(bbox)
103 # check boundary is sane and area within defined
104 # see /config/application.yml
106 check_boundaries(min_lon, min_lat, max_lon, max_lat)
107 rescue Exception => err
108 report_error(err.message)
112 @nodes = Node.find_by_area(min_lat, min_lon, max_lat, max_lon, :conditions => "visible = 1", :limit => APP_CONFIG['max_number_of_nodes']+1)
113 # get all the nodes, by tag not yet working, waiting for change from NickB
114 # need to be @nodes (instance var) so tests in /spec can be performed
115 #@nodes = Node.search(bbox, params[:tag])
117 node_ids = @nodes.collect(&:id)
118 if node_ids.length > APP_CONFIG['max_number_of_nodes']
119 report_error("You requested too many nodes (limit is 50,000). Either request a smaller area, or use planet.osm")
122 if node_ids.length == 0
123 render :text => "<osm version='0.5'></osm>", :content_type => "text/xml"
127 doc = OSM::API.new.get_xml_doc
130 # find which ways are needed
132 if node_ids.length > 0
133 way_nodes = WayNode.find_all_by_node_id(node_ids)
134 way_ids = way_nodes.collect { |way_node| way_node.id[0] }
135 ways = Way.find(way_ids)
137 list_of_way_nodes = ways.collect { |way|
138 way.way_nodes.collect { |way_node| way_node.node_id }
140 list_of_way_nodes.flatten!
143 list_of_way_nodes = Array.new
146 # - [0] in case some thing links to node 0 which doesn't exist. Shouldn't actually ever happen but it does. FIXME: file a ticket for this
147 nodes_to_fetch = (list_of_way_nodes.uniq - node_ids) - [0]
149 if nodes_to_fetch.length > 0
150 @nodes += Node.find(nodes_to_fetch)
154 user_display_name_cache = {}
156 @nodes.each do |node|
158 doc.root << node.to_xml_node(user_display_name_cache)
159 visible_nodes[node.id] = node
166 doc.root << way.to_xml_node(visible_nodes, user_display_name_cache)
171 relations = visible_nodes.values.collect { |node| node.containing_relations.visible }.flatten +
172 way_ids.collect { |id| Way.find(id).containing_relations.visible }.flatten
174 # we do not normally return the "other" partners referenced by an relation,
175 # e.g. if we return a way A that is referenced by relation X, and there's
176 # another way B also referenced, that is not returned. But we do make
177 # an exception for cases where an relation references another *relation*;
178 # in that case we return that as well (but we don't go recursive here)
179 relations += relations.collect { |relation| relation.containing_relations.visible }.flatten
181 # this "uniq" may be slightly inefficient; it may be better to first collect and output
182 # all node-related relations, then find the *not yet covered* way-related ones etc.
183 relations.uniq.each do |relation|
184 doc.root << relation.to_xml_node(user_display_name_cache)
187 response.headers["Content-Disposition"] = "attachment; filename=\"map.osm\""
189 render :text => doc.to_s, :content_type => "text/xml"
191 #exit when we have too many requests
192 if @@count > MAX_COUNT
200 zoom = (params[:zoom] || '12').to_i
202 if params.include?(:start) and params.include?(:end)
203 starttime = Time.parse(params[:start])
204 endtime = Time.parse(params[:end])
206 hours = (params[:hours] || '1').to_i.hours
208 starttime = endtime - hours
211 if zoom >= 1 and zoom <= 16 and
212 endtime >= starttime and endtime - starttime <= 24.hours
213 mask = (1 << zoom) - 1
215 tiles = Node.count(:conditions => ["timestamp BETWEEN ? AND ?", starttime, endtime],
216 :group => "maptile_for_point(latitude, longitude, #{zoom})")
218 doc = OSM::API.new.get_xml_doc
219 changes = XML::Node.new 'changes'
220 changes["starttime"] = starttime.xmlschema
221 changes["endtime"] = endtime.xmlschema
223 tiles.each do |tile, count|
224 x = (tile.to_i >> zoom) & mask
227 t = XML::Node.new 'tile'
231 t["changes"] = count.to_s
238 render :text => doc.to_s, :content_type => "text/xml"
240 render :nothing => true, :status => :bad_request
245 doc = OSM::API.new.get_xml_doc
247 api = XML::Node.new 'api'
248 version = XML::Node.new 'version'
249 version['minimum'] = '0.5';
250 version['maximum'] = '0.5';
252 area = XML::Node.new 'area'
253 area['maximum'] = MAX_REQUEST_AREA.to_s;
258 render :text => doc.to_s, :content_type => "text/xml"