1 # == Schema Information
3 # Table name: changesets
5 # id :bigint(8) not null, primary key
6 # user_id :bigint(8) not null
7 # created_at :datetime not null
12 # closed_at :datetime not null
13 # num_changes :integer default(0), not null
17 # changesets_bbox_idx (min_lat,max_lat,min_lon,max_lon) USING gist
18 # changesets_closed_at_idx (closed_at)
19 # changesets_created_at_idx (created_at)
20 # changesets_user_id_created_at_idx (user_id,created_at)
21 # changesets_user_id_id_idx (user_id,id)
22 # index_changesets_on_user_id_and_closed_at (user_id,closed_at)
26 # changesets_user_id_fkey (user_id => users.id)
29 class Changeset < ApplicationRecord
32 belongs_to :user, :counter_cache => true
34 has_many :changeset_tags
41 has_many :old_relations
43 has_many :comments, -> { where(:visible => true).order(:created_at) }, :class_name => "ChangesetComment"
44 has_and_belongs_to_many :subscribers, :class_name => "User", :join_table => "changesets_subscribers", :association_foreign_key => "subscriber_id"
46 validates :id, :uniqueness => true, :presence => { :on => :update },
47 :numericality => { :on => :update, :only_integer => true }
48 validates :num_changes, :presence => true,
49 :numericality => { :only_integer => true,
50 :greater_than_or_equal_to => 0 }
51 validates :created_at, :closed_at, :presence => true
52 validates :min_lat, :max_lat, :min_lon, :max_lat, :allow_nil => true,
53 :numericality => { :only_integer => true }
55 before_save :update_closed_at
57 # maximum number of elements allowed in a changeset
60 # maximum time a changeset is allowed to be open for.
63 # idle timeout increment, one hour seems reasonable.
66 # Use a method like this, so that we can easily change how we
67 # determine whether a changeset is open, without breaking code in at
70 # a changeset is open (that is, it will accept further changes) when
71 # it has not yet run out of time and its capacity is small enough.
72 # note that this may not be a hard limit - due to timing changes and
73 # concurrency it is possible that some changesets may be slightly
74 # longer than strictly allowed or have slightly more changes in them.
75 (closed_at > Time.now.utc) && (num_changes <= MAX_ELEMENTS)
78 def set_closed_time_now
79 self.closed_at = Time.now.utc if open?
82 def self.from_xml(xml, create: false)
83 p = XML::Parser.string(xml, :options => XML::Parser::Options::NOERROR)
85 pt = doc.find_first("//osm/changeset")
88 Changeset.from_xml_node(pt, :create => create)
90 raise OSM::APIBadXMLError.new("changeset", xml, "XML doesn't contain an osm/changeset element.")
92 rescue LibXML::XML::Error, ArgumentError => e
93 raise OSM::APIBadXMLError.new("changeset", xml, e.message)
96 def self.from_xml_node(pt, create: false)
99 cs.created_at = Time.now.utc
100 # initial close time is 1h ahead, but will be increased on each
102 cs.closed_at = cs.created_at + IDLE_TIMEOUT
103 # initially we have no changes in a changeset
107 pt.find("tag").each do |tag|
108 raise OSM::APIBadXMLError.new("changeset", pt, "tag is missing key") if tag["k"].nil?
109 raise OSM::APIBadXMLError.new("changeset", pt, "tag is missing value") if tag["v"].nil?
111 cs.add_tag_keyval(tag["k"], tag["v"])
118 # returns the bounding box of the changeset. it is possible that some
119 # or all of the values will be nil, indicating that they are undefined.
121 @bbox ||= BoundingBox.new(min_lon, min_lat, max_lon, max_lat)
129 # expand the bounding box to include the given bounding box.
130 def update_bbox!(bbox_update)
131 bbox.expand!(bbox_update)
133 raise OSM::APISizeLimitExceeded if bbox.linear_size > size_limit
135 # update active record. rails 2.1's dirty handling should take care of
136 # whether this object needs saving or not.
137 self.min_lon, self.min_lat, self.max_lon, self.max_lat = @bbox.to_a.collect(&:round) if bbox.complete?
141 # the number of elements is also passed in so that we can ensure that
142 # a single changeset doesn't contain too many elements.
143 def add_changes!(elements)
144 self.num_changes += elements
150 changeset_tags.each do |tag|
159 def add_tag_keyval(k, v)
162 # duplicate tags are now forbidden, so we can't allow values
163 # in the hash to be overwritten.
164 raise OSM::APIDuplicateTagsError.new("changeset", id, k) if @tags.include? k
170 # do the changeset update and the changeset tags update in the
171 # same transaction to ensure consistency.
172 Changeset.transaction do
176 ChangesetTag.where(:changeset => id).delete_all
179 tag = ChangesetTag.new
180 tag.changeset_id = id
189 # set the auto-close time to be one hour in the future unless
190 # that would make it more than 24h long, in which case clip to
191 # 24h, as this has been decided is a reasonable time limit.
194 self.closed_at = if (closed_at - created_at) > (MAX_TIME_OPEN - IDLE_TIMEOUT)
195 created_at + MAX_TIME_OPEN
197 Time.now.utc + IDLE_TIMEOUT
203 # update this instance from another instance given and the user who is
204 # doing the updating. note that this method is not for updating the
205 # bounding box, only the tags of the changeset.
206 def update_from(other, user)
207 # ensure that only the user who opened the changeset may modify it.
208 raise OSM::APIUserChangesetMismatchError unless user.id == user_id
210 # can't change a closed changeset
211 raise OSM::APIChangesetAlreadyClosedError, self unless open?
213 # copy the other's tags
214 self.tags = other.tags
223 def unsubscribe(user)
224 subscribers.delete(user)
227 def subscribed?(user)
228 subscribers.exists?(user.id)
232 @size_limit ||= ActiveRecord::Base.connection.select_value(
233 "SELECT api_size_limit($1)", "api_size_limit", [user_id]