X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/72e59b49fa0512e5c7d16217edce62225094ffe3..8090e086daad67eac711ad6fd6a5eba6f28d44fd:/app/models/old_way.rb diff --git a/app/models/old_way.rb b/app/models/old_way.rb index 474c3e02b..bc114d73a 100644 --- a/app/models/old_way.rb +++ b/app/models/old_way.rb @@ -1,10 +1,13 @@ class OldWay < ActiveRecord::Base include ConsistencyValidations - include Redactable self.table_name = "ways" self.primary_keys = "way_id", "version" + # note this needs to be included after the table name changes, or + # the queries generated by Redactable will use the wrong table name. + include Redactable + belongs_to :changeset belongs_to :redaction belongs_to :current_way, :class_name => "Way", :foreign_key => "way_id" @@ -101,26 +104,21 @@ class OldWay < ActiveRecord::Base el1['version'] = self.version.to_s el1['changeset'] = self.changeset.id.to_s - if self.redacted? - el1['redacted'] = self.redaction.title - end + el1['redacted'] = self.redaction.id.to_s if self.redacted? - unless self.redacted? and (@user.nil? or not @user.moderator?) - # If a way is redacted and the user isn't a moderator, only show - # meta-data from this revision, but no real data. - self.old_nodes.each do |nd| # FIXME need to make sure they come back in the right order - e = XML::Node.new 'nd' - e['ref'] = nd.node_id.to_s - el1 << e - end + self.old_nodes.each do |nd| # FIXME need to make sure they come back in the right order + e = XML::Node.new 'nd' + e['ref'] = nd.node_id.to_s + el1 << e + end - self.old_tags.each do |tag| - e = XML::Node.new 'tag' - e['k'] = tag.k - e['v'] = tag.v - el1 << e - end + self.old_tags.each do |tag| + e = XML::Node.new 'tag' + e['k'] = tag.k + e['v'] = tag.v + el1 << e end + return el1 end @@ -143,7 +141,7 @@ class OldWay < ActiveRecord::Base def get_nodes_revert(timestamp) points=[] self.nds.each do |n| - oldnode = OldNode.where('node_id = ? AND timestamp <= ?', n, timestamp).order("timestamp DESC").first + oldnode = OldNode.where('node_id = ? AND timestamp <= ?', n, timestamp).unredacted.order("timestamp DESC").first curnode = Node.find(n) id = n; reuse = curnode.visible if oldnode.lat != curnode.lat or oldnode.lon != curnode.lon or oldnode.tags != curnode.tags then