1 # The ChangesetController is the RESTful interface to Changeset objects
4 class ChangesetsController < ApiController
7 before_action :check_api_writable, :only => [:create, :update, :upload]
8 before_action :setup_user_auth, :only => [:show]
9 before_action :authorize, :only => [:create, :update, :upload]
13 before_action :require_public_data, :only => [:create, :update, :upload]
14 before_action :set_request_formats, :except => [:create, :upload]
16 skip_around_action :api_call_timeout, :only => [:upload]
18 # Helper methods for checking consistency
19 include ConsistencyValidations
22 # query changesets by bounding box, time, user or open/closed status.
24 raise OSM::APIBadUserInput, "cannot use order=oldest with time" if params[:time] && params[:order] == "oldest"
26 # find any bounding box
27 bbox = BoundingBox.from_bbox_params(params) if params["bbox"]
29 # create the conditions that the user asked for. some or all of
31 changesets = Changeset.all
32 changesets = conditions_bbox(changesets, bbox)
33 changesets = conditions_user(changesets, params["user"], params["display_name"])
34 changesets = conditions_time(changesets, params["time"])
35 changesets = query_conditions_time(changesets)
36 changesets = conditions_open(changesets, params["open"])
37 changesets = conditions_closed(changesets, params["closed"])
38 changesets = conditions_ids(changesets, params["changesets"])
41 changesets = if params[:order] == "oldest"
42 changesets.order(:created_at => :asc)
44 changesets.order(:created_at => :desc)
48 changesets = query_limit(changesets)
50 # preload users, tags and comments, and render result
51 @changesets = changesets.preload(:user, :changeset_tags, :comments)
53 respond_to do |format|
60 # Return XML giving the basic info about the changeset. Does not
61 # return anything about the nodes, ways and relations in the changeset.
63 @changeset = Changeset.find(params[:id])
64 if params[:include_discussion].presence
65 @comments = @changeset.comments
66 @comments = @comments.unscope(:where => :visible) if params[:show_hidden_comments].presence && can?(:create, :changeset_comment_visibility)
67 @comments = @comments.includes(:author)
70 respond_to do |format|
76 # Create a changeset from XML.
78 cs = Changeset.from_xml(request.raw_post, :create => true)
80 # Assume that Changeset.from_xml has thrown an exception if there is an error parsing the xml
81 cs.user = current_user
84 # Subscribe user to changeset comments
85 cs.subscribers << current_user
87 render :plain => cs.id.to_s
91 # Upload a diff in a single transaction.
93 # This means that each change within the diff must succeed, i.e: that
94 # each version number mentioned is still current. Otherwise the entire
95 # transaction *must* be rolled back.
97 # Furthermore, each element in the diff can only reference the current
100 # Returns: a diffResult document, as described in
101 # http://wiki.openstreetmap.org/wiki/OSM_Protocol_Version_0.6
103 changeset = Changeset.find(params[:id])
104 check_changeset_consistency(changeset, current_user)
106 diff_reader = DiffReader.new(request.raw_post, changeset)
107 Changeset.transaction do
108 result = diff_reader.commit
109 # the number of changes in this changeset has already been
110 # updated and is visible in this transaction so we don't need
111 # to allow for any more when checking the limit
113 render :xml => result.to_s
118 # updates a changeset's tags. none of the changeset's attributes are
119 # user-modifiable, so they will be ignored.
121 # changesets are not (yet?) versioned, so we don't have to deal with
122 # history tables here. changesets are locked to a single user, however.
124 # after succesful update, returns the XML of the changeset.
126 @changeset = Changeset.find(params[:id])
127 new_changeset = Changeset.from_xml(request.raw_post)
129 check_changeset_consistency(@changeset, current_user)
130 @changeset.update_from(new_changeset, current_user)
133 respond_to do |format|
141 #------------------------------------------------------------
142 # utility functions below.
143 #------------------------------------------------------------
146 # if a bounding box was specified do some sanity checks.
147 # restrict changesets to those enclosed by a bounding box
148 def conditions_bbox(changesets, bbox)
150 bbox.check_boundaries
151 bbox = bbox.to_scaled
153 changesets.where("min_lon < ? and max_lon > ? and min_lat < ? and max_lat > ?",
154 bbox.max_lon.to_i, bbox.min_lon.to_i,
155 bbox.max_lat.to_i, bbox.min_lat.to_i)
162 # restrict changesets to those by a particular user
163 def conditions_user(changesets, user, name)
164 if user.nil? && name.nil?
167 # shouldn't provide both name and UID
168 raise OSM::APIBadUserInput, "provide either the user ID or display name, but not both" if user && name
170 # use either the name or the UID to find the user which we're selecting on.
172 # user input checking, we don't have any UIDs < 1
173 raise OSM::APIBadUserInput, "invalid user ID" if user.to_i < 1
175 u = User.find_by(:id => user.to_i)
177 u = User.find_by(:display_name => name)
180 # make sure we found a user
181 raise OSM::APINotFoundError if u.nil?
183 # should be able to get changesets of public users only, or
184 # our own changesets regardless of public-ness.
185 unless u.data_public?
186 # get optional user auth stuff so that users can see their own
187 # changesets if they're non-public
190 raise OSM::APINotFoundError if current_user.nil? || current_user != u
193 changesets.where(:user => u)
198 # restrict changesets to those during a particular time period
199 def conditions_time(changesets, time)
202 elsif time.count(",") == 1
203 # if there is a range, i.e: comma separated, then the first is
204 # low, second is high - same as with bounding boxes.
206 # check that we actually have 2 elements in the array
207 times = time.split(",")
208 raise OSM::APIBadUserInput, "bad time range" if times.size != 2
210 from, to = times.collect { |t| Time.parse(t).utc }
211 changesets.where("closed_at >= ? and created_at <= ?", from, to)
213 # if there is no comma, assume its a lower limit on time
214 changesets.where(:closed_at => Time.parse(time).utc..)
216 # stupid Time seems to throw both of these for bad parsing, so
217 # we have to catch both and ensure the correct code path is taken.
218 rescue ArgumentError, RuntimeError => e
219 raise OSM::APIBadUserInput, e.message.to_s
223 # return changesets which are open (haven't been closed yet)
224 # we do this by seeing if the 'closed at' time is in the future. Also if we've
225 # hit the maximum number of changes then it counts as no longer open.
226 # if parameter 'open' is nill then open and closed changesets are returned
227 def conditions_open(changesets, open)
231 changesets.where("closed_at >= ? and num_changes <= ?",
232 Time.now.utc, Changeset::MAX_ELEMENTS)
237 # query changesets which are closed
238 # ('closed at' time has passed or changes limit is hit)
239 def conditions_closed(changesets, closed)
243 changesets.where("closed_at < ? or num_changes > ?",
244 Time.now.utc, Changeset::MAX_ELEMENTS)
249 # query changesets by a list of ids
250 # (either specified as array or comma-separated string)
251 def conditions_ids(changesets, ids)
255 raise OSM::APIBadUserInput, "No changesets were given to search for"
257 ids = ids.split(",").collect(&:to_i)
258 changesets.where(:id => ids)