1 class Node < ActiveRecord::Base
5 include ConsistencyValidations
7 set_table_name 'current_nodes'
9 validates_presence_of :changeset_id, :timestamp
10 validates_inclusion_of :visible, :in => [ true, false ]
11 validates_numericality_of :latitude, :longitude
12 validate :validate_position
16 has_many :old_nodes, :foreign_key => :id
19 has_many :ways, :through => :way_nodes
21 has_many :node_tags, :foreign_key => :id
23 has_many :old_way_nodes
24 has_many :ways_via_history, :class_name=> "Way", :through => :old_way_nodes, :source => :way
26 has_many :containing_relation_members, :class_name => "RelationMember", :as => :member
27 has_many :containing_relations, :class_name => "Relation", :through => :containing_relation_members, :source => :relation, :extend => ObjectFinder
29 # Sanity check the latitude and longitude and add an error if it's broken
31 errors.add_to_base("Node is not in the world") unless in_world?
35 # Search for nodes matching tags within bounding_box
37 # Also adheres to limitations such as within max_number_of_nodes
39 def self.search(bounding_box, tags = {})
40 min_lon, min_lat, max_lon, max_lat = *bounding_box
41 # @fixme a bit of a hack to search for only visible nodes
42 # couldn't think of another to add to tags condition
43 #conditions_hash = tags.merge({ 'visible' => 1 })
45 # using named placeholders http://www.robbyonrails.com/articles/2005/10/21/using-named-placeholders-in-ruby
49 #conditions_hash.each do |key,value|
50 # keys << "#{key} = :#{key}"
51 # values[key.to_sym] = value
53 #conditions = keys.join(' AND ')
55 find_by_area(min_lat, min_lon, max_lat, max_lon,
56 :conditions => 'visible = 1',
57 :limit => APP_CONFIG['max_number_of_nodes']+1)
60 # Read in xml as text and return it's Node object representation
61 def self.from_xml(xml, create=false)
67 doc.find('//osm/node').each do |pt|
68 return Node.from_xml_node(pt, create)
75 def self.from_xml_node(pt, create=false)
78 node.version = pt['version']
79 node.lat = pt['lat'].to_f
80 node.lon = pt['lon'].to_f
81 node.changeset_id = pt['changeset'].to_i
83 return nil unless node.in_world?
87 node.id = pt['id'].to_i
91 node.visible = pt['visible'] and pt['visible'] == 'true'
94 node.timestamp = Time.now
97 node.timestamp = Time.parse(pt['timestamp'])
103 pt.find('tag').each do |tag|
104 node.add_tag_key_val(tag['k'],tag['v'])
110 def save_with_history!
119 NodeTag.delete_all(['id = ?', self.id])
129 old_node = OldNode.from_node(self)
130 old_node.timestamp = t
131 old_node.save_with_dependencies!
135 # Should probably be renamed delete_from to come in line with update
136 def delete_with_history(new_node, user)
138 check_consistency(self, new_node, user)
139 if WayNode.find(:first, :joins => "INNER JOIN current_ways ON current_ways.id = current_way_nodes.id", :conditions => [ "current_ways.visible = 1 AND current_way_nodes.node_id = ?", self.id ])
140 raise OSM::APIPreconditionFailedError.new
141 elsif RelationMember.find(:first, :joins => "INNER JOIN current_relations ON current_relations.id=current_relation_members.id", :conditions => [ "visible = 1 AND member_type='node' and member_id=?", self.id])
142 raise OSM::APIPreconditionFailedError.new
144 self.changeset_id = new_node.changeset_id
149 raise OSM::APIAlreadyDeletedError.new
153 def update_from(new_node, user)
154 check_consistency(self, new_node, user)
156 # FIXME logic needs to be double checked
157 self.changeset_id = new_node.changeset_id
158 self.latitude = new_node.latitude
159 self.longitude = new_node.longitude
160 self.tags = new_node.tags
166 doc = OSM::API.new.get_xml_doc
167 doc.root << to_xml_node()
171 def to_xml_node(user_display_name_cache = nil)
172 el1 = XML::Node.new 'node'
173 el1['id'] = self.id.to_s
174 el1['lat'] = self.lat.to_s
175 el1['lon'] = self.lon.to_s
176 el1['version'] = self.version.to_s
177 el1['changeset'] = self.changeset_id.to_s
179 user_display_name_cache = {} if user_display_name_cache.nil?
181 if user_display_name_cache and user_display_name_cache.key?(self.changeset.user_id)
182 # use the cache if available
183 elsif self.changeset.user.data_public?
184 user_display_name_cache[self.changeset.user_id] = self.changeset.user.display_name
186 user_display_name_cache[self.changeset.user_id] = nil
189 el1['user'] = user_display_name_cache[self.changeset.user_id] unless user_display_name_cache[self.changeset.user_id].nil?
191 self.tags.each do |k,v|
192 el2 = XML::Node.new('tag')
198 el1['visible'] = self.visible.to_s
199 el1['timestamp'] = self.timestamp.xmlschema
210 self.node_tags.each do |tag|
221 def add_tag_key_val(k,v)
222 @tags = Hash.new unless @tags