1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
<?php
App::import('Component', 'Transaction');
class RelationRepair extends BEAppModel
{
public $useTable = false;
public function repair($relationName) {
return $this->repairRelation($relationName);
}
private function repairRelation($relationName) {
$relationStats = ClassRegistry::init('RelationStats');
$relationData = $relationStats->getRelation($relationName);
if (empty($relationData)) {
throw new BEditaException('Relation data not found for relation ' . $relationName);
}
$relationInverse = null;
if (!empty($relationData['inverse']) && ($relationData['inverse'] != $relationName) ) {
$relationInverse = $relationData['inverse'];
}
if (empty($relationData) || empty($relationInverse)) {
return 0;
}
$countAllTypesL = $relationStats->getObjectRelationsCount($relationName);
$countAllTypesR = $relationStats->getObjectRelationsCount($relationInverse);
if ($countAllTypesL === $countAllTypesR) {
return 0;
}
if ($countAllTypesL > $countAllTypesR) {
$objRels = $relationStats->getObjectRelationsByName($relationName);
return $this->fixObjectRelations($relationName, $relationInverse, $objRels);
}
$objRels = $relationStats->getObjectRelationsByName($relationInverse);
return $this->fixObjectRelations($relationInverse, $relationName, $objRels);
}
private function fixObjectRelations($relationName, $relationInverse, $objRels, $checkInverse = false) {
$fixed = 0;
$objRel = ClassRegistry::init('ObjectRelation');
foreach ($objRels as $relRecord) {
$rc = $relRecord['ObjectRelation'];
if ($relationInverse == null || $objRel->relationExists($rc['object_id'], $rc['id'], $relationInverse)) {
continue;
} else {
if ($rc['object_id'] != $rc['id']) {
$priority = (!empty($rc['priority'])) ? $rc['priority'] : 1;
$params = (!empty($rc['params'])) ? $rc['params'] : array();
if ($checkInverse) {
$relationRightWrong = $objRel->find('first', array(
'conditions' => array(
'id' => $rc['object_id'],
'object_id' => $rc['id'],
'switch' => $relationName
)
));
if (!empty($relationRightWrong)) {
$this->log('Deleting wrong inverse for ' . $relationName . ' object_id: ' . $rc['object_id'] . ' id: ' . $rc['id'] , 'debug');
if (!$objRel->deleteRelation($rc['object_id'], $rc['id'], $relationName, false)) {
throw new BEditaException('error deleting relation for id ' . $rc['id']);
}
if (!empty($relationRightWrong['ObjectRelation']['params'])) {
$params = $relationRightWrong['ObjectRelation']['params'];
}
if (!empty($relationRightWrong['ObjectRelation']['priority'])) {
$priority = $relationRightWrong['ObjectRelation']['priority'];
}
}
}
$this->log('Creating relation record for ' . $relationInverse . ' object_id: ' . $rc['object_id'] . ' id: ' . $rc['id'] , 'debug');
if (!$objRel->createRelation($rc['object_id'], $rc['id'], $relationInverse, $priority, false, $params)) {
throw new BEditaException('error creating relation for id ' . $rc['id']);
}
$fixed++;
}
}
}
return $fixed;
}
}