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