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