]> git.openstreetmap.org Git - rails.git/blob - app/models/old_way.rb
Merge remote-tracking branch 'upstream/pull/4826'
[rails.git] / app / models / old_way.rb
1 # == Schema Information
2 #
3 # Table name: ways
4 #
5 #  way_id       :bigint(8)        not null, primary key
6 #  changeset_id :bigint(8)        not null
7 #  timestamp    :datetime         not null
8 #  version      :bigint(8)        not null, primary key
9 #  visible      :boolean          default(TRUE), not null
10 #  redaction_id :integer
11 #
12 # Indexes
13 #
14 #  ways_changeset_id_idx  (changeset_id)
15 #  ways_timestamp_idx     (timestamp)
16 #
17 # Foreign Keys
18 #
19 #  ways_changeset_id_fkey  (changeset_id => changesets.id)
20 #  ways_redaction_id_fkey  (redaction_id => redactions.id)
21 #
22
23 class OldWay < ApplicationRecord
24   self.table_name = "ways"
25
26   # NOTE: this needs to be included after the table name changes, or
27   # the queries generated by Redactable will use the wrong table name.
28   include Redactable
29
30   belongs_to :changeset
31   belongs_to :redaction, :optional => true
32   belongs_to :current_way, :class_name => "Way", :foreign_key => "way_id", :inverse_of => :old_ways
33
34   has_many :old_nodes, :class_name => "OldWayNode", :query_constraints => [:way_id, :version], :inverse_of => :old_way
35   has_many :old_tags, :class_name => "OldWayTag", :query_constraints => [:way_id, :version], :inverse_of => :old_way
36
37   validates :changeset, :associated => true
38   validates :timestamp, :presence => true
39   validates :visible, :inclusion => [true, false]
40
41   def self.from_way(way)
42     old_way = OldWay.new
43     old_way.visible = way.visible
44     old_way.changeset_id = way.changeset_id
45     old_way.timestamp = way.timestamp
46     old_way.way_id = way.id
47     old_way.version = way.version
48     old_way.nds = way.nds
49     old_way.tags = way.tags
50     old_way
51   end
52
53   def save_with_dependencies!
54     save!
55
56     tags.each do |k, v|
57       tag = OldWayTag.new
58       tag.k = k
59       tag.v = v
60       tag.way_id = way_id
61       tag.version = version
62       tag.save!
63     end
64
65     sequence = 1
66     nds.each do |n|
67       nd = OldWayNode.new
68       nd.id = [way_id, version, sequence]
69       nd.node_id = n
70       nd.save!
71       sequence += 1
72     end
73   end
74
75   def nds
76     @nds ||= old_nodes.order(:sequence_id).collect(&:node_id)
77   end
78
79   def tags
80     @tags ||= old_tags.to_h { |t| [t.k, t.v] }
81   end
82
83   attr_writer :nds, :tags
84
85   # Temporary method to match interface to ways
86   def way_nodes
87     old_nodes
88   end
89
90   # Pretend we're not in any relations
91   def containing_relation_members
92     []
93   end
94
95   # check whether this element is the latest version - that is,
96   # has the same version as its "current" counterpart.
97   def latest_version?
98     current_way.version == version
99   end
100 end