1 # The ChangesetController is the RESTful interface to Changeset objects
4 class ChangesetsController < ApiController
7 before_action :authorize, :only => [:create, :update, :upload, :close, :subscribe, :unsubscribe]
11 before_action :require_public_data, :only => [:create, :update, :upload, :close, :subscribe, :unsubscribe]
12 before_action :check_api_writable, :only => [:create, :update, :upload, :subscribe, :unsubscribe]
13 before_action :check_api_readable, :except => [:create, :update, :upload, :download, :query, :subscribe, :unsubscribe]
14 before_action :set_request_formats, :except => [:create, :close, :upload]
16 around_action :api_call_handle_error
17 around_action :api_call_timeout, :except => [:upload]
19 # Helper methods for checking consistency
20 include ConsistencyValidations
22 # Create a changeset from XML.
26 cs = Changeset.from_xml(request.raw_post, :create => true)
28 # Assume that Changeset.from_xml has thrown an exception if there is an error parsing the xml
29 cs.user = current_user
32 # Subscribe user to changeset comments
33 cs.subscribers << current_user
35 render :plain => cs.id.to_s
39 # Return XML giving the basic info about the changeset. Does not
40 # return anything about the nodes, ways and relations in the changeset.
42 @changeset = Changeset.find(params[:id])
43 @include_discussion = params[:include_discussion].presence
46 respond_to do |format|
53 # marks a changeset as closed. this may be called multiple times
54 # on the same changeset, so is idempotent.
58 changeset = Changeset.find(params[:id])
59 check_changeset_consistency(changeset, current_user)
61 # to close the changeset, we'll just set its closed_at time to
62 # now. this might not be enough if there are concurrency issues,
63 # but we'll have to wait and see.
64 changeset.set_closed_time_now
71 # Upload a diff in a single transaction.
73 # This means that each change within the diff must succeed, i.e: that
74 # each version number mentioned is still current. Otherwise the entire
75 # transaction *must* be rolled back.
77 # Furthermore, each element in the diff can only reference the current
80 # Returns: a diffResult document, as described in
81 # http://wiki.openstreetmap.org/wiki/OSM_Protocol_Version_0.6
83 # only allow POST requests, as the upload method is most definitely
84 # not idempotent, as several uploads with placeholder IDs will have
85 # different side-effects.
86 # see http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.2
89 changeset = Changeset.find(params[:id])
90 check_changeset_consistency(changeset, current_user)
92 diff_reader = DiffReader.new(request.raw_post, changeset)
93 Changeset.transaction do
94 result = diff_reader.commit
95 render :xml => result.to_s
100 # download the changeset as an osmChange document.
102 # to make it easier to revert diffs it would be better if the osmChange
103 # format were reversible, i.e: contained both old and new versions of
104 # modified elements. but it doesn't at the moment...
106 # this method cannot order the database changes fully (i.e: timestamp and
107 # version number may be too coarse) so the resulting diff may not apply
108 # to a different database. however since changesets are not atomic this
109 # behaviour cannot be guaranteed anyway and is the result of a design
112 changeset = Changeset.find(params[:id])
114 # get all the elements in the changeset which haven't been redacted
115 # and stick them in a big array.
116 elements = [changeset.old_nodes.unredacted,
117 changeset.old_ways.unredacted,
118 changeset.old_relations.unredacted].flatten
120 # sort the elements by timestamp and version number, as this is the
121 # almost sensible ordering available. this would be much nicer if
122 # global (SVN-style) versioning were used - then that would be
124 elements.sort! do |a, b|
125 if a.timestamp == b.timestamp
126 a.version <=> b.version
128 a.timestamp <=> b.timestamp
132 # generate an output element for each operation. note: we avoid looking
133 # at the history because it is simpler - but it would be more correct to
134 # check these assertions.
139 elements.each do |elt|
141 # first version, so it must be newly-created.
147 # if the element isn't visible then it must have been deleted
152 respond_to do |format|
158 # query changesets by bounding box, time, user or open/closed status.
160 # find any bounding box
161 bbox = BoundingBox.from_bbox_params(params) if params["bbox"]
163 # create the conditions that the user asked for. some or all of
165 changesets = Changeset.all
166 changesets = conditions_bbox(changesets, bbox)
167 changesets = conditions_user(changesets, params["user"], params["display_name"])
168 changesets = conditions_time(changesets, params["time"])
169 changesets = conditions_open(changesets, params["open"])
170 changesets = conditions_closed(changesets, params["closed"])
171 changesets = conditions_ids(changesets, params["changesets"])
173 # sort and limit the changesets
174 changesets = changesets.order("created_at DESC").limit(100)
176 # preload users, tags and comments, and render result
177 @changesets = changesets.preload(:user, :changeset_tags, :comments)
180 respond_to do |format|
187 # updates a changeset's tags. none of the changeset's attributes are
188 # user-modifiable, so they will be ignored.
190 # changesets are not (yet?) versioned, so we don't have to deal with
191 # history tables here. changesets are locked to a single user, however.
193 # after succesful update, returns the XML of the changeset.
195 # request *must* be a PUT.
198 @changeset = Changeset.find(params[:id])
199 new_changeset = Changeset.from_xml(request.raw_post)
201 check_changeset_consistency(@changeset, current_user)
202 @changeset.update_from(new_changeset, current_user)
205 respond_to do |format|
212 # Adds a subscriber to the changeset
214 # Check the arguments are sane
215 raise OSM::APIBadUserInput, "No id was given" unless params[:id]
217 # Extract the arguments
218 id = params[:id].to_i
220 # Find the changeset and check it is valid
221 changeset = Changeset.find(id)
222 raise OSM::APIChangesetAlreadySubscribedError, changeset if changeset.subscribers.exists?(current_user.id)
225 changeset.subscribers << current_user
227 # Return a copy of the updated changeset
228 @changeset = changeset
231 respond_to do |format|
238 # Removes a subscriber from the changeset
240 # Check the arguments are sane
241 raise OSM::APIBadUserInput, "No id was given" unless params[:id]
243 # Extract the arguments
244 id = params[:id].to_i
246 # Find the changeset and check it is valid
247 changeset = Changeset.find(id)
248 raise OSM::APIChangesetNotSubscribedError, changeset unless changeset.subscribers.exists?(current_user.id)
250 # Remove the subscriber
251 changeset.subscribers.delete(current_user)
253 # Return a copy of the updated changeset
254 @changeset = changeset
257 respond_to do |format|
265 #------------------------------------------------------------
266 # utility functions below.
267 #------------------------------------------------------------
270 # if a bounding box was specified do some sanity checks.
271 # restrict changesets to those enclosed by a bounding box
272 # we need to return both the changesets and the bounding box
273 def conditions_bbox(changesets, bbox)
275 bbox.check_boundaries
276 bbox = bbox.to_scaled
278 changesets.where("min_lon < ? and max_lon > ? and min_lat < ? and max_lat > ?",
279 bbox.max_lon.to_i, bbox.min_lon.to_i,
280 bbox.max_lat.to_i, bbox.min_lat.to_i)
287 # restrict changesets to those by a particular user
288 def conditions_user(changesets, user, name)
289 if user.nil? && name.nil?
292 # shouldn't provide both name and UID
293 raise OSM::APIBadUserInput, "provide either the user ID or display name, but not both" if user && name
295 # use either the name or the UID to find the user which we're selecting on.
297 # user input checking, we don't have any UIDs < 1
298 raise OSM::APIBadUserInput, "invalid user ID" if user.to_i < 1
300 u = User.find(user.to_i)
302 u = User.find_by(:display_name => name)
305 # make sure we found a user
306 raise OSM::APINotFoundError if u.nil?
308 # should be able to get changesets of public users only, or
309 # our own changesets regardless of public-ness.
310 unless u.data_public?
311 # get optional user auth stuff so that users can see their own
312 # changesets if they're non-public
315 raise OSM::APINotFoundError if current_user.nil? || current_user != u
318 changesets.where(:user_id => u.id)
323 # restrict changes to those closed during a particular time period
324 def conditions_time(changesets, time)
327 elsif time.count(",") == 1
328 # if there is a range, i.e: comma separated, then the first is
329 # low, second is high - same as with bounding boxes.
331 # check that we actually have 2 elements in the array
332 times = time.split(",")
333 raise OSM::APIBadUserInput, "bad time range" if times.size != 2
335 from, to = times.collect { |t| Time.parse(t).utc }
336 changesets.where("closed_at >= ? and created_at <= ?", from, to)
338 # if there is no comma, assume its a lower limit on time
339 changesets.where("closed_at >= ?", Time.parse(time).utc)
341 # stupid Time seems to throw both of these for bad parsing, so
342 # we have to catch both and ensure the correct code path is taken.
343 rescue ArgumentError, RuntimeError => e
344 raise OSM::APIBadUserInput, e.message.to_s
348 # return changesets which are open (haven't been closed yet)
349 # we do this by seeing if the 'closed at' time is in the future. Also if we've
350 # hit the maximum number of changes then it counts as no longer open.
351 # if parameter 'open' is nill then open and closed changesets are returned
352 def conditions_open(changesets, open)
356 changesets.where("closed_at >= ? and num_changes <= ?",
357 Time.now.utc, Changeset::MAX_ELEMENTS)
362 # query changesets which are closed
363 # ('closed at' time has passed or changes limit is hit)
364 def conditions_closed(changesets, closed)
368 changesets.where("closed_at < ? or num_changes > ?",
369 Time.now.utc, Changeset::MAX_ELEMENTS)
374 # query changesets by a list of ids
375 # (either specified as array or comma-separated string)
376 def conditions_ids(changesets, ids)
380 raise OSM::APIBadUserInput, "No changesets were given to search for"
382 ids = ids.split(",").collect(&:to_i)
383 changesets.where(:id => ids)