Sync: make new purge strategies the new default
This commit is contained in:
parent
4c9c72d057
commit
5b509a1b7c
|
@ -645,18 +645,22 @@ class Sync
|
||||||
}
|
}
|
||||||
|
|
||||||
$noAction = array();
|
$noAction = array();
|
||||||
|
foreach ($this->rule->purgeStrategy()->listObjectsToPurge() as $key) {
|
||||||
|
if (array_key_exists($key, $newObjects)) {
|
||||||
|
// Object has been touched, do not delete
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (array_key_exists($key, $this->objects)) {
|
||||||
|
$object = $this->objects[$key];
|
||||||
|
if (! $object->hasBeenModified()) {
|
||||||
|
$object->markForRemoval();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($this->objects as $key => $object) {
|
foreach ($this->objects as $key => $object) {
|
||||||
|
if (! $object->hasBeenModified() && ! $object->shouldBeRemoved()) {
|
||||||
if (array_key_exists($key, $newObjects)) {
|
|
||||||
// Stats?
|
|
||||||
|
|
||||||
} elseif ($object->hasBeenLoadedFromDb() && $this->rule->purge_existing === 'y') {
|
|
||||||
$object->markForRemoval();
|
|
||||||
|
|
||||||
// TODO: this is for stats, preview, summary:
|
|
||||||
// $this->remove[] = $object;
|
|
||||||
} else {
|
|
||||||
$noAction[] = $key;
|
$noAction[] = $key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue