]> git.openstreetmap.org Git - rails.git/blob - app/models/way.rb
Refactor generation of object metadata in API calls
[rails.git] / app / models / way.rb
1 class Way < ActiveRecord::Base
2   require 'xml/libxml'
3   
4   include ConsistencyValidations
5   include NotRedactable
6   include ObjectMetadata
7
8   self.table_name = "current_ways"
9   
10   belongs_to :changeset
11
12   has_many :old_ways, -> { order(:version) }
13
14   has_many :way_nodes, -> { order(:sequence_id) }
15   has_many :nodes, -> { order("sequence_id") }, :through => :way_nodes
16
17   has_many :way_tags
18
19   has_many :containing_relation_members, :class_name => "RelationMember", :as => :member
20   has_many :containing_relations, :class_name => "Relation", :through => :containing_relation_members, :source => :relation, :extend => ObjectFinder
21
22   validates_presence_of :id, :on => :update
23   validates_presence_of :changeset_id,:version,  :timestamp
24   validates_uniqueness_of :id
25   validates_inclusion_of :visible, :in => [ true, false ]
26   validates_numericality_of :changeset_id, :version, :integer_only => true
27   validates_numericality_of :id, :on => :update, :integer_only => true
28   validates_associated :changeset
29
30   scope :visible, -> { where(:visible => true) }
31     scope :invisible, -> { where(:visible => false) }
32
33   # Read in xml as text and return it's Way object representation
34   def self.from_xml(xml, create=false)
35     begin
36       p = XML::Parser.string(xml)
37       doc = p.parse
38
39       doc.find('//osm/way').each do |pt|
40         return Way.from_xml_node(pt, create)
41       end
42       raise OSM::APIBadXMLError.new("node", xml, "XML doesn't contain an osm/way element.")
43     rescue LibXML::XML::Error, ArgumentError => ex
44       raise OSM::APIBadXMLError.new("way", xml, ex.message)
45     end
46   end
47
48   def self.from_xml_node(pt, create=false)
49     way = Way.new
50
51     raise OSM::APIBadXMLError.new("way", pt, "Version is required when updating") unless create or not pt['version'].nil?
52     way.version = pt['version']
53     raise OSM::APIBadXMLError.new("way", pt, "Changeset id is missing") if pt['changeset'].nil?
54     way.changeset_id = pt['changeset']
55
56     unless create
57       raise OSM::APIBadXMLError.new("way", pt, "ID is required when updating") if pt['id'].nil?
58       way.id = pt['id'].to_i
59       # .to_i will return 0 if there is no number that can be parsed. 
60       # We want to make sure that there is no id with zero anyway
61       raise OSM::APIBadUserInput.new("ID of way cannot be zero when updating.") if way.id == 0
62     end
63
64     # We don't care about the timestamp nor the visibility as these are either
65     # set explicitly or implicit in the action. The visibility is set to true, 
66     # and manually set to false before the actual delete.
67     way.visible = true
68
69     # Start with no tags
70     way.tags = Hash.new
71
72     # Add in any tags from the XML
73     pt.find('tag').each do |tag|
74       raise OSM::APIBadXMLError.new("way", pt, "tag is missing key") if tag['k'].nil?
75       raise OSM::APIBadXMLError.new("way", pt, "tag is missing value") if tag['v'].nil?
76       way.add_tag_keyval(tag['k'], tag['v'])
77     end
78
79     pt.find('nd').each do |nd|
80       way.add_nd_num(nd['ref'])
81     end
82
83     return way
84   end
85
86   # Find a way given it's ID, and in a single SQL call also grab its nodes
87   #
88   
89   # You can't pull in all the tags too unless we put a sequence_id on the way_tags table and have a multipart key
90   def self.find_eager(id)
91     way = Way.find(id, :include => {:way_nodes => :node})
92     #If waytag had a multipart key that was real, you could do this:
93     #way = Way.find(id, :include => [:way_tags, {:way_nodes => :node}])
94   end
95
96   # Find a way given it's ID, and in a single SQL call also grab its nodes and tags
97   def to_xml
98     doc = OSM::API.new.get_xml_doc
99     doc.root << to_xml_node()
100     return doc
101   end
102
103   def to_xml_node(visible_nodes = nil, changeset_cache = {}, user_display_name_cache = {})
104     el1 = XML::Node.new 'way'
105     el1['id'] = self.id.to_s
106     add_metadata_to_xml_node(el1, self, changeset_cache, user_display_name_cache)
107
108     # make sure nodes are output in sequence_id order
109     ordered_nodes = []
110     self.way_nodes.each do |nd|
111       if visible_nodes
112         # if there is a list of visible nodes then use that to weed out deleted nodes
113         if visible_nodes[nd.node_id]
114           ordered_nodes[nd.sequence_id] = nd.node_id.to_s
115         end
116       else
117         # otherwise, manually go to the db to check things
118         if nd.node and nd.node.visible?
119           ordered_nodes[nd.sequence_id] = nd.node_id.to_s
120         end
121       end
122     end
123
124     ordered_nodes.each do |nd_id|
125       if nd_id and nd_id != '0'
126         e = XML::Node.new 'nd'
127         e['ref'] = nd_id
128         el1 << e
129       end
130     end
131
132     self.way_tags.each do |tag|
133       e = XML::Node.new 'tag'
134       e['k'] = tag.k
135       e['v'] = tag.v
136       el1 << e
137     end
138     return el1
139   end 
140
141   def nds
142     unless @nds
143       @nds = Array.new
144       self.way_nodes.each do |nd|
145         @nds += [nd.node_id]
146       end
147     end
148     @nds
149   end
150
151   def tags
152     unless @tags
153       @tags = {}
154       self.way_tags.each do |tag|
155         @tags[tag.k] = tag.v
156       end
157     end
158     @tags
159   end
160
161   def nds=(s)
162     @nds = s
163   end
164
165   def tags=(t)
166     @tags = t
167   end
168
169   def add_nd_num(n)
170     @nds = Array.new unless @nds
171     @nds << n.to_i
172   end
173
174   def add_tag_keyval(k, v)
175     @tags = Hash.new unless @tags
176
177     # duplicate tags are now forbidden, so we can't allow values
178     # in the hash to be overwritten.
179     raise OSM::APIDuplicateTagsError.new("way", self.id, k) if @tags.include? k
180
181     @tags[k] = v
182   end
183
184   ##
185   # the integer coords (i.e: unscaled) bounding box of the way, assuming
186   # straight line segments.
187   def bbox
188     lons = nodes.collect { |n| n.longitude }
189     lats = nodes.collect { |n| n.latitude }
190     BoundingBox.new(lons.min, lats.min, lons.max, lats.max)
191   end
192
193   def update_from(new_way, user)
194     Way.transaction do
195       self.lock!
196       check_consistency(self, new_way, user)
197       unless new_way.preconditions_ok?(self.nds)
198         raise OSM::APIPreconditionFailedError.new("Cannot update way #{self.id}: data is invalid.")
199       end
200       
201       self.changeset_id = new_way.changeset_id
202       self.changeset = new_way.changeset
203       self.tags = new_way.tags
204       self.nds = new_way.nds
205       self.visible = true
206       save_with_history!
207     end
208   end
209
210   def create_with_history(user)
211     check_create_consistency(self, user)
212     unless self.preconditions_ok?
213       raise OSM::APIPreconditionFailedError.new("Cannot create way: data is invalid.")
214     end
215     self.version = 0
216     self.visible = true
217     save_with_history!
218   end
219
220   def preconditions_ok?(old_nodes = [])
221     return false if self.nds.empty?
222     if self.nds.length > MAX_NUMBER_OF_WAY_NODES
223       raise OSM::APITooManyWayNodesError.new(self.id, self.nds.length, MAX_NUMBER_OF_WAY_NODES)
224     end
225
226     # check only the new nodes, for efficiency - old nodes having been checked last time and can't
227     # be deleted when they're in-use.
228     new_nds = (self.nds - old_nodes).sort.uniq
229
230     unless new_nds.empty?
231       db_nds = Node.where(:id => new_nds, :visible => true)
232
233       if db_nds.length < new_nds.length
234         missing = new_nds - db_nds.collect { |n| n.id }
235         raise OSM::APIPreconditionFailedError.new("Way #{self.id} requires the nodes with id in (#{missing.join(',')}), which either do not exist, or are not visible.")
236       end
237     end
238
239     return true
240   end
241
242   def delete_with_history!(new_way, user)
243     unless self.visible
244       raise OSM::APIAlreadyDeletedError.new("way", new_way.id)
245     end
246     
247     # need to start the transaction here, so that the database can 
248     # provide repeatable reads for the used-by checks. this means it
249     # shouldn't be possible to get race conditions.
250     Way.transaction do
251       self.lock!
252       check_consistency(self, new_way, user)
253       rels = Relation.joins(:relation_members).where(:visible => true, :current_relation_members => { :member_type => "Way", :member_id => id }).order(:id)
254       raise OSM::APIPreconditionFailedError.new("Way #{self.id} is still used by relations #{rels.collect { |r| r.id }.join(",")}.") unless rels.empty?
255
256       self.changeset_id = new_way.changeset_id
257       self.changeset = new_way.changeset
258
259       self.tags = []
260       self.nds = []
261       self.visible = false
262       save_with_history!
263     end
264   end
265
266   # Temporary method to match interface to nodes
267   def tags_as_hash
268     return self.tags
269   end
270
271   ##
272   # if any referenced nodes are placeholder IDs (i.e: are negative) then
273   # this calling this method will fix them using the map from placeholders 
274   # to IDs +id_map+. 
275   def fix_placeholders!(id_map, placeholder_id = nil)
276     self.nds.map! do |node_id|
277       if node_id < 0
278         new_id = id_map[:node][node_id]
279         raise OSM::APIBadUserInput.new("Placeholder node not found for reference #{node_id} in way #{self.id.nil? ? placeholder_id : self.id}") if new_id.nil?
280         new_id
281       else
282         node_id
283       end
284     end
285   end
286
287   private
288   
289   def save_with_history!
290     t = Time.now.getutc
291
292     # update the bounding box, note that this has to be done both before 
293     # and after the save, so that nodes from both versions are included in the 
294     # bbox. we use a copy of the changeset so that it isn't reloaded
295     # later in the save.
296     cs = self.changeset
297     cs.update_bbox!(bbox) unless nodes.empty?
298
299     Way.transaction do
300       self.version += 1
301       self.timestamp = t
302       self.save!
303
304       tags = self.tags
305       WayTag.delete_all(:way_id => self.id)
306       tags.each do |k,v|
307         tag = WayTag.new
308         tag.way_id = self.id
309         tag.k = k
310         tag.v = v
311         tag.save!
312       end
313
314       nds = self.nds
315       WayNode.delete_all(:way_id => self.id)
316       sequence = 1
317       nds.each do |n|
318         nd = WayNode.new
319         nd.id = [self.id, sequence]
320         nd.node_id = n
321         nd.save!
322         sequence += 1
323       end
324
325       old_way = OldWay.from_way(self)
326       old_way.timestamp = t
327       old_way.save_with_dependencies!
328
329       # reload the way so that the nodes array points to the correct
330       # new set of nodes.
331       self.reload
332
333       # update and commit the bounding box, now that way nodes 
334       # have been updated and we're in a transaction.
335       cs.update_bbox!(bbox) unless nodes.empty?
336
337       # tell the changeset we updated one element only
338       cs.add_changes! 1
339
340       cs.save!
341     end
342   end
343 end