]> git.openstreetmap.org Git - rails.git/blob - app/models/old_node.rb
Fixing review comments
[rails.git] / app / models / old_node.rb
1 class OldNode < ActiveRecord::Base
2   include GeoRecord
3   include ConsistencyValidations
4
5   self.table_name = "nodes"
6   self.primary_keys = "node_id", "version"
7
8   # note this needs to be included after the table name changes, or
9   # the queries generated by Redactable will use the wrong table name.
10   include Redactable
11
12   validates_presence_of :changeset_id, :timestamp
13   validates_inclusion_of :visible, :in => [ true, false ]
14   validates_numericality_of :latitude, :longitude
15   validate :validate_position
16   validates_associated :changeset
17
18   belongs_to :changeset
19   belongs_to :redaction
20   belongs_to :current_node, :class_name => "Node", :foreign_key => "node_id"
21
22   def validate_position
23     errors.add(:base, "Node is not in the world") unless in_world?
24   end
25
26   def self.from_node(node)
27     old_node = OldNode.new
28     old_node.latitude = node.latitude
29     old_node.longitude = node.longitude
30     old_node.visible = node.visible
31     old_node.tags = node.tags
32     old_node.timestamp = node.timestamp
33     old_node.changeset_id = node.changeset_id
34     old_node.node_id = node.id
35     old_node.version = node.version
36     return old_node
37   end
38   
39   def to_xml
40     doc = OSM::API.new.get_xml_doc
41     doc.root << to_xml_node()
42     return doc
43   end
44
45   def to_xml_node
46     el1 = XML::Node.new 'node'
47     el1['id'] = self.node_id.to_s
48     el1['lat'] = self.lat.to_s
49     el1['lon'] = self.lon.to_s
50     el1['changeset'] = self.changeset.id.to_s
51     if self.changeset.user.data_public?
52       el1['user'] = self.changeset.user.display_name
53       el1['uid'] = self.changeset.user.id.to_s
54     end
55
56     self.tags.each do |k,v|
57       el2 = XML::Node.new('tag')
58       el2['k'] = k.to_s
59       el2['v'] = v.to_s
60       el1 << el2
61     end
62
63     el1['visible'] = self.visible.to_s
64     el1['timestamp'] = self.timestamp.xmlschema
65     el1['version'] = self.version.to_s
66     return el1
67   end
68
69   def save_with_dependencies!
70     save!
71     #not sure whats going on here
72     clear_aggregation_cache
73     clear_association_cache
74     #ok from here
75     @attributes.update(OldNode.where(:node_id => self.node_id, :timestamp => self.timestamp, :version => self.version).first.instance_variable_get('@attributes'))
76    
77     self.tags.each do |k,v|
78       tag = OldNodeTag.new
79       tag.k = k
80       tag.v = v
81       tag.node_id = self.node_id
82       tag.version = self.version
83       tag.save!
84     end
85   end
86
87   def tags
88     unless @tags
89       @tags = Hash.new
90       OldNodeTag.where(:node_id => self.node_id, :version => self.version).each do |tag|
91         @tags[tag.k] = tag.v
92       end
93     end
94     @tags = Hash.new unless @tags
95     @tags
96   end
97
98   def tags=(t)
99     @tags = t 
100   end
101
102   def tags_as_hash 
103     return self.tags
104   end 
105  
106   # Pretend we're not in any ways 
107   def ways 
108     return [] 
109   end 
110  
111   # Pretend we're not in any relations 
112   def containing_relation_members 
113     return [] 
114   end 
115
116   # check whether this element is the latest version - that is,
117   # has the same version as its "current" counterpart.
118   def is_latest_version?
119     current_node.version == self.version
120   end
121 end