]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api_controller.rb
Try and make asset tagging actually work.
[rails.git] / app / controllers / api_controller.rb
1 class ApiController < ApplicationController
2
3   session :off
4   before_filter :check_read_availability, :except => [:capabilities]
5   after_filter :compress_output
6
7   #COUNT is the number of map requests to allow before exiting and starting a new process
8   @@count = COUNT
9
10   # The maximum area you're allowed to request, in square degrees
11   MAX_REQUEST_AREA = 0.25
12
13
14   # Number of GPS trace/trackpoints returned per-page
15   TRACEPOINTS_PER_PAGE = 5000
16   
17   def trackpoints
18     @@count+=1
19     #retrieve the page number
20     page = params['page'].to_i
21     unless page
22         page = 0;
23     end
24
25     unless page >= 0
26         report_error("Page number must be greater than or equal to 0")
27         return
28     end
29
30     offset = page * TRACEPOINTS_PER_PAGE
31
32     # Figure out the bbox
33     bbox = params['bbox']
34     unless bbox and bbox.count(',') == 3
35       report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
36       return
37     end
38
39     bbox = bbox.split(',')
40
41     min_lon = bbox[0].to_f
42     min_lat = bbox[1].to_f
43     max_lon = bbox[2].to_f
44     max_lat = bbox[3].to_f
45
46     # check the bbox is sane
47     unless min_lon <= max_lon
48       report_error("The minimum longitude must be less than the maximum longitude, but it wasn't")
49       return
50     end
51     unless min_lat <= max_lat
52       report_error("The minimum latitude must be less than the maximum latitude, but it wasn't")
53       return
54     end
55     unless min_lon >= -180 && min_lat >= -90 && max_lon <= 180 && max_lat <= 90
56       report_error("The latitudes must be between -90 and 90, and longitudes between -180 and 180")
57       return
58     end
59
60     # check the bbox isn't too large
61     requested_area = (max_lat-min_lat)*(max_lon-min_lon)
62     if requested_area > MAX_REQUEST_AREA
63       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")
64       return
65     end
66
67     # get all the points
68     points = Tracepoint.find_by_area(min_lat, min_lon, max_lat, max_lon, :offset => offset, :limit => TRACEPOINTS_PER_PAGE, :order => "timestamp DESC" )
69
70     doc = XML::Document.new
71     doc.encoding = 'UTF-8'
72     root = XML::Node.new 'gpx'
73     root['version'] = '1.0'
74     root['creator'] = 'OpenStreetMap.org'
75     root['xmlns'] = "http://www.topografix.com/GPX/1/0/"
76     
77     doc.root = root
78
79     track = XML::Node.new 'trk'
80     doc.root << track
81
82     trkseg = XML::Node.new 'trkseg'
83     track << trkseg
84
85     points.each do |point|
86       trkseg << point.to_xml_node()
87     end
88
89     #exit when we have too many requests
90     if @@count > MAX_COUNT
91       render :text => doc.to_s, :content_type => "text/xml"
92       @@count = COUNT
93       exit!
94     end
95
96     render :text => doc.to_s, :content_type => "text/xml"
97
98   end
99
100   def map
101     GC.start
102     @@count+=1
103
104     # Figure out the bbox
105     bbox = params['bbox']
106     unless bbox and bbox.count(',') == 3
107       report_error("The parameter bbox is required, and must be of the form min_lon,min_lat,max_lon,max_lat")
108       return
109     end
110
111     bbox = bbox.split(',')
112
113     min_lon = bbox[0].to_f
114     min_lat = bbox[1].to_f
115     max_lon = bbox[2].to_f
116     max_lat = bbox[3].to_f
117
118     # check the bbox is sane
119     unless min_lon <= max_lon
120       report_error("The minimum longitude must be less than the maximum longitude, but it wasn't")
121       return
122     end
123     unless min_lat <= max_lat
124       report_error("The minimum latitude must be less than the maximum latitude, but it wasn't")
125       return
126     end
127     unless min_lon >= -180 && min_lat >= -90 && max_lon <= 180 && max_lat <= 90
128       report_error("The latitudes must be between -90 and 90, and longitudes between -180 and 180")
129       return
130     end
131
132     # check the bbox isn't too large
133     requested_area = (max_lat-min_lat)*(max_lon-min_lon)
134     if requested_area > MAX_REQUEST_AREA
135       report_error("The maximum bbox size is " + MAX_REQUEST_AREA.to_s + 
136         ", and your request was too large. Either request a smaller area, or use planet.osm")
137       return
138     end
139
140     # get all the nodes
141     nodes = Node.find_by_area(min_lat, min_lon, max_lat, max_lon, :conditions => "visible = 1")
142
143     node_ids = nodes.collect {|node| node.id }
144
145     if node_ids.length > 50_000
146       report_error("You requested too many nodes (limit is 50,000). Either request a smaller area, or use planet.osm")
147       return
148     end
149
150     if node_ids.length == 0
151       render :text => "<osm version='0.5'></osm>", :content_type => "text/xml"
152       return
153     end
154
155     relations = Array.new
156
157     doc = OSM::API.new.get_xml_doc
158
159     # get ways
160     # find which ways are needed
161     ways = Array.new
162     if node_ids.length > 0
163       way_nodes = WayNode.find_all_by_node_id(node_ids)
164       way_ids = way_nodes.collect {|way_node| way_node.id }
165       ways = Way.find(way_ids)
166
167       list_of_way_nodes = ways.collect { |way|
168         way.way_nodes.collect { |way_node| way_node.node_id }
169       }
170       list_of_way_nodes.flatten!
171
172     else
173       list_of_way_nodes = Array.new
174     end
175
176     # - [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
177     nodes_to_fetch = (list_of_way_nodes.uniq - node_ids) - [0]
178
179     if nodes_to_fetch.length > 0
180       nodes += Node.find(nodes_to_fetch)
181     end
182
183     visible_nodes = {}
184     user_display_name_cache = {}
185
186     nodes.each do |node|
187       if node.visible?
188         doc.root << node.to_xml_node(user_display_name_cache)
189         visible_nodes[node.id] = node
190       end
191     end
192
193     way_ids = Array.new
194     ways.each do |way|
195       if way.visible?
196         doc.root << way.to_xml_node(visible_nodes, user_display_name_cache)
197         way_ids << way.id
198       end
199     end 
200
201     # collect relationships. currently done in one big block at the end;
202     # may need to move this upwards if people want automatic completion of
203     # relationships, i.e. deliver referenced objects like we do with ways...
204     relations = Array.new
205     if visible_nodes.length > 0
206         relations += Relation.find_by_sql("select e.* from current_relations e,current_relation_members em where " +
207             "e.visible=1 and " +
208             "em.id = e.id and em.member_type='node' and em.member_id in (#{visible_nodes.keys.join(',')})")
209     end
210     if way_ids.length > 0
211         relations += Relation.find_by_sql("select e.* from current_relations e,current_relation_members em where " +
212             "e.visible=1 and " +
213             "em.id = e.id and em.member_type='way' and em.member_id in (#{way_ids.join(',')})")
214     end
215     # we do not normally return the "other" partners referenced by an relation, 
216     # e.g. if we return a way A that is referenced by relation X, and there's 
217     # another way B also referenced, that is not returned. But we do make 
218     # an exception for cases where an relation references another *relation*; 
219     # in that case we return that as well (but we don't go recursive here)
220     relation_ids = relations.collect { |relation| relation.id }
221     if relation_ids.length > 0
222         relations += Relation.find_by_sql("select e.* from current_relations e,current_relation_members em where " +
223             "e.visible=1 and " +
224             "em.id = e.id and em.member_type='relation' and em.member_id in (#{relation_ids.join(',')})")
225     end
226
227     # this "uniq" may be slightly inefficient; it may be better to first collect and output
228     # all node-related relations, then find the *not yet covered* way-related ones etc.
229     relations.uniq.each do |relation|
230       doc.root << relation.to_xml_node(user_display_name_cache)
231     end
232
233     render :text => doc.to_s, :content_type => "text/xml"
234     
235     #exit when we have too many requests
236     if @@count > MAX_COUNT
237       @@count = COUNT
238       
239       exit!
240     end
241   end
242
243   def changes
244     zoom = (params[:zoom] || '12').to_i
245
246     if params.include?(:start) and params.include?(:end)
247       starttime = Time.parse(params[:start])
248       endtime = Time.parse(params[:end])
249     else
250       hours = (params[:hours] || '1').to_i.hours
251       endtime = Time.now
252       starttime = endtime - hours
253     end
254
255     if zoom >= 1 and zoom <= 16 and
256        endtime >= starttime and endtime - starttime <= 24.hours
257       mask = (1 << zoom) - 1
258
259       tiles = Node.count(:conditions => ["timestamp BETWEEN ? AND ?", starttime, endtime],
260                          :group => "maptile_for_point(latitude, longitude, #{zoom})")
261
262       doc = OSM::API.new.get_xml_doc
263       changes = XML::Node.new 'changes'
264       changes["starttime"] = starttime.xmlschema
265       changes["endtime"] = endtime.xmlschema
266
267       tiles.each do |tile, count|
268         x = (tile.to_i >> zoom) & mask
269         y = tile.to_i & mask
270
271         t = XML::Node.new 'tile'
272         t["x"] = x.to_s
273         t["y"] = y.to_s
274         t["z"] = zoom.to_s
275         t["changes"] = count.to_s
276
277         changes << t
278       end
279
280       doc.root << changes
281
282       render :text => doc.to_s, :content_type => "text/xml"
283     else
284       render :nothing => true, :status => :bad_request
285     end
286   end
287
288   def capabilities
289     doc = OSM::API.new.get_xml_doc
290
291     api = XML::Node.new 'api'
292     version = XML::Node.new 'version'
293     version['minimum'] = '0.5';
294     version['maximum'] = '0.5';
295     api << version
296     area = XML::Node.new 'area'
297     area['maximum'] = MAX_REQUEST_AREA.to_s;
298     api << area
299     
300     doc.root << api
301
302     render :text => doc.to_s, :content_type => "text/xml"
303   end
304 end