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