1 # The ChangesetController is the RESTful interface to Changeset objects
3 class ChangesetController < ApplicationController
7 skip_before_filter :verify_authenticity_token, :except => [:list]
8 before_filter :authorize_web, :only => [:list, :feed, :comments_feed]
9 before_filter :set_locale, :only => [:list, :feed, :comments_feed]
10 before_filter :authorize, :only => [:create, :update, :delete, :upload, :include, :close, :comment, :subscribe, :unsubscribe, :hide_comment, :unhide_comment]
11 before_filter :require_moderator, :only => [:hide_comment, :unhide_comment]
12 before_filter :require_allow_write_api, :only => [:create, :update, :delete, :upload, :include, :close, :comment, :subscribe, :unsubscribe, :hide_comment, :unhide_comment]
13 before_filter :require_public_data, :only => [:create, :update, :delete, :upload, :include, :close, :comment, :subscribe, :unsubscribe]
14 before_filter :check_api_writable, :only => [:create, :update, :delete, :upload, :include, :comment, :subscribe, :unsubscribe, :hide_comment, :unhide_comment]
15 before_filter :check_api_readable, :except => [:create, :update, :delete, :upload, :download, :query, :list, :feed, :comment, :subscribe, :unsubscribe, :comments_feed]
16 before_filter(:only => [:list, :feed, :comments_feed]) { |c| c.check_database_readable(true) }
17 after_filter :compress_output
18 around_filter :api_call_handle_error, :except => [:list, :feed, :comments_feed]
19 around_filter :web_timeout, :only => [:list, :feed, :comments_feed]
21 # Helper methods for checking consistency
22 include ConsistencyValidations
24 # Create a changeset from XML.
28 cs = Changeset.from_xml(request.raw_post, true)
30 # Assume that Changeset.from_xml has thrown an exception if there is an error parsing the xml
34 # Subscribe user to changeset comments
35 cs.subscribers << @user
37 render :text => cs.id.to_s, :content_type => "text/plain"
41 # Return XML giving the basic info about the changeset. Does not
42 # return anything about the nodes, ways and relations in the changeset.
44 changeset = Changeset.find(params[:id])
46 render :text => changeset.to_xml(params[:include_discussion].presence).to_s, :content_type => "text/xml"
50 # marks a changeset as closed. this may be called multiple times
51 # on the same changeset, so is idempotent.
55 changeset = Changeset.find(params[:id])
56 check_changeset_consistency(changeset, @user)
58 # to close the changeset, we'll just set its closed_at time to
59 # now. this might not be enough if there are concurrency issues,
60 # but we'll have to wait and see.
61 changeset.set_closed_time_now
68 # insert a (set of) points into a changeset bounding box. this can only
69 # increase the size of the bounding box. this is a hint that clients can
70 # set either before uploading a large number of changes, or changes that
71 # the client (but not the server) knows will affect areas further away.
73 # only allow POST requests, because although this method is
74 # idempotent, there is no "document" to PUT really...
77 cs = Changeset.find(params[:id])
78 check_changeset_consistency(cs, @user)
80 # keep an array of lons and lats
84 # the request is in pseudo-osm format... this is kind-of an
85 # abuse, maybe should change to some other format?
86 doc = XML::Parser.string(request.raw_post).parse
87 doc.find("//osm/node").each do |n|
88 lon << n["lon"].to_f * GeoRecord::SCALE
89 lat << n["lat"].to_f * GeoRecord::SCALE
92 # add the existing bounding box to the lon-lat array
93 lon << cs.min_lon unless cs.min_lon.nil?
94 lat << cs.min_lat unless cs.min_lat.nil?
95 lon << cs.max_lon unless cs.max_lon.nil?
96 lat << cs.max_lat unless cs.max_lat.nil?
98 # collapse the arrays to minimum and maximum
99 cs.min_lon, cs.min_lat, cs.max_lon, cs.max_lat =
100 lon.min, lat.min, lon.max, lat.max
102 # save the larger bounding box and return the changeset, which
103 # will include the bigger bounding box.
105 render :text => cs.to_xml.to_s, :content_type => "text/xml"
109 # Upload a diff in a single transaction.
111 # This means that each change within the diff must succeed, i.e: that
112 # each version number mentioned is still current. Otherwise the entire
113 # transaction *must* be rolled back.
115 # Furthermore, each element in the diff can only reference the current
118 # Returns: a diffResult document, as described in
119 # http://wiki.openstreetmap.org/wiki/OSM_Protocol_Version_0.6
121 # only allow POST requests, as the upload method is most definitely
122 # not idempotent, as several uploads with placeholder IDs will have
123 # different side-effects.
124 # see http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.2
127 changeset = Changeset.find(params[:id])
128 check_changeset_consistency(changeset, @user)
130 diff_reader = DiffReader.new(request.raw_post, changeset)
131 Changeset.transaction do
132 result = diff_reader.commit
133 render :text => result.to_s, :content_type => "text/xml"
138 # download the changeset as an osmChange document.
140 # to make it easier to revert diffs it would be better if the osmChange
141 # format were reversible, i.e: contained both old and new versions of
142 # modified elements. but it doesn't at the moment...
144 # this method cannot order the database changes fully (i.e: timestamp and
145 # version number may be too coarse) so the resulting diff may not apply
146 # to a different database. however since changesets are not atomic this
147 # behaviour cannot be guaranteed anyway and is the result of a design
150 changeset = Changeset.find(params[:id])
152 # get all the elements in the changeset which haven't been redacted
153 # and stick them in a big array.
154 elements = [changeset.old_nodes.unredacted,
155 changeset.old_ways.unredacted,
156 changeset.old_relations.unredacted].flatten
158 # sort the elements by timestamp and version number, as this is the
159 # almost sensible ordering available. this would be much nicer if
160 # global (SVN-style) versioning were used - then that would be
162 elements.sort! do |a, b|
163 if (a.timestamp == b.timestamp)
164 a.version <=> b.version
166 a.timestamp <=> b.timestamp
170 # create changeset and user caches
172 user_display_name_cache = {}
174 # create an osmChange document for the output
175 result = OSM::API.new.get_xml_doc
176 result.root.name = "osmChange"
178 # generate an output element for each operation. note: we avoid looking
179 # at the history because it is simpler - but it would be more correct to
180 # check these assertions.
181 elements.each do |elt|
183 if (elt.version == 1)
184 # first version, so it must be newly-created.
185 created = XML::Node.new "create"
186 created << elt.to_xml_node(changeset_cache, user_display_name_cache)
190 modified = XML::Node.new "modify"
191 modified << elt.to_xml_node(changeset_cache, user_display_name_cache)
193 # if the element isn't visible then it must have been deleted
194 deleted = XML::Node.new "delete"
195 deleted << elt.to_xml_node(changeset_cache, user_display_name_cache)
200 render :text => result.to_s, :content_type => "text/xml"
204 # query changesets by bounding box, time, user or open/closed status.
206 # find any bounding box
207 bbox = BoundingBox.from_bbox_params(params) if params["bbox"]
209 # create the conditions that the user asked for. some or all of
211 changesets = Changeset.all
212 changesets = conditions_bbox(changesets, bbox)
213 changesets = conditions_user(changesets, params["user"], params["display_name"])
214 changesets = conditions_time(changesets, params["time"])
215 changesets = conditions_open(changesets, params["open"])
216 changesets = conditions_closed(changesets, params["closed"])
217 changesets = conditions_ids(changesets, params["changesets"])
219 # create the results document
220 results = OSM::API.new.get_xml_doc
222 # add all matching changesets to the XML results document
223 changesets.order("created_at DESC").limit(100).each do |cs|
224 results.root << cs.to_xml_node
227 render :text => results.to_s, :content_type => "text/xml"
231 # updates a changeset's tags. none of the changeset's attributes are
232 # user-modifiable, so they will be ignored.
234 # changesets are not (yet?) versioned, so we don't have to deal with
235 # history tables here. changesets are locked to a single user, however.
237 # after succesful update, returns the XML of the changeset.
239 # request *must* be a PUT.
242 changeset = Changeset.find(params[:id])
243 new_changeset = Changeset.from_xml(request.raw_post)
245 if new_changeset.nil?
246 render :text => "", :status => :bad_request
248 check_changeset_consistency(changeset, @user)
249 changeset.update_from(new_changeset, @user)
250 render :text => changeset.to_xml, :mime_type => "text/xml"
255 # list edits (open changesets) in reverse chronological order
257 if request.format == :atom && params[:max_id]
258 redirect_to params.merge(:max_id => nil), :status => :moved_permanently
262 if params[:display_name]
263 user = User.find_by_display_name(params[:display_name])
264 if !user || !user.active?
265 render_unknown_user params[:display_name]
270 if (params[:friends] || params[:nearby]) && !@user && request.format == :html
275 if request.format == :html && !params[:list]
277 render :action => :history, :layout => map_layout
279 changesets = conditions_nonempty(Changeset.all)
281 if params[:display_name]
282 if user.data_public? || user == @user
283 changesets = changesets.where(:user_id => user.id)
285 changesets = changesets.where("false")
288 changesets = conditions_bbox(changesets, BoundingBox.from_bbox_params(params))
289 elsif params[:friends] && @user
290 changesets = changesets.where(:user_id => @user.friend_users.identifiable)
291 elsif params[:nearby] && @user
292 changesets = changesets.where(:user_id => @user.nearby)
296 changesets = changesets.where("changesets.id <= ?", params[:max_id])
299 @edits = changesets.order("changesets.id DESC").limit(20).preload(:user, :changeset_tags)
301 render :action => :list, :layout => false
306 # list edits as an atom feed
312 # Add a comment to a changeset
314 # Check the arguments are sane
315 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
316 fail OSM::APIBadUserInput.new("No text was given") if params[:text].blank?
318 # Extract the arguments
319 id = params[:id].to_i
322 # Find the changeset and check it is valid
323 changeset = Changeset.find(id)
324 fail OSM::APIChangesetNotYetClosedError.new(changeset) if changeset.is_open?
326 # Add a comment to the changeset
327 comment = changeset.comments.create(:changeset => changeset,
331 # Notify current subscribers of the new comment
332 changeset.subscribers.each do |user|
334 Notifier.changeset_comment_notification(comment, user).deliver_now
338 # Add the commenter to the subscribers if necessary
339 changeset.subscribers << @user unless changeset.subscribers.exists?(@user.id)
341 # Return a copy of the updated changeset
342 render :text => changeset.to_xml.to_s, :content_type => "text/xml"
346 # Adds a subscriber to the changeset
348 # Check the arguments are sane
349 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
351 # Extract the arguments
352 id = params[:id].to_i
354 # Find the changeset and check it is valid
355 changeset = Changeset.find(id)
356 fail OSM::APIChangesetNotYetClosedError.new(changeset) if changeset.is_open?
357 fail OSM::APIChangesetAlreadySubscribedError.new(changeset) if changeset.subscribers.exists?(@user.id)
360 changeset.subscribers << @user
362 # Return a copy of the updated changeset
363 render :text => changeset.to_xml.to_s, :content_type => "text/xml"
367 # Removes a subscriber from the changeset
369 # Check the arguments are sane
370 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
372 # Extract the arguments
373 id = params[:id].to_i
375 # Find the changeset and check it is valid
376 changeset = Changeset.find(id)
377 fail OSM::APIChangesetNotYetClosedError.new(changeset) if changeset.is_open?
378 fail OSM::APIChangesetNotSubscribedError.new(changeset) unless changeset.subscribers.exists?(@user.id)
380 # Remove the subscriber
381 changeset.subscribers.delete(@user)
383 # Return a copy of the updated changeset
384 render :text => changeset.to_xml.to_s, :content_type => "text/xml"
388 # Sets visible flag on comment to false
390 # Check the arguments are sane
391 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
393 # Extract the arguments
394 id = params[:id].to_i
397 comment = ChangesetComment.find(id)
400 comment.update(:visible => false)
402 # Return a copy of the updated changeset
403 render :text => comment.changeset.to_xml.to_s, :content_type => "text/xml"
407 # Sets visible flag on comment to true
409 # Check the arguments are sane
410 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
412 # Extract the arguments
413 id = params[:id].to_i
416 comment = ChangesetComment.find(id)
419 comment.update(:visible => true)
421 # Return a copy of the updated changeset
422 render :text => comment.changeset.to_xml.to_s, :content_type => "text/xml"
426 # Get a feed of recent changeset comments
429 # Extract the arguments
430 id = params[:id].to_i
433 changeset = Changeset.find(id)
435 # Return comments for this changeset only
436 @comments = changeset.comments.includes(:author, :changeset).limit(comments_limit)
439 @comments = ChangesetComment.includes(:author, :changeset).where(:visible => :true).order("created_at DESC").limit(comments_limit).preload(:changeset)
443 respond_to do |format|
450 #------------------------------------------------------------
451 # utility functions below.
452 #------------------------------------------------------------
455 # if a bounding box was specified do some sanity checks.
456 # restrict changesets to those enclosed by a bounding box
457 # we need to return both the changesets and the bounding box
458 def conditions_bbox(changesets, bbox)
460 bbox.check_boundaries
461 bbox = bbox.to_scaled
462 return changesets.where("min_lon < ? and max_lon > ? and min_lat < ? and max_lat > ?",
463 bbox.max_lon.to_i, bbox.min_lon.to_i,
464 bbox.max_lat.to_i, bbox.min_lat.to_i)
471 # restrict changesets to those by a particular user
472 def conditions_user(changesets, user, name)
473 if user.nil? && name.nil?
476 # shouldn't provide both name and UID
477 fail OSM::APIBadUserInput.new("provide either the user ID or display name, but not both") if user && name
479 # use either the name or the UID to find the user which we're selecting on.
481 # user input checking, we don't have any UIDs < 1
482 fail OSM::APIBadUserInput.new("invalid user ID") if user.to_i < 1
483 u = User.find(user.to_i)
485 u = User.find_by_display_name(name)
488 # make sure we found a user
489 fail OSM::APINotFoundError.new if u.nil?
491 # should be able to get changesets of public users only, or
492 # our own changesets regardless of public-ness.
493 unless u.data_public?
494 # get optional user auth stuff so that users can see their own
495 # changesets if they're non-public
498 fail OSM::APINotFoundError if @user.nil? || @user.id != u.id
500 return changesets.where(:user_id => u.id)
505 # restrict changes to those closed during a particular time period
506 def conditions_time(changesets, time)
510 # if there is a range, i.e: comma separated, then the first is
511 # low, second is high - same as with bounding boxes.
512 if time.count(",") == 1
513 # check that we actually have 2 elements in the array
514 times = time.split(/,/)
515 fail OSM::APIBadUserInput.new("bad time range") if times.size != 2
517 from, to = times.collect { |t| DateTime.parse(t) }
518 return changesets.where("closed_at >= ? and created_at <= ?", from, to)
520 # if there is no comma, assume its a lower limit on time
521 return changesets.where("closed_at >= ?", DateTime.parse(time))
524 # stupid DateTime seems to throw both of these for bad parsing, so
525 # we have to catch both and ensure the correct code path is taken.
526 rescue ArgumentError => ex
527 raise OSM::APIBadUserInput.new(ex.message.to_s)
528 rescue RuntimeError => ex
529 raise OSM::APIBadUserInput.new(ex.message.to_s)
533 # return changesets which are open (haven't been closed yet)
534 # we do this by seeing if the 'closed at' time is in the future. Also if we've
535 # hit the maximum number of changes then it counts as no longer open.
536 # if parameter 'open' is nill then open and closed changesets are returned
537 def conditions_open(changesets, open)
541 return changesets.where("closed_at >= ? and num_changes <= ?",
542 Time.now.getutc, Changeset::MAX_ELEMENTS)
547 # query changesets which are closed
548 # ('closed at' time has passed or changes limit is hit)
549 def conditions_closed(changesets, closed)
553 return changesets.where("closed_at < ? or num_changes > ?",
554 Time.now.getutc, Changeset::MAX_ELEMENTS)
559 # query changesets by a list of ids
560 # (either specified as array or comma-separated string)
561 def conditions_ids(changesets, ids)
565 fail OSM::APIBadUserInput.new("No changesets were given to search for")
567 ids = ids.split(",").collect(&:to_i)
568 return changesets.where(:id => ids)
573 # eliminate empty changesets (where the bbox has not been set)
574 # this should be applied to all changeset list displays
575 def conditions_nonempty(changesets)
576 changesets.where("num_changes > 0")
580 # Get the maximum number of comments to return
583 if params[:limit].to_i > 0 && params[:limit].to_i <= 10000
586 fail OSM::APIBadUserInput.new("Comments limit must be between 1 and 10000")