]> git.openstreetmap.org Git - rails.git/commitdiff
be a bit more specific when a way is a member of a relation. Actually return an error...
authorShaun McDonald <shaun@shaunmcdonald.me.uk>
Tue, 5 May 2009 17:07:06 +0000 (17:07 +0000)
committerShaun McDonald <shaun@shaunmcdonald.me.uk>
Tue, 5 May 2009 17:07:06 +0000 (17:07 +0000)
app/models/relation.rb
app/models/way.rb

index 09143294ceb48fab466f9780a5f34fb7706d6daf..787c167197abf5add81f61df51c631f42047bbfe 100644 (file)
@@ -288,7 +288,6 @@ class Relation < ActiveRecord::Base
     elements = { :node => Hash.new, :way => Hash.new, :relation => Hash.new }
     self.members.each do |m|
       # find the hash for the element type or die
-      logger.debug m[0]
       hash = elements[m[0].downcase.to_sym] or return false
       # unless its in the cache already
       unless hash.key? m[1]
@@ -299,6 +298,7 @@ class Relation < ActiveRecord::Base
 
         # and check that it is OK to use.
         unless element and element.visible? and element.preconditions_ok?
+          raise OSM::APIPreconditionFailedError.new("Relation with id #{self.id} cannot be saved due to #{m[0]} with id #{element.id}")
           return false
         end
         hash[m[1]] = true
index 64b3991336c7d9bf21664f4c0979405550a805ab..1480361e0b4937140cb0f3feb8ad8233db2d5eae 100644 (file)
@@ -251,18 +251,17 @@ class Way < ActiveRecord::Base
     # shouldn't be possible to get race conditions.
     Way.transaction do
       check_consistency(self, new_way, user)
-      if RelationMember.find(:first, :joins => :relation,
+      rel = RelationMember.find(:first, :joins => :relation,
                              :conditions => [ "visible = ? AND member_type='Way' and member_id=? ", true, self.id])
-        raise OSM::APIPreconditionFailedError.new("You need to make sure that the way with id: #{self.id} is not a member of a relation.")
-      else
-        self.changeset_id = new_way.changeset_id
-        self.changeset = new_way.changeset
-
-        self.tags = []
-        self.nds = []
-        self.visible = false
-        save_with_history!
-      end
+      raise OSM::APIPreconditionFailedError.new("You need to make sure that the way with id: #{self.id} is not a member of the relation with id #{rel.id}.") if rel
+      
+      self.changeset_id = new_way.changeset_id
+      self.changeset = new_way.changeset
+
+      self.tags = []
+      self.nds = []
+      self.visible = false
+      save_with_history!
     end
   end