1 # The ChangesetController is the RESTful interface to Changeset objects
3 class ChangesetController < ApplicationController
7 session :off, :except => [:list, :list_user, :list_bbox]
8 before_filter :authorize_web, :only => [:list, :list_user, :list_bbox]
9 before_filter :authorize, :only => [:create, :update, :delete, :upload, :include, :close]
10 before_filter :check_write_availability, :only => [:create, :update, :delete, :upload, :include]
11 before_filter :check_read_availability, :except => [:create, :update, :delete, :upload, :download, :query]
12 after_filter :compress_output
14 # Help methods for checking boundary sanity and area size
17 # Helper methods for checking consistency
18 include ConsistencyValidations
20 # Create a changeset from XML.
23 cs = Changeset.from_xml(request.raw_post, true)
28 render :text => cs.id.to_s, :content_type => "text/plain"
30 render :nothing => true, :status => :bad_request
33 render :nothing => true, :status => :method_not_allowed
38 # Return XML giving the basic info about the changeset. Does not
39 # return anything about the nodes, ways and relations in the changeset.
42 changeset = Changeset.find(params[:id])
43 render :text => changeset.to_xml.to_s, :content_type => "text/xml"
44 rescue ActiveRecord::RecordNotFound
45 render :nothing => true, :status => :not_found
50 # marks a changeset as closed. this may be called multiple times
51 # on the same changeset, so is idempotent.
54 render :nothing => true, :status => :method_not_allowed
58 changeset = Changeset.find(params[:id])
59 check_changeset_consistency(changeset, @user)
61 # to close the changeset, we'll just set its closed_at time to
62 # now. this might not be enough if there are concurrency issues,
63 # but we'll have to wait and see.
64 changeset.set_closed_time_now
67 render :nothing => true
68 rescue ActiveRecord::RecordNotFound
69 render :nothing => true, :status => :not_found
70 rescue OSM::APIError => ex
75 # insert a (set of) points into a changeset bounding box. this can only
76 # increase the size of the bounding box. this is a hint that clients can
77 # set either before uploading a large number of changes, or changes that
78 # the client (but not the server) knows will affect areas further away.
80 # only allow POST requests, because although this method is
81 # idempotent, there is no "document" to PUT really...
83 cs = Changeset.find(params[:id])
84 check_changeset_consistency(cs, @user)
86 # keep an array of lons and lats
90 # the request is in pseudo-osm format... this is kind-of an
91 # abuse, maybe should change to some other format?
92 doc = XML::Parser.string(request.raw_post).parse
93 doc.find("//osm/node").each do |n|
94 lon << n['lon'].to_f * GeoRecord::SCALE
95 lat << n['lat'].to_f * GeoRecord::SCALE
98 # add the existing bounding box to the lon-lat array
99 lon << cs.min_lon unless cs.min_lon.nil?
100 lat << cs.min_lat unless cs.min_lat.nil?
101 lon << cs.max_lon unless cs.max_lon.nil?
102 lat << cs.max_lat unless cs.max_lat.nil?
104 # collapse the arrays to minimum and maximum
105 cs.min_lon, cs.min_lat, cs.max_lon, cs.max_lat =
106 lon.min, lat.min, lon.max, lat.max
108 # save the larger bounding box and return the changeset, which
109 # will include the bigger bounding box.
111 render :text => cs.to_xml.to_s, :content_type => "text/xml"
114 render :nothing => true, :status => :method_not_allowed
117 rescue LibXML::XML::Error, ArgumentError => ex
118 raise OSM::APIBadXMLError.new("osm", xml, ex.message)
119 rescue ActiveRecord::RecordNotFound
120 render :nothing => true, :status => :not_found
121 rescue OSM::APIError => ex
122 render ex.render_opts
126 # Upload a diff in a single transaction.
128 # This means that each change within the diff must succeed, i.e: that
129 # each version number mentioned is still current. Otherwise the entire
130 # transaction *must* be rolled back.
132 # Furthermore, each element in the diff can only reference the current
135 # Returns: a diffResult document, as described in
136 # http://wiki.openstreetmap.org/index.php/OSM_Protocol_Version_0.6
138 # only allow POST requests, as the upload method is most definitely
139 # not idempotent, as several uploads with placeholder IDs will have
140 # different side-effects.
141 # see http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.2
143 render :nothing => true, :status => :method_not_allowed
147 changeset = Changeset.find(params[:id])
148 check_changeset_consistency(changeset, @user)
150 diff_reader = DiffReader.new(request.raw_post, changeset)
151 Changeset.transaction do
152 result = diff_reader.commit
153 render :text => result.to_s, :content_type => "text/xml"
156 rescue ActiveRecord::RecordNotFound
157 render :nothing => true, :status => :not_found
158 rescue OSM::APIError => ex
159 render ex.render_opts
163 # download the changeset as an osmChange document.
165 # to make it easier to revert diffs it would be better if the osmChange
166 # format were reversible, i.e: contained both old and new versions of
167 # modified elements. but it doesn't at the moment...
169 # this method cannot order the database changes fully (i.e: timestamp and
170 # version number may be too coarse) so the resulting diff may not apply
171 # to a different database. however since changesets are not atomic this
172 # behaviour cannot be guaranteed anyway and is the result of a design
175 changeset = Changeset.find(params[:id])
177 # get all the elements in the changeset and stick them in a big array.
178 elements = [changeset.old_nodes,
180 changeset.old_relations].flatten
182 # sort the elements by timestamp and version number, as this is the
183 # almost sensible ordering available. this would be much nicer if
184 # global (SVN-style) versioning were used - then that would be
186 elements.sort! do |a, b|
187 if (a.timestamp == b.timestamp)
188 a.version <=> b.version
190 a.timestamp <=> b.timestamp
194 # create an osmChange document for the output
195 result = OSM::API.new.get_xml_doc
196 result.root.name = "osmChange"
198 # generate an output element for each operation. note: we avoid looking
199 # at the history because it is simpler - but it would be more correct to
200 # check these assertions.
201 elements.each do |elt|
203 if (elt.version == 1)
204 # first version, so it must be newly-created.
205 created = XML::Node.new "create"
206 created << elt.to_xml_node
208 # get the previous version from the element history
209 prev_elt = elt.class.find(:first, :conditions =>
210 ['id = ? and version = ?',
211 elt.id, elt.version])
213 # if the element isn't visible then it must have been deleted, so
214 # output the *previous* XML
215 deleted = XML::Node.new "delete"
216 deleted << prev_elt.to_xml_node
218 # must be a modify, for which we don't need the previous version
220 modified = XML::Node.new "modify"
221 modified << elt.to_xml_node
226 render :text => result.to_s, :content_type => "text/xml"
228 rescue ActiveRecord::RecordNotFound
229 render :nothing => true, :status => :not_found
230 rescue OSM::APIError => ex
231 render ex.render_opts
235 # query changesets by bounding box, time, user or open/closed status.
237 # create the conditions that the user asked for. some or all of
239 conditions = conditions_bbox(params['bbox'])
240 conditions = cond_merge conditions, conditions_user(params['user'])
241 conditions = cond_merge conditions, conditions_time(params['time'])
242 conditions = cond_merge conditions, conditions_open(params['open'])
243 conditions = cond_merge conditions, conditions_closed(params['closed'])
245 # create the results document
246 results = OSM::API.new.get_xml_doc
248 # add all matching changesets to the XML results document
250 :conditions => conditions,
252 :order => 'created_at desc').each do |cs|
253 results.root << cs.to_xml_node
256 render :text => results.to_s, :content_type => "text/xml"
258 rescue ActiveRecord::RecordNotFound
259 render :nothing => true, :status => :not_found
260 rescue OSM::APIError => ex
261 render ex.render_opts
265 # updates a changeset's tags. none of the changeset's attributes are
266 # user-modifiable, so they will be ignored.
268 # changesets are not (yet?) versioned, so we don't have to deal with
269 # history tables here. changesets are locked to a single user, however.
271 # after succesful update, returns the XML of the changeset.
273 # request *must* be a PUT.
275 render :nothing => true, :status => :method_not_allowed
279 changeset = Changeset.find(params[:id])
280 new_changeset = Changeset.from_xml(request.raw_post)
282 unless new_changeset.nil?
283 check_changeset_consistency(changeset, @user)
284 changeset.update_from(new_changeset, @user)
285 render :text => changeset.to_xml, :mime_type => "text/xml"
288 render :nothing => true, :status => :bad_request
291 rescue ActiveRecord::RecordNotFound
292 render :nothing => true, :status => :not_found
293 rescue OSM::APIError => ex
294 render ex.render_opts
300 # list edits (open changesets) in reverse chronological order
302 conditions = conditions_nonempty
305 # @changesets = Changeset.find(:all, :order => "closed_at DESC", :conditions => ['closed_at < ?', DateTime.now], :limit=> 20)
308 #@edit_pages, @edits = paginate(:changesets,
309 # :include => [:user, :changeset_tags],
310 # :conditions => conditions,
311 # :order => "changesets.created_at DESC",
315 @edits = Changeset.find(:all,
316 :order => "changesets.created_at DESC",
317 :conditions => conditions,
323 # list edits (changesets) belonging to a user
325 user = User.find_by_display_name(params[:display_name], :conditions => {:visible => true})
328 @display_name = user.display_name
329 if not user.data_public? and @user != user
333 conditions = cond_merge conditions, ['user_id = ?', user.id]
334 conditions = cond_merge conditions, conditions_nonempty
335 @edit_pages, @edits = paginate(:changesets,
336 :include => [:user, :changeset_tags],
337 :conditions => conditions,
338 :order => "changesets.created_at DESC",
342 @not_found_user = params[:display_name]
343 render :template => 'user/no_such_user', :status => :not_found
348 # list changesets in a bbox
350 # support 'bbox' param or alternatively 'minlon', 'minlat' etc
352 bbox = params['bbox']
353 elsif params['minlon'] and params['minlat'] and params['maxlon'] and params['maxlat']
354 bbox = h(params['minlon']) + ',' + h(params['minlat']) + ',' + h(params['maxlon']) + ',' + h(params['maxlat'])
356 #TODO: fix bugs in location determination for history tab (and other tabs) then uncomment this redirect
357 #redirect_to :action => 'list'
360 conditions = conditions_bbox(bbox);
361 conditions = cond_merge conditions, conditions_nonempty
363 @edit_pages, @edits = paginate(:changesets,
364 :include => [:user, :changeset_tags],
365 :conditions => conditions,
366 :order => "changesets.created_at DESC",
369 @bbox = sanitise_boundaries(bbox.split(/,/)) unless bbox==nil
373 #------------------------------------------------------------
374 # utility functions below.
375 #------------------------------------------------------------
378 # merge two conditions
383 return [ a_str + " AND " + b_str ] + a + b
392 # if a bounding box was specified then parse it and do some sanity
393 # checks. this is mostly the same as the map call, but without the
395 def conditions_bbox(bbox)
397 raise OSM::APIBadUserInput.new("Bounding box should be min_lon,min_lat,max_lon,max_lat") unless bbox.count(',') == 3
398 bbox = sanitise_boundaries(bbox.split(/,/))
399 raise OSM::APIBadUserInput.new("Minimum longitude should be less than maximum.") unless bbox[0] <= bbox[2]
400 raise OSM::APIBadUserInput.new("Minimum latitude should be less than maximum.") unless bbox[1] <= bbox[3]
401 return ['min_lon < ? and max_lon > ? and min_lat < ? and max_lat > ?',
402 bbox[2] * GeoRecord::SCALE, bbox[0] * GeoRecord::SCALE, bbox[3]* GeoRecord::SCALE, bbox[1] * GeoRecord::SCALE]
409 # restrict changesets to those by a particular user
410 def conditions_user(user)
412 # user input checking, we don't have any UIDs < 1
413 raise OSM::APIBadUserInput.new("invalid user ID") if user.to_i < 1
415 u = User.find(user.to_i)
416 # should be able to get changesets of public users only, or
417 # our own changesets regardless of public-ness.
418 unless u.data_public?
419 # get optional user auth stuff so that users can see their own
420 # changesets if they're non-public
423 raise OSM::APINotFoundError if @user.nil? or @user.id != u.id
425 return ['user_id = ?', u.id]
432 # restrict changes to those closed during a particular time period
433 def conditions_time(time)
435 # if there is a range, i.e: comma separated, then the first is
436 # low, second is high - same as with bounding boxes.
437 if time.count(',') == 1
438 # check that we actually have 2 elements in the array
439 times = time.split(/,/)
440 raise OSM::APIBadUserInput.new("bad time range") if times.size != 2
442 from, to = times.collect { |t| DateTime.parse(t) }
443 return ['closed_at >= ? and created_at <= ?', from, to]
445 # if there is no comma, assume its a lower limit on time
446 return ['closed_at >= ?', DateTime.parse(time)]
451 # stupid DateTime seems to throw both of these for bad parsing, so
452 # we have to catch both and ensure the correct code path is taken.
453 rescue ArgumentError => ex
454 raise OSM::APIBadUserInput.new(ex.message.to_s)
455 rescue RuntimeError => ex
456 raise OSM::APIBadUserInput.new(ex.message.to_s)
460 # return changesets which are open (haven't been closed yet)
461 # we do this by seeing if the 'closed at' time is in the future. Also if we've
462 # hit the maximum number of changes then it counts as no longer open.
463 # if parameter 'open' is nill then open and closed changsets are returned
464 def conditions_open(open)
465 return open.nil? ? nil : ['closed_at >= ? and num_changes <= ?',
466 Time.now.getutc, Changeset::MAX_ELEMENTS]
470 # query changesets which are closed
471 # ('closed at' time has passed or changes limit is hit)
472 def conditions_closed(closed)
473 return closed.nil? ? nil : ['closed_at < ? and num_changes > ?',
474 Time.now.getutc, Changeset::MAX_ELEMENTS]
478 # eliminate empty changesets (where the bbox has not been set)
479 # this should be applied to all changeset list displays
480 def conditions_nonempty()
481 return ['min_lat IS NOT NULL']