]> git.openstreetmap.org Git - rails.git/blob - app/models/changeset.rb
Merge remote-tracking branch 'upstream/pull/6919'
[rails.git] / app / models / changeset.rb
1 # frozen_string_literal: true
2
3 # == Schema Information
4 #
5 # Table name: changesets
6 #
7 #  id                     :bigint           not null, primary key
8 #  user_id                :bigint           not null
9 #  created_at             :datetime         not null
10 #  min_lat                :integer
11 #  max_lat                :integer
12 #  min_lon                :integer
13 #  max_lon                :integer
14 #  closed_at              :datetime         not null
15 #  num_changes            :integer          default(0), not null
16 #  num_created_nodes      :integer          default(0), not null
17 #  num_modified_nodes     :integer          default(0), not null
18 #  num_deleted_nodes      :integer          default(0), not null
19 #  num_created_ways       :integer          default(0), not null
20 #  num_modified_ways      :integer          default(0), not null
21 #  num_deleted_ways       :integer          default(0), not null
22 #  num_created_relations  :integer          default(0), not null
23 #  num_modified_relations :integer          default(0), not null
24 #  num_deleted_relations  :integer          default(0), not null
25 #
26 # Indexes
27 #
28 #  changesets_bbox_idx                        (min_lat,max_lat,min_lon,max_lon) USING gist
29 #  changesets_closed_at_idx                   (closed_at)
30 #  changesets_created_at_idx                  (created_at)
31 #  changesets_user_id_created_at_idx          (user_id,created_at)
32 #  changesets_user_id_id_idx                  (user_id,id)
33 #  index_changesets_on_user_id_and_closed_at  (user_id,closed_at)
34 #
35 # Foreign Keys
36 #
37 #  changesets_user_id_fkey  (user_id => users.id)
38 #
39
40 class Changeset < ApplicationRecord
41   belongs_to :user, :counter_cache => true
42
43   has_many :changeset_tags
44
45   has_many :nodes
46   has_many :ways
47   has_many :relations
48   has_many :old_nodes
49   has_many :old_ways
50   has_many :old_relations
51
52   has_many :comments, -> { where(:visible => true).order(:created_at) }, :class_name => "ChangesetComment"
53   has_many :subscriptions, :class_name => "ChangesetSubscription"
54   has_many :subscribers, :through => :subscriptions
55
56   validates :id, :uniqueness => true, :presence => { :on => :update },
57                  :numericality => { :on => :update, :only_integer => true }
58   [:num_changes,
59    :num_created_nodes, :num_modified_nodes, :num_deleted_nodes,
60    :num_created_ways, :num_modified_ways, :num_deleted_ways,
61    :num_created_relations, :num_modified_relations, :num_deleted_relations].each do |counter_attribute|
62     validates counter_attribute, :presence => true,
63                                  :numericality => { :only_integer => true,
64                                                     :greater_than_or_equal_to => 0 }
65   end
66   validates :created_at, :closed_at, :presence => true
67   validates :min_lat, :max_lat, :min_lon, :max_lat, :allow_nil => true,
68                                                     :numericality => { :only_integer => true }
69
70   before_save :update_closed_at
71
72   # maximum number of elements allowed in a changeset
73   MAX_ELEMENTS = 10000
74
75   # maximum time a changeset is allowed to be open for.
76   MAX_TIME_OPEN = 1.day
77
78   # idle timeout increment, one hour seems reasonable.
79   IDLE_TIMEOUT = 1.hour
80
81   # Use a method like this, so that we can easily change how we
82   # determine whether a changeset is open, without breaking code in at
83   # least 6 controllers
84   def open?
85     # a changeset is open (that is, it will accept further changes) when
86     # it has not yet run out of time and its capacity is small enough.
87     # note that this may not be a hard limit - due to timing changes and
88     # concurrency it is possible that some changesets may be slightly
89     # longer than strictly allowed or have slightly more changes in them.
90     (closed_at > Time.now.utc) && (num_changes <= MAX_ELEMENTS)
91   end
92
93   def set_closed_time_now
94     self.closed_at = Time.now.utc if open?
95   end
96
97   def self.from_xml(xml, create: false)
98     p = XML::Parser.string(xml, :options => XML::Parser::Options::NOERROR)
99     doc = p.parse
100     pt = doc.find_first("//osm/changeset")
101
102     if pt
103       Changeset.from_xml_node(pt, :create => create)
104     else
105       raise OSM::APIBadXMLError.new("changeset", xml, "XML doesn't contain an osm/changeset element.")
106     end
107   rescue LibXML::XML::Error, ArgumentError => e
108     raise OSM::APIBadXMLError.new("changeset", xml, e.message)
109   end
110
111   def self.from_xml_node(pt, create: false)
112     cs = Changeset.new
113     if create
114       cs.created_at = Time.now.utc
115       # initial close time is 1h ahead, but will be increased on each
116       # modification.
117       cs.closed_at = cs.created_at + IDLE_TIMEOUT
118       # initially we have no changes in a changeset
119       cs.num_changes = 0
120     end
121
122     pt.find("tag").each do |tag|
123       raise OSM::APIBadXMLError.new("changeset", pt, "tag is missing key") if tag["k"].nil?
124       raise OSM::APIBadXMLError.new("changeset", pt, "tag is missing value") if tag["v"].nil?
125
126       cs.add_tag_keyval(tag["k"], tag["v"])
127     end
128
129     cs
130   end
131
132   def visible_subscribers
133     subscribers.visible
134   end
135
136   ##
137   # returns the bounding box of the changeset. it is possible that some
138   # or all of the values will be nil, indicating that they are undefined.
139   def bbox
140     @bbox ||= BoundingBox.new(min_lon, min_lat, max_lon, max_lat)
141   end
142
143   def bbox_valid?
144     bbox.complete?
145   end
146
147   ##
148   # expand the bounding box to include the given bounding box.
149   def update_bbox!(bbox_update)
150     bbox.expand!(bbox_update)
151
152     raise OSM::APISizeLimitExceeded if bbox.linear_size > size_limit
153
154     # update active record. rails 2.1's dirty handling should take care of
155     # whether this object needs saving or not.
156     self.min_lon, self.min_lat, self.max_lon, self.max_lat = @bbox.to_a.collect(&:round) if bbox.complete?
157   end
158
159   ##
160   # the number of elements is also passed in so that we can ensure that
161   # a single changeset doesn't contain too many elements.
162   def add_changes!(elements)
163     self.num_changes += elements
164   end
165
166   def tags
167     unless @tags
168       @tags = {}
169       changeset_tags.each do |tag|
170         @tags[tag.k] = tag.v
171       end
172     end
173     @tags
174   end
175
176   attr_writer :tags
177
178   def add_tag_keyval(k, v)
179     @tags ||= {}
180
181     # duplicate tags are now forbidden, so we can't allow values
182     # in the hash to be overwritten.
183     raise OSM::APIDuplicateTagsError.new("changeset", id, k) if @tags.include? k
184
185     @tags[k] = v
186   end
187
188   def save_with_tags!
189     # do the changeset update and the changeset tags update in the
190     # same transaction to ensure consistency.
191     Changeset.transaction do
192       save!
193
194       tags = self.tags
195       ChangesetTag.where(:changeset => id).delete_all
196
197       tags.each do |k, v|
198         tag = ChangesetTag.new
199         tag.changeset_id = id
200         tag.k = k
201         tag.v = v
202         tag.save!
203       end
204     end
205   end
206
207   def comment = tags["comment"].presence
208   def comment_html = comment ? RichText.new("text", comment).to_html : nil
209
210   ##
211   # set the auto-close time to be one hour in the future unless
212   # that would make it more than 24h long, in which case clip to
213   # 24h, as this has been decided is a reasonable time limit.
214   def update_closed_at
215     if open?
216       self.closed_at = if (closed_at - created_at) > (MAX_TIME_OPEN - IDLE_TIMEOUT)
217                          created_at + MAX_TIME_OPEN
218                        else
219                          Time.now.utc + IDLE_TIMEOUT
220                        end
221     end
222   end
223
224   ##
225   # update this instance from another instance given and the user who is
226   # doing the updating. note that this method is not for updating the
227   # bounding box, only the tags of the changeset.
228   def update_from(other, user)
229     # ensure that only the user who opened the changeset may modify it.
230     raise OSM::APIUserChangesetMismatchError unless user.id == user_id
231
232     # can't change a closed changeset
233     raise OSM::APIChangesetAlreadyClosedError, self unless open?
234
235     # copy the other's tags
236     self.tags = other.tags
237
238     save_with_tags!
239   end
240
241   def size_limit
242     @size_limit ||= ActiveRecord::Base.connection.select_value(
243       "SELECT api_size_limit($1)", "api_size_limit", [user_id]
244     )
245   end
246
247   def num_created_elements = num_created_nodes + num_created_ways + num_created_relations
248   def num_modified_elements = num_modified_nodes + num_modified_ways + num_modified_relations
249   def num_deleted_elements = num_deleted_nodes + num_deleted_ways + num_deleted_relations
250
251   def num_changed_nodes = num_created_nodes + num_modified_nodes + num_deleted_nodes
252   def num_changed_ways = num_created_ways + num_modified_ways + num_deleted_ways
253   def num_changed_relations = num_created_relations + num_modified_relations + num_deleted_relations
254
255   def num_type_changes_in_sync?
256     num_changes == num_created_elements + num_modified_elements + num_deleted_elements
257   end
258
259   def actual_num_changed_nodes = num_type_changes_in_sync? ? num_changed_nodes : old_nodes.count
260   def actual_num_changed_ways = num_type_changes_in_sync? ? num_changed_ways : old_ways.count
261   def actual_num_changed_relations = num_type_changes_in_sync? ? num_changed_relations : old_relations.count
262 end