]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api_controller.rb
Rename comments_feed to index
[rails.git] / app / controllers / api_controller.rb
1 class ApiController < ApplicationController
2   skip_before_action :verify_authenticity_token
3   before_action :check_api_readable, :except => [:capabilities]
4   before_action :setup_user_auth, :only => [:permissions]
5   around_action :api_call_handle_error, :api_call_timeout
6
7   # Get an XML response containing a list of tracepoints that have been uploaded
8   # within the specified bounding box, and in the specified page.
9   def trackpoints
10     # retrieve the page number
11     page = params["page"].to_s.to_i
12
13     unless page >= 0
14       report_error("Page number must be greater than or equal to 0")
15       return
16     end
17
18     offset = page * TRACEPOINTS_PER_PAGE
19
20     # Figure out the bbox
21     # check boundary is sane and area within defined
22     # see /config/application.yml
23     begin
24       bbox = BoundingBox.from_bbox_params(params)
25       bbox.check_boundaries
26       bbox.check_size
27     rescue StandardError => err
28       report_error(err.message)
29       return
30     end
31
32     # get all the points
33     points = Tracepoint.bbox(bbox).offset(offset).limit(TRACEPOINTS_PER_PAGE).order("gpx_id DESC, trackid ASC, timestamp ASC")
34
35     doc = XML::Document.new
36     doc.encoding = XML::Encoding::UTF_8
37     root = XML::Node.new "gpx"
38     root["version"] = "1.0"
39     root["creator"] = "OpenStreetMap.org"
40     root["xmlns"] = "http://www.topografix.com/GPX/1/0"
41
42     doc.root = root
43
44     # initialise these variables outside of the loop so that they
45     # stay in scope and don't get free'd up by the GC during the
46     # loop.
47     gpx_id = -1
48     trackid = -1
49     track = nil
50     trkseg = nil
51     anon_track = nil
52     anon_trkseg = nil
53     gpx_file = nil
54     timestamps = false
55
56     points.each do |point|
57       if gpx_id != point.gpx_id
58         gpx_id = point.gpx_id
59         trackid = -1
60         gpx_file = Trace.find(gpx_id)
61
62         if gpx_file.trackable?
63           track = XML::Node.new "trk"
64           doc.root << track
65           timestamps = true
66
67           if gpx_file.identifiable?
68             track << (XML::Node.new("name") << gpx_file.name)
69             track << (XML::Node.new("desc") << gpx_file.description)
70             track << (XML::Node.new("url") << url_for(:controller => "traces", :action => "show", :display_name => gpx_file.user.display_name, :id => gpx_file.id))
71           end
72         else
73           # use the anonymous track segment if the user hasn't allowed
74           # their GPX points to be tracked.
75           timestamps = false
76           if anon_track.nil?
77             anon_track = XML::Node.new "trk"
78             doc.root << anon_track
79           end
80           track = anon_track
81         end
82       end
83
84       if trackid != point.trackid
85         if gpx_file.trackable?
86           trkseg = XML::Node.new "trkseg"
87           track << trkseg
88           trackid = point.trackid
89         else
90           if anon_trkseg.nil?
91             anon_trkseg = XML::Node.new "trkseg"
92             anon_track << anon_trkseg
93           end
94           trkseg = anon_trkseg
95         end
96       end
97
98       trkseg << point.to_xml_node(timestamps)
99     end
100
101     response.headers["Content-Disposition"] = "attachment; filename=\"tracks.gpx\""
102
103     render :xml => doc.to_s
104   end
105
106   # This is probably the most common call of all. It is used for getting the
107   # OSM data for a specified bounding box, usually for editing. First the
108   # bounding box (bbox) is checked to make sure that it is sane. All nodes
109   # are searched, then all the ways that reference those nodes are found.
110   # All Nodes that are referenced by those ways are fetched and added to the list
111   # of nodes.
112   # Then all the relations that reference the already found nodes and ways are
113   # fetched. All the nodes and ways that are referenced by those ways are then
114   # fetched. Finally all the xml is returned.
115   def map
116     # Figure out the bbox
117     # check boundary is sane and area within defined
118     # see /config/application.yml
119     begin
120       bbox = BoundingBox.from_bbox_params(params)
121       bbox.check_boundaries
122       bbox.check_size
123     rescue StandardError => err
124       report_error(err.message)
125       return
126     end
127
128     nodes = Node.bbox(bbox).where(:visible => true).includes(:node_tags).limit(MAX_NUMBER_OF_NODES + 1)
129
130     node_ids = nodes.collect(&:id)
131     if node_ids.length > MAX_NUMBER_OF_NODES
132       report_error("You requested too many nodes (limit is #{MAX_NUMBER_OF_NODES}). Either request a smaller area, or use planet.osm")
133       return
134     end
135
136     doc = OSM::API.new.get_xml_doc
137
138     # add bounds
139     doc.root << bbox.add_bounds_to(XML::Node.new("bounds"))
140
141     # get ways
142     # find which ways are needed
143     ways = []
144     if node_ids.empty?
145       list_of_way_nodes = []
146     else
147       way_nodes = WayNode.where(:node_id => node_ids)
148       way_ids = way_nodes.collect { |way_node| way_node.id[0] }
149       ways = Way.preload(:way_nodes, :way_tags).find(way_ids)
150
151       list_of_way_nodes = ways.collect do |way|
152         way.way_nodes.collect(&:node_id)
153       end
154       list_of_way_nodes.flatten!
155     end
156
157     # - [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
158     nodes_to_fetch = (list_of_way_nodes.uniq - node_ids) - [0]
159
160     nodes += Node.includes(:node_tags).find(nodes_to_fetch) unless nodes_to_fetch.empty?
161
162     visible_nodes = {}
163     changeset_cache = {}
164     user_display_name_cache = {}
165
166     nodes.each do |node|
167       if node.visible?
168         doc.root << node.to_xml_node(changeset_cache, user_display_name_cache)
169         visible_nodes[node.id] = node
170       end
171     end
172
173     way_ids = []
174     ways.each do |way|
175       if way.visible?
176         doc.root << way.to_xml_node(visible_nodes, changeset_cache, user_display_name_cache)
177         way_ids << way.id
178       end
179     end
180
181     relations = Relation.nodes(visible_nodes.keys).visible +
182                 Relation.ways(way_ids).visible
183
184     # we do not normally return the "other" partners referenced by an relation,
185     # e.g. if we return a way A that is referenced by relation X, and there's
186     # another way B also referenced, that is not returned. But we do make
187     # an exception for cases where an relation references another *relation*;
188     # in that case we return that as well (but we don't go recursive here)
189     relations += Relation.relations(relations.collect(&:id)).visible
190
191     # this "uniq" may be slightly inefficient; it may be better to first collect and output
192     # all node-related relations, then find the *not yet covered* way-related ones etc.
193     relations.uniq.each do |relation|
194       doc.root << relation.to_xml_node(changeset_cache, user_display_name_cache)
195     end
196
197     response.headers["Content-Disposition"] = "attachment; filename=\"map.osm\""
198
199     render :xml => doc.to_s
200   end
201
202   # Get a list of the tiles that have changed within a specified time
203   # period
204   def changes
205     zoom = (params[:zoom] || "12").to_i
206
207     if params.include?(:start) && params.include?(:end)
208       starttime = Time.parse(params[:start])
209       endtime = Time.parse(params[:end])
210     else
211       hours = (params[:hours] || "1").to_i.hours
212       endtime = Time.now.getutc
213       starttime = endtime - hours
214     end
215
216     if zoom >= 1 && zoom <= 16 &&
217        endtime > starttime && endtime - starttime <= 24.hours
218       mask = (1 << zoom) - 1
219
220       tiles = Node.where(:timestamp => starttime..endtime).group("maptile_for_point(latitude, longitude, #{zoom})").count
221
222       doc = OSM::API.new.get_xml_doc
223       changes = XML::Node.new "changes"
224       changes["starttime"] = starttime.xmlschema
225       changes["endtime"] = endtime.xmlschema
226
227       tiles.each do |tile, count|
228         x = (tile.to_i >> zoom) & mask
229         y = tile.to_i & mask
230
231         t = XML::Node.new "tile"
232         t["x"] = x.to_s
233         t["y"] = y.to_s
234         t["z"] = zoom.to_s
235         t["changes"] = count.to_s
236
237         changes << t
238       end
239
240       doc.root << changes
241
242       render :xml => doc.to_s
243     else
244       render :plain => "Requested zoom is invalid, or the supplied start is after the end time, or the start duration is more than 24 hours", :status => :bad_request
245     end
246   end
247
248   # External apps that use the api are able to query the api to find out some
249   # parameters of the API. It currently returns:
250   # * minimum and maximum API versions that can be used.
251   # * maximum area that can be requested in a bbox request in square degrees
252   # * number of tracepoints that are returned in each tracepoints page
253   def capabilities
254     doc = OSM::API.new.get_xml_doc
255
256     api = XML::Node.new "api"
257     version = XML::Node.new "version"
258     version["minimum"] = API_VERSION.to_s
259     version["maximum"] = API_VERSION.to_s
260     api << version
261     area = XML::Node.new "area"
262     area["maximum"] = MAX_REQUEST_AREA.to_s
263     api << area
264     notearea = XML::Node.new "note_area"
265     notearea["maximum"] = MAX_NOTE_REQUEST_AREA.to_s
266     api << notearea
267     tracepoints = XML::Node.new "tracepoints"
268     tracepoints["per_page"] = TRACEPOINTS_PER_PAGE.to_s
269     api << tracepoints
270     waynodes = XML::Node.new "waynodes"
271     waynodes["maximum"] = MAX_NUMBER_OF_WAY_NODES.to_s
272     api << waynodes
273     changesets = XML::Node.new "changesets"
274     changesets["maximum_elements"] = Changeset::MAX_ELEMENTS.to_s
275     api << changesets
276     timeout = XML::Node.new "timeout"
277     timeout["seconds"] = API_TIMEOUT.to_s
278     api << timeout
279     status = XML::Node.new "status"
280     status["database"] = database_status.to_s
281     status["api"] = api_status.to_s
282     status["gpx"] = gpx_status.to_s
283     api << status
284     doc.root << api
285     policy = XML::Node.new "policy"
286     blacklist = XML::Node.new "imagery"
287     IMAGERY_BLACKLIST.each do |url_regex|
288       xnd = XML::Node.new "blacklist"
289       xnd["regex"] = url_regex.to_s
290       blacklist << xnd
291     end
292     policy << blacklist
293     doc.root << policy
294
295     render :xml => doc.to_s
296   end
297
298   # External apps that use the api are able to query which permissions
299   # they have. This currently returns a list of permissions granted to the current user:
300   # * if authenticated via OAuth, this list will contain all permissions granted by the user to the access_token.
301   # * if authenticated via basic auth all permissions are granted, so the list will contain all permissions.
302   # * unauthenticated users have no permissions, so the list will be empty.
303   def permissions
304     @permissions = if current_token.present?
305                      ClientApplication.all_permissions.select { |p| current_token.read_attribute(p) }
306                    elsif current_user
307                      ClientApplication.all_permissions
308                    else
309                      []
310                    end
311   end
312 end