]> git.openstreetmap.org Git - rails.git/blob - app/models/relation.rb
Merge branch 'master' into moderation
[rails.git] / app / models / relation.rb
1 # == Schema Information
2 #
3 # Table name: current_relations
4 #
5 #  id           :integer          not null, primary key
6 #  changeset_id :integer          not null
7 #  timestamp    :datetime         not null
8 #  visible      :boolean          not null
9 #  version      :integer          not null
10 #
11 # Indexes
12 #
13 #  current_relations_timestamp_idx  (timestamp)
14 #
15 # Foreign Keys
16 #
17 #  current_relations_changeset_id_fkey  (changeset_id => changesets.id)
18 #
19
20 class Relation < ActiveRecord::Base
21   require "xml/libxml"
22
23   include ConsistencyValidations
24   include NotRedactable
25   include ObjectMetadata
26
27   self.table_name = "current_relations"
28
29   belongs_to :changeset
30
31   has_many :old_relations, -> { order(:version) }
32
33   has_many :relation_members, -> { order(:sequence_id) }
34   has_many :relation_tags
35
36   has_many :containing_relation_members, :class_name => "RelationMember", :as => :member
37   has_many :containing_relations, :class_name => "Relation", :through => :containing_relation_members, :source => :relation
38
39   validates :id, :uniqueness => true, :presence => { :on => :update },
40                  :numericality => { :on => :update, :integer_only => true }
41   validates :version, :presence => true,
42                       :numericality => { :integer_only => true }
43   validates :changeset_id, :presence => true,
44                            :numericality => { :integer_only => true }
45   validates :timestamp, :presence => true
46   validates :changeset, :associated => true
47   validates :visible, :inclusion => [true, false]
48
49   scope :visible, -> { where(:visible => true) }
50   scope :invisible, -> { where(:visible => false) }
51   scope :nodes, ->(*ids) { joins(:relation_members).where(:current_relation_members => { :member_type => "Node", :member_id => ids.flatten }) }
52   scope :ways, ->(*ids) { joins(:relation_members).where(:current_relation_members => { :member_type => "Way", :member_id => ids.flatten }) }
53   scope :relations, ->(*ids) { joins(:relation_members).where(:current_relation_members => { :member_type => "Relation", :member_id => ids.flatten }) }
54
55   TYPES = %w[node way relation].freeze
56
57   def self.from_xml(xml, create = false)
58     p = XML::Parser.string(xml, :options => XML::Parser::Options::NOERROR)
59     doc = p.parse
60
61     doc.find("//osm/relation").each do |pt|
62       return Relation.from_xml_node(pt, create)
63     end
64     raise OSM::APIBadXMLError.new("node", xml, "XML doesn't contain an osm/relation element.")
65   rescue LibXML::XML::Error, ArgumentError => ex
66     raise OSM::APIBadXMLError.new("relation", xml, ex.message)
67   end
68
69   def self.from_xml_node(pt, create = false)
70     relation = Relation.new
71
72     raise OSM::APIBadXMLError.new("relation", pt, "Version is required when updating") unless create || !pt["version"].nil?
73     relation.version = pt["version"]
74     raise OSM::APIBadXMLError.new("relation", pt, "Changeset id is missing") if pt["changeset"].nil?
75     relation.changeset_id = pt["changeset"]
76
77     unless create
78       raise OSM::APIBadXMLError.new("relation", pt, "ID is required when updating") if pt["id"].nil?
79       relation.id = pt["id"].to_i
80       # .to_i will return 0 if there is no number that can be parsed.
81       # We want to make sure that there is no id with zero anyway
82       raise OSM::APIBadUserInput, "ID of relation cannot be zero when updating." if relation.id.zero?
83     end
84
85     # We don't care about the timestamp nor the visibility as these are either
86     # set explicitly or implicit in the action. The visibility is set to true,
87     # and manually set to false before the actual delete.
88     relation.visible = true
89
90     # Start with no tags
91     relation.tags = {}
92
93     # Add in any tags from the XML
94     pt.find("tag").each do |tag|
95       raise OSM::APIBadXMLError.new("relation", pt, "tag is missing key") if tag["k"].nil?
96       raise OSM::APIBadXMLError.new("relation", pt, "tag is missing value") if tag["v"].nil?
97       relation.add_tag_keyval(tag["k"], tag["v"])
98     end
99
100     # need to initialise the relation members array explicitly, as if this
101     # isn't done for a new relation then @members attribute will be nil,
102     # and the members will be loaded from the database instead of being
103     # empty, as intended.
104     relation.members = []
105
106     pt.find("member").each do |member|
107       # member_type =
108       raise OSM::APIBadXMLError.new("relation", pt, "The #{member['type']} is not allowed only, #{TYPES.inspect} allowed") unless TYPES.include? member["type"]
109       # member_ref = member['ref']
110       # member_role
111       member["role"] ||= "" # Allow  the upload to not include this, in which case we default to an empty string.
112       relation.add_member(member["type"].classify, member["ref"], member["role"])
113     end
114     raise OSM::APIBadUserInput, "Some bad xml in relation" if relation.nil?
115
116     relation
117   end
118
119   def to_xml
120     doc = OSM::API.new.get_xml_doc
121     doc.root << to_xml_node
122     doc
123   end
124
125   def to_xml_node(changeset_cache = {}, user_display_name_cache = {})
126     el = XML::Node.new "relation"
127     el["id"] = id.to_s
128
129     add_metadata_to_xml_node(el, self, changeset_cache, user_display_name_cache)
130
131     relation_members.each do |member|
132       member_el = XML::Node.new "member"
133       member_el["type"] = member.member_type.downcase
134       member_el["ref"] = member.member_id.to_s
135       member_el["role"] = member.member_role
136       el << member_el
137     end
138
139     add_tags_to_xml_node(el, relation_tags)
140
141     el
142   end
143
144   # FIXME: is this really needed?
145   def members
146     @members ||= relation_members.map do |member|
147       [member.member_type, member.member_id, member.member_role]
148     end
149   end
150
151   def tags
152     @tags ||= Hash[relation_tags.collect { |t| [t.k, t.v] }]
153   end
154
155   attr_writer :members
156
157   attr_writer :tags
158
159   def add_member(type, id, role)
160     @members ||= []
161     @members << [type, id.to_i, role]
162   end
163
164   def add_tag_keyval(k, v)
165     @tags ||= {}
166
167     # duplicate tags are now forbidden, so we can't allow values
168     # in the hash to be overwritten.
169     raise OSM::APIDuplicateTagsError.new("relation", id, k) if @tags.include? k
170
171     @tags[k] = v
172   end
173
174   ##
175   # updates the changeset bounding box to contain the bounding box of
176   # the element with given +type+ and +id+. this only works with nodes
177   # and ways at the moment, as they're the only elements to respond to
178   # the :bbox call.
179   def update_changeset_element(type, id)
180     element = Kernel.const_get(type.capitalize).find(id)
181     changeset.update_bbox! element.bbox
182   end
183
184   def delete_with_history!(new_relation, user)
185     raise OSM::APIAlreadyDeletedError.new("relation", new_relation.id) unless visible
186
187     # need to start the transaction here, so that the database can
188     # provide repeatable reads for the used-by checks. this means it
189     # shouldn't be possible to get race conditions.
190     Relation.transaction do
191       lock!
192       check_consistency(self, new_relation, user)
193       # This will check to see if this relation is used by another relation
194       rel = RelationMember.joins(:relation).find_by("visible = ? AND member_type = 'Relation' and member_id = ? ", true, id)
195       raise OSM::APIPreconditionFailedError, "The relation #{new_relation.id} is used in relation #{rel.relation.id}." unless rel.nil?
196
197       self.changeset_id = new_relation.changeset_id
198       self.tags = {}
199       self.members = []
200       self.visible = false
201       save_with_history!
202     end
203   end
204
205   def update_from(new_relation, user)
206     Relation.transaction do
207       lock!
208       check_consistency(self, new_relation, user)
209       raise OSM::APIPreconditionFailedError, "Cannot update relation #{id}: data or member data is invalid." unless new_relation.preconditions_ok?(members)
210       self.changeset_id = new_relation.changeset_id
211       self.changeset = new_relation.changeset
212       self.tags = new_relation.tags
213       self.members = new_relation.members
214       self.visible = true
215       save_with_history!
216     end
217   end
218
219   def create_with_history(user)
220     check_create_consistency(self, user)
221     raise OSM::APIPreconditionFailedError, "Cannot create relation: data or member data is invalid." unless preconditions_ok?
222     self.version = 0
223     self.visible = true
224     save_with_history!
225   end
226
227   def preconditions_ok?(good_members = [])
228     # These are hastables that store an id in the index of all
229     # the nodes/way/relations that have already been added.
230     # If the member is valid and visible then we add it to the
231     # relevant hash table, with the value true as a cache.
232     # Thus if you have nodes with the ids of 50 and 1 already in the
233     # relation, then the hash table nodes would contain:
234     # => {50=>true, 1=>true}
235     elements = { :node => {}, :way => {}, :relation => {} }
236
237     # pre-set all existing members to good
238     good_members.each { |m| elements[m[0].downcase.to_sym][m[1]] = true }
239
240     members.each do |m|
241       # find the hash for the element type or die
242       hash = elements[m[0].downcase.to_sym]
243       return false unless hash
244
245       # unless its in the cache already
246       next if hash.key? m[1]
247
248       # use reflection to look up the appropriate class
249       model = Kernel.const_get(m[0].capitalize)
250       # get the element with that ID. and, if found, lock the element to
251       # ensure it can't be deleted until after the current transaction
252       # commits.
253       element = model.lock("for share").find_by(:id => m[1])
254
255       # and check that it is OK to use.
256       raise OSM::APIPreconditionFailedError, "Relation with id #{id} cannot be saved due to #{m[0]} with id #{m[1]}" unless element && element.visible? && element.preconditions_ok?
257       hash[m[1]] = true
258     end
259
260     true
261   end
262
263   ##
264   # if any members are referenced by placeholder IDs (i.e: negative) then
265   # this calling this method will fix them using the map from placeholders
266   # to IDs +id_map+.
267   def fix_placeholders!(id_map, placeholder_id = nil)
268     members.map! do |type, id, role|
269       old_id = id.to_i
270       if old_id < 0
271         new_id = id_map[type.downcase.to_sym][old_id]
272         raise OSM::APIBadUserInput, "Placeholder #{type} not found for reference #{old_id} in relation #{self.id.nil? ? placeholder_id : self.id}." if new_id.nil?
273         [type, new_id, role]
274       else
275         [type, id, role]
276       end
277     end
278   end
279
280   private
281
282   def save_with_history!
283     t = Time.now.getutc
284
285     self.version += 1
286     self.timestamp = t
287
288     Relation.transaction do
289       # have to be a little bit clever here - to detect if any tags
290       # changed then we have to monitor their before and after state.
291       tags_changed = false
292
293       # clone the object before saving it so that the original is
294       # still marked as dirty if we retry the transaction
295       clone.save!
296
297       tags = self.tags.clone
298       relation_tags.each do |old_tag|
299         key = old_tag.k
300         # if we can match the tags we currently have to the list
301         # of old tags, then we never set the tags_changed flag. but
302         # if any are different then set the flag and do the DB
303         # update.
304         if tags.key? key
305           tags_changed |= (old_tag.v != tags[key])
306
307           # remove from the map, so that we can expect an empty map
308           # at the end if there are no new tags
309           tags.delete key
310
311         else
312           # this means a tag was deleted
313           tags_changed = true
314         end
315       end
316       # if there are left-over tags then they are new and will have to
317       # be added.
318       tags_changed |= !tags.empty?
319       RelationTag.where(:relation_id => id).delete_all
320       self.tags.each do |k, v|
321         tag = RelationTag.new
322         tag.relation_id = id
323         tag.k = k
324         tag.v = v
325         tag.save!
326       end
327
328       # same pattern as before, but this time we're collecting the
329       # changed members in an array, as the bounding box updates for
330       # elements are per-element, not blanked on/off like for tags.
331       changed_members = []
332       members = self.members.clone
333       relation_members.each do |old_member|
334         key = [old_member.member_type, old_member.member_id, old_member.member_role]
335         i = members.index key
336         if i.nil?
337           changed_members << key
338         else
339           members.delete_at i
340         end
341       end
342       # any remaining members must be new additions
343       changed_members += members
344
345       # update the members. first delete all the old members, as the new
346       # members may be in a different order and i don't feel like implementing
347       # a longest common subsequence algorithm to optimise this.
348       members = self.members
349       RelationMember.where(:relation_id => id).delete_all
350       members.each_with_index do |m, i|
351         mem = RelationMember.new
352         mem.relation_id = id
353         mem.sequence_id = i
354         mem.member_type = m[0]
355         mem.member_id = m[1]
356         mem.member_role = m[2]
357         mem.save!
358       end
359
360       old_relation = OldRelation.from_relation(self)
361       old_relation.timestamp = t
362       old_relation.save_with_dependencies!
363
364       # update the bbox of the changeset and save it too.
365       # discussion on the mailing list gave the following definition for
366       # the bounding box update procedure of a relation:
367       #
368       # adding or removing nodes or ways from a relation causes them to be
369       # added to the changeset bounding box. adding a relation member or
370       # changing tag values causes all node and way members to be added to the
371       # bounding box. this is similar to how the map call does things and is
372       # reasonable on the assumption that adding or removing members doesn't
373       # materially change the rest of the relation.
374       any_relations =
375         changed_members.collect { |_id, type| type == "relation" }
376                        .inject(false) { |acc, elem| acc || elem }
377
378       update_members = if tags_changed || any_relations
379                          # add all non-relation bounding boxes to the changeset
380                          # FIXME: check for tag changes along with element deletions and
381                          # make sure that the deleted element's bounding box is hit.
382                          self.members
383                        else
384                          changed_members
385                        end
386       update_members.each do |type, id, _role|
387         update_changeset_element(type, id) if type != "Relation"
388       end
389
390       # tell the changeset we updated one element only
391       changeset.add_changes! 1
392
393       # save the (maybe updated) changeset bounding box
394       changeset.save!
395     end
396   end
397 end