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