]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/changesets_controller.rb
Merge remote-tracking branch 'upstream/pull/4251'
[rails.git] / app / controllers / api / changesets_controller.rb
1 # The ChangesetController is the RESTful interface to Changeset objects
2
3 module Api
4   class ChangesetsController < ApiController
5     require "xml/libxml"
6
7     before_action :check_api_writable, :only => [:create, :update, :upload, :subscribe, :unsubscribe]
8     before_action :check_api_readable, :except => [:create, :update, :upload, :download, :query, :subscribe, :unsubscribe]
9     before_action :setup_user_auth, :only => [:show]
10     before_action :authorize, :only => [:create, :update, :upload, :close, :subscribe, :unsubscribe]
11
12     authorize_resource
13
14     before_action :require_public_data, :only => [:create, :update, :upload, :close, :subscribe, :unsubscribe]
15     before_action :set_request_formats, :except => [:create, :close, :upload]
16
17     around_action :api_call_handle_error
18     around_action :api_call_timeout, :except => [:upload]
19
20     # Helper methods for checking consistency
21     include ConsistencyValidations
22
23     ##
24     # Return XML giving the basic info about the changeset. Does not
25     # return anything about the nodes, ways and relations in the changeset.
26     def show
27       @changeset = Changeset.find(params[:id])
28       if params[:include_discussion].presence
29         @comments = @changeset.comments
30         @comments = @comments.unscope(:where => :visible) if params[:show_hidden_comments].presence && can?(:restore, ChangesetComment)
31         @comments = @comments.includes(:author)
32       end
33       render "changeset"
34
35       respond_to do |format|
36         format.xml
37         format.json
38       end
39     end
40
41     # Create a changeset from XML.
42     def create
43       assert_method :put
44
45       cs = Changeset.from_xml(request.raw_post, :create => true)
46
47       # Assume that Changeset.from_xml has thrown an exception if there is an error parsing the xml
48       cs.user = current_user
49       cs.save_with_tags!
50
51       # Subscribe user to changeset comments
52       cs.subscribe(current_user)
53
54       render :plain => cs.id.to_s
55     end
56
57     ##
58     # marks a changeset as closed. this may be called multiple times
59     # on the same changeset, so is idempotent.
60     def close
61       assert_method :put
62
63       changeset = Changeset.find(params[:id])
64       check_changeset_consistency(changeset, current_user)
65
66       # to close the changeset, we'll just set its closed_at time to
67       # now. this might not be enough if there are concurrency issues,
68       # but we'll have to wait and see.
69       changeset.set_closed_time_now
70
71       changeset.save!
72       head :ok
73     end
74
75     ##
76     # Upload a diff in a single transaction.
77     #
78     # This means that each change within the diff must succeed, i.e: that
79     # each version number mentioned is still current. Otherwise the entire
80     # transaction *must* be rolled back.
81     #
82     # Furthermore, each element in the diff can only reference the current
83     # changeset.
84     #
85     # Returns: a diffResult document, as described in
86     # http://wiki.openstreetmap.org/wiki/OSM_Protocol_Version_0.6
87     def upload
88       # only allow POST requests, as the upload method is most definitely
89       # not idempotent, as several uploads with placeholder IDs will have
90       # different side-effects.
91       # see http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.2
92       assert_method :post
93
94       changeset = Changeset.find(params[:id])
95       check_changeset_consistency(changeset, current_user)
96
97       diff_reader = DiffReader.new(request.raw_post, changeset)
98       Changeset.transaction do
99         result = diff_reader.commit
100         # the number of changes in this changeset has already been
101         # updated and is visible in this transaction so we don't need
102         # to allow for any more when checking the limit
103         check_rate_limit(0)
104         render :xml => result.to_s
105       end
106     end
107
108     ##
109     # download the changeset as an osmChange document.
110     #
111     # to make it easier to revert diffs it would be better if the osmChange
112     # format were reversible, i.e: contained both old and new versions of
113     # modified elements. but it doesn't at the moment...
114     #
115     # this method cannot order the database changes fully (i.e: timestamp and
116     # version number may be too coarse) so the resulting diff may not apply
117     # to a different database. however since changesets are not atomic this
118     # behaviour cannot be guaranteed anyway and is the result of a design
119     # choice.
120     def download
121       changeset = Changeset.find(params[:id])
122
123       # get all the elements in the changeset which haven't been redacted
124       # and stick them in a big array.
125       elements = [changeset.old_nodes.unredacted,
126                   changeset.old_ways.unredacted,
127                   changeset.old_relations.unredacted].flatten
128
129       # sort the elements by timestamp and version number, as this is the
130       # almost sensible ordering available. this would be much nicer if
131       # global (SVN-style) versioning were used - then that would be
132       # unambiguous.
133       elements.sort! do |a, b|
134         if a.timestamp == b.timestamp
135           a.version <=> b.version
136         else
137           a.timestamp <=> b.timestamp
138         end
139       end
140
141       # generate an output element for each operation. note: we avoid looking
142       # at the history because it is simpler - but it would be more correct to
143       # check these assertions.
144       @created = []
145       @modified = []
146       @deleted = []
147
148       elements.each do |elt|
149         if elt.version == 1
150           # first version, so it must be newly-created.
151           @created << elt
152         elsif elt.visible
153           # must be a modify
154           @modified << elt
155         else
156           # if the element isn't visible then it must have been deleted
157           @deleted << elt
158         end
159       end
160
161       respond_to do |format|
162         format.xml
163       end
164     end
165
166     ##
167     # query changesets by bounding box, time, user or open/closed status.
168     def query
169       raise OSM::APIBadUserInput, "cannot use order=oldest with time" if params[:time] && params[:order] == "oldest"
170
171       # find any bounding box
172       bbox = BoundingBox.from_bbox_params(params) if params["bbox"]
173
174       # create the conditions that the user asked for. some or all of
175       # these may be nil.
176       changesets = Changeset.all
177       changesets = conditions_bbox(changesets, bbox)
178       changesets = conditions_user(changesets, params["user"], params["display_name"])
179       changesets = conditions_time(changesets, params["time"])
180       changesets = conditions_from_to(changesets, params["from"], params["to"])
181       changesets = conditions_open(changesets, params["open"])
182       changesets = conditions_closed(changesets, params["closed"])
183       changesets = conditions_ids(changesets, params["changesets"])
184
185       # sort the changesets
186       changesets = if params[:order] == "oldest"
187                      changesets.order(:created_at => :asc)
188                    else
189                      changesets.order(:created_at => :desc)
190                    end
191
192       # limit the result
193       changesets = changesets.limit(result_limit)
194
195       # preload users, tags and comments, and render result
196       @changesets = changesets.preload(:user, :changeset_tags, :comments)
197       render "changesets"
198
199       respond_to do |format|
200         format.xml
201         format.json
202       end
203     end
204
205     ##
206     # updates a changeset's tags. none of the changeset's attributes are
207     # user-modifiable, so they will be ignored.
208     #
209     # changesets are not (yet?) versioned, so we don't have to deal with
210     # history tables here. changesets are locked to a single user, however.
211     #
212     # after succesful update, returns the XML of the changeset.
213     def update
214       # request *must* be a PUT.
215       assert_method :put
216
217       @changeset = Changeset.find(params[:id])
218       new_changeset = Changeset.from_xml(request.raw_post)
219
220       check_changeset_consistency(@changeset, current_user)
221       @changeset.update_from(new_changeset, current_user)
222       render "changeset"
223
224       respond_to do |format|
225         format.xml
226         format.json
227       end
228     end
229
230     ##
231     # Adds a subscriber to the changeset
232     def subscribe
233       # Check the arguments are sane
234       raise OSM::APIBadUserInput, "No id was given" unless params[:id]
235
236       # Extract the arguments
237       id = params[:id].to_i
238
239       # Find the changeset and check it is valid
240       changeset = Changeset.find(id)
241       raise OSM::APIChangesetAlreadySubscribedError, changeset if changeset.subscribed?(current_user)
242
243       # Add the subscriber
244       changeset.subscribe(current_user)
245
246       # Return a copy of the updated changeset
247       @changeset = changeset
248       render "changeset"
249
250       respond_to do |format|
251         format.xml
252         format.json
253       end
254     end
255
256     ##
257     # Removes a subscriber from the changeset
258     def unsubscribe
259       # Check the arguments are sane
260       raise OSM::APIBadUserInput, "No id was given" unless params[:id]
261
262       # Extract the arguments
263       id = params[:id].to_i
264
265       # Find the changeset and check it is valid
266       changeset = Changeset.find(id)
267       raise OSM::APIChangesetNotSubscribedError, changeset unless changeset.subscribed?(current_user)
268
269       # Remove the subscriber
270       changeset.unsubscribe(current_user)
271
272       # Return a copy of the updated changeset
273       @changeset = changeset
274       render "changeset"
275
276       respond_to do |format|
277         format.xml
278         format.json
279       end
280     end
281
282     private
283
284     #------------------------------------------------------------
285     # utility functions below.
286     #------------------------------------------------------------
287
288     ##
289     # if a bounding box was specified do some sanity checks.
290     # restrict changesets to those enclosed by a bounding box
291     def conditions_bbox(changesets, bbox)
292       if bbox
293         bbox.check_boundaries
294         bbox = bbox.to_scaled
295
296         changesets.where("min_lon < ? and max_lon > ? and min_lat < ? and max_lat > ?",
297                          bbox.max_lon.to_i, bbox.min_lon.to_i,
298                          bbox.max_lat.to_i, bbox.min_lat.to_i)
299       else
300         changesets
301       end
302     end
303
304     ##
305     # restrict changesets to those by a particular user
306     def conditions_user(changesets, user, name)
307       if user.nil? && name.nil?
308         changesets
309       else
310         # shouldn't provide both name and UID
311         raise OSM::APIBadUserInput, "provide either the user ID or display name, but not both" if user && name
312
313         # use either the name or the UID to find the user which we're selecting on.
314         u = if name.nil?
315               # user input checking, we don't have any UIDs < 1
316               raise OSM::APIBadUserInput, "invalid user ID" if user.to_i < 1
317
318               u = User.find_by(:id => user.to_i)
319             else
320               u = User.find_by(:display_name => name)
321             end
322
323         # make sure we found a user
324         raise OSM::APINotFoundError if u.nil?
325
326         # should be able to get changesets of public users only, or
327         # our own changesets regardless of public-ness.
328         unless u.data_public?
329           # get optional user auth stuff so that users can see their own
330           # changesets if they're non-public
331           setup_user_auth
332
333           raise OSM::APINotFoundError if current_user.nil? || current_user != u
334         end
335
336         changesets.where(:user => u)
337       end
338     end
339
340     ##
341     # restrict changesets to those during a particular time period
342     def conditions_time(changesets, time)
343       if time.nil?
344         changesets
345       elsif time.count(",") == 1
346         # if there is a range, i.e: comma separated, then the first is
347         # low, second is high - same as with bounding boxes.
348
349         # check that we actually have 2 elements in the array
350         times = time.split(",")
351         raise OSM::APIBadUserInput, "bad time range" if times.size != 2
352
353         from, to = times.collect { |t| Time.parse(t).utc }
354         changesets.where("closed_at >= ? and created_at <= ?", from, to)
355       else
356         # if there is no comma, assume its a lower limit on time
357         changesets.where("closed_at >= ?", Time.parse(time).utc)
358       end
359       # stupid Time seems to throw both of these for bad parsing, so
360       # we have to catch both and ensure the correct code path is taken.
361     rescue ArgumentError, RuntimeError => e
362       raise OSM::APIBadUserInput, e.message.to_s
363     end
364
365     ##
366     # restrict changesets to those opened during a particular time period
367     # works similar to from..to of notes controller, including the requirement of 'from' when specifying 'to'
368     def conditions_from_to(changesets, from, to)
369       if from
370         begin
371           from = Time.parse(from).utc
372         rescue ArgumentError
373           raise OSM::APIBadUserInput, "Date #{from} is in a wrong format"
374         end
375
376         begin
377           to = if to
378                  Time.parse(to).utc
379                else
380                  Time.now.utc
381                end
382         rescue ArgumentError
383           raise OSM::APIBadUserInput, "Date #{to} is in a wrong format"
384         end
385
386         changesets.where(:created_at => from..to)
387       else
388         changesets
389       end
390     end
391
392     ##
393     # return changesets which are open (haven't been closed yet)
394     # we do this by seeing if the 'closed at' time is in the future. Also if we've
395     # hit the maximum number of changes then it counts as no longer open.
396     # if parameter 'open' is nill then open and closed changesets are returned
397     def conditions_open(changesets, open)
398       if open.nil?
399         changesets
400       else
401         changesets.where("closed_at >= ? and num_changes <= ?",
402                          Time.now.utc, Changeset::MAX_ELEMENTS)
403       end
404     end
405
406     ##
407     # query changesets which are closed
408     # ('closed at' time has passed or changes limit is hit)
409     def conditions_closed(changesets, closed)
410       if closed.nil?
411         changesets
412       else
413         changesets.where("closed_at < ? or num_changes > ?",
414                          Time.now.utc, Changeset::MAX_ELEMENTS)
415       end
416     end
417
418     ##
419     # query changesets by a list of ids
420     # (either specified as array or comma-separated string)
421     def conditions_ids(changesets, ids)
422       if ids.nil?
423         changesets
424       elsif ids.empty?
425         raise OSM::APIBadUserInput, "No changesets were given to search for"
426       else
427         ids = ids.split(",").collect(&:to_i)
428         changesets.where(:id => ids)
429       end
430     end
431
432     ##
433     # Get the maximum number of results to return
434     def result_limit
435       if params[:limit]
436         if params[:limit].to_i.positive? && params[:limit].to_i <= Settings.max_changeset_query_limit
437           params[:limit].to_i
438         else
439           raise OSM::APIBadUserInput, "Changeset limit must be between 1 and #{Settings.max_changeset_query_limit}"
440         end
441       else
442         Settings.default_changeset_query_limit
443       end
444     end
445   end
446 end