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
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.
10 # retrieve the page number
11 page = params["page"].to_s.to_i
14 report_error("Page number must be greater than or equal to 0")
18 offset = page * TRACEPOINTS_PER_PAGE
21 # check boundary is sane and area within defined
22 # see /config/application.yml
24 bbox = BoundingBox.from_bbox_params(params)
27 rescue StandardError => err
28 report_error(err.message)
33 points = Tracepoint.bbox(bbox).offset(offset).limit(TRACEPOINTS_PER_PAGE).order("gpx_id DESC, trackid ASC, timestamp ASC")
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"
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
56 points.each do |point|
57 if gpx_id != point.gpx_id
60 gpx_file = Trace.find(gpx_id)
62 if gpx_file.trackable?
63 track = XML::Node.new "trk"
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 => "trace", :action => "view", :display_name => gpx_file.user.display_name, :id => gpx_file.id))
73 # use the anonymous track segment if the user hasn't allowed
74 # their GPX points to be tracked.
77 anon_track = XML::Node.new "trk"
78 doc.root << anon_track
84 if trackid != point.trackid
85 if gpx_file.trackable?
86 trkseg = XML::Node.new "trkseg"
88 trackid = point.trackid
91 anon_trkseg = XML::Node.new "trkseg"
92 anon_track << anon_trkseg
98 trkseg << point.to_xml_node(timestamps)
101 response.headers["Content-Disposition"] = "attachment; filename=\"tracks.gpx\""
103 render :text => doc.to_s, :content_type => "text/xml"
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
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.
116 # Figure out the bbox
117 # check boundary is sane and area within defined
118 # see /config/application.yml
120 bbox = BoundingBox.from_bbox_params(params)
121 bbox.check_boundaries
123 rescue StandardError => err
124 report_error(err.message)
128 nodes = Node.bbox(bbox).where(:visible => true).includes(:node_tags).limit(MAX_NUMBER_OF_NODES + 1)
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")
136 doc = OSM::API.new.get_xml_doc
139 doc.root << bbox.add_bounds_to(XML::Node.new "bounds")
142 # find which ways are needed
144 if node_ids.length > 0
145 way_nodes = WayNode.where(:node_id => node_ids)
146 way_ids = way_nodes.collect { |way_node| way_node.id[0] }
147 ways = Way.preload(:way_nodes, :way_tags).find(way_ids)
149 list_of_way_nodes = ways.collect do |way|
150 way.way_nodes.collect(&:node_id)
152 list_of_way_nodes.flatten!
155 list_of_way_nodes = []
158 # - [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
159 nodes_to_fetch = (list_of_way_nodes.uniq - node_ids) - [0]
161 if nodes_to_fetch.length > 0
162 nodes += Node.includes(:node_tags).find(nodes_to_fetch)
167 user_display_name_cache = {}
171 doc.root << node.to_xml_node(changeset_cache, user_display_name_cache)
172 visible_nodes[node.id] = node
179 doc.root << way.to_xml_node(visible_nodes, changeset_cache, user_display_name_cache)
184 relations = Relation.nodes(visible_nodes.keys).visible +
185 Relation.ways(way_ids).visible
187 # we do not normally return the "other" partners referenced by an relation,
188 # e.g. if we return a way A that is referenced by relation X, and there's
189 # another way B also referenced, that is not returned. But we do make
190 # an exception for cases where an relation references another *relation*;
191 # in that case we return that as well (but we don't go recursive here)
192 relations += Relation.relations(relations.collect(&:id)).visible
194 # this "uniq" may be slightly inefficient; it may be better to first collect and output
195 # all node-related relations, then find the *not yet covered* way-related ones etc.
196 relations.uniq.each do |relation|
197 doc.root << relation.to_xml_node(nil, changeset_cache, user_display_name_cache)
200 response.headers["Content-Disposition"] = "attachment; filename=\"map.osm\""
202 render :text => doc.to_s, :content_type => "text/xml"
205 # Get a list of the tiles that have changed within a specified time
208 zoom = (params[:zoom] || "12").to_i
210 if params.include?(:start) && params.include?(:end)
211 starttime = Time.parse(params[:start])
212 endtime = Time.parse(params[:end])
214 hours = (params[:hours] || "1").to_i.hours
215 endtime = Time.now.getutc
216 starttime = endtime - hours
219 if zoom >= 1 && zoom <= 16 &&
220 endtime > starttime && endtime - starttime <= 24.hours
221 mask = (1 << zoom) - 1
223 tiles = Node.where(:timestamp => starttime..endtime).group("maptile_for_point(latitude, longitude, #{zoom})").count
225 doc = OSM::API.new.get_xml_doc
226 changes = XML::Node.new "changes"
227 changes["starttime"] = starttime.xmlschema
228 changes["endtime"] = endtime.xmlschema
230 tiles.each do |tile, count|
231 x = (tile.to_i >> zoom) & mask
234 t = XML::Node.new "tile"
238 t["changes"] = count.to_s
245 render :text => doc.to_s, :content_type => "text/xml"
247 render :text => "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
251 # External apps that use the api are able to query the api to find out some
252 # parameters of the API. It currently returns:
253 # * minimum and maximum API versions that can be used.
254 # * maximum area that can be requested in a bbox request in square degrees
255 # * number of tracepoints that are returned in each tracepoints page
257 doc = OSM::API.new.get_xml_doc
259 api = XML::Node.new "api"
260 version = XML::Node.new "version"
261 version["minimum"] = "#{API_VERSION}"
262 version["maximum"] = "#{API_VERSION}"
264 area = XML::Node.new "area"
265 area["maximum"] = MAX_REQUEST_AREA.to_s
267 tracepoints = XML::Node.new "tracepoints"
268 tracepoints["per_page"] = TRACEPOINTS_PER_PAGE.to_s
270 waynodes = XML::Node.new "waynodes"
271 waynodes["maximum"] = MAX_NUMBER_OF_WAY_NODES.to_s
273 changesets = XML::Node.new "changesets"
274 changesets["maximum_elements"] = Changeset::MAX_ELEMENTS.to_s
276 timeout = XML::Node.new "timeout"
277 timeout["seconds"] = API_TIMEOUT.to_s
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
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
295 render :text => doc.to_s, :content_type => "text/xml"
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.
305 when current_token.present?
306 ClientApplication.all_permissions.select { |p| current_token.read_attribute(p) }
308 ClientApplication.all_permissions