1 class Node < ActiveRecord::Base
6 set_table_name 'current_nodes'
8 validates_presence_of :user_id, :timestamp
9 validates_inclusion_of :visible, :in => [ true, false ]
10 validates_numericality_of :latitude, :longitude
11 validate :validate_position
15 has_many :old_nodes, :foreign_key => :id
18 has_many :ways, :through => :way_nodes
20 has_many :old_way_nodes
21 has_many :ways_via_history, :class_name=> "Way", :through => :old_way_nodes, :source => :way
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)
69 doc.find('//osm/node').each do |pt|
70 node.lat = pt['lat'].to_f
71 node.lon = pt['lon'].to_f
73 return nil unless node.in_world?
77 node.id = pt['id'].to_i
81 node.visible = pt['visible'] and pt['visible'] == 'true'
84 node.timestamp = Time.now
87 node.timestamp = Time.parse(pt['timestamp'])
93 pt.find('tag').each do |tag|
94 tags << [tag['k'],tag['v']]
97 node.tags = Tags.join(tags)
106 # Save this node with the appropriate OldNode object to represent it's history.
107 def save_with_history!
109 self.timestamp = Time.now
111 old_node = OldNode.from_node(self)
116 # Turn this Node in to a complete OSM XML object with <osm> wrapper
118 doc = OSM::API.new.get_xml_doc
119 doc.root << to_xml_node()
123 # Turn this Node in to an XML Node without the <osm> wrapper.
124 def to_xml_node(user_display_name_cache = nil)
125 el1 = XML::Node.new 'node'
126 el1['id'] = self.id.to_s
127 el1['lat'] = self.lat.to_s
128 el1['lon'] = self.lon.to_s
130 user_display_name_cache = {} if user_display_name_cache.nil?
132 if user_display_name_cache and user_display_name_cache.key?(self.user_id)
133 # use the cache if available
134 elsif self.user.data_public?
135 user_display_name_cache[self.user_id] = self.user.display_name
137 user_display_name_cache[self.user_id] = nil
140 el1['user'] = user_display_name_cache[self.user_id] unless user_display_name_cache[self.user_id].nil?
142 Tags.split(self.tags) do |k,v|
143 el2 = XML::Node.new('tag')
149 el1['visible'] = self.visible.to_s
150 el1['timestamp'] = self.timestamp.xmlschema
154 # Return the node's tags as a Hash of keys and their values
157 Tags.split(self.tags) do |k,v|