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 :xml => doc.to_s
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
145 list_of_way_nodes = []
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)
151 list_of_way_nodes = ways.collect do |way|
152 way.way_nodes.collect(&:node_id)
154 list_of_way_nodes.flatten!
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]
160 nodes += Node.includes(:node_tags).find(nodes_to_fetch) unless nodes_to_fetch.empty?
164 user_display_name_cache = {}
168 doc.root << node.to_xml_node(changeset_cache, user_display_name_cache)
169 visible_nodes[node.id] = node
176 doc.root << way.to_xml_node(visible_nodes, changeset_cache, user_display_name_cache)
181 relations = Relation.nodes(visible_nodes.keys).visible +
182 Relation.ways(way_ids).visible
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
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)
197 response.headers["Content-Disposition"] = "attachment; filename=\"map.osm\""
199 render :xml => doc.to_s
202 # Get a list of the tiles that have changed within a specified time
205 zoom = (params[:zoom] || "12").to_i
207 if params.include?(:start) && params.include?(:end)
208 starttime = Time.parse(params[:start])
209 endtime = Time.parse(params[:end])
211 hours = (params[:hours] || "1").to_i.hours
212 endtime = Time.now.getutc
213 starttime = endtime - hours
216 if zoom >= 1 && zoom <= 16 &&
217 endtime > starttime && endtime - starttime <= 24.hours
218 mask = (1 << zoom) - 1
220 tiles = Node.where(:timestamp => starttime..endtime).group("maptile_for_point(latitude, longitude, #{zoom})").count
222 doc = OSM::API.new.get_xml_doc
223 changes = XML::Node.new "changes"
224 changes["starttime"] = starttime.xmlschema
225 changes["endtime"] = endtime.xmlschema
227 tiles.each do |tile, count|
228 x = (tile.to_i >> zoom) & mask
231 t = XML::Node.new "tile"
235 t["changes"] = count.to_s
242 render :xml => doc.to_s
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
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
254 doc = OSM::API.new.get_xml_doc
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
261 area = XML::Node.new "area"
262 area["maximum"] = MAX_REQUEST_AREA.to_s
264 notearea = XML::Node.new "note_area"
265 notearea["maximum"] = MAX_NOTE_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 :xml => doc.to_s
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.
304 @permissions = if current_token.present?
305 ClientApplication.all_permissions.select { |p| current_token.read_attribute(p) }
307 ClientApplication.all_permissions