Spaces:
No application file
No application file
File size: 12,536 Bytes
d2897cd |
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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Sync\SyncProcess\Direction\Internal;
use Mautic\IntegrationsBundle\Exception\InvalidValueException;
use Mautic\IntegrationsBundle\Sync\DAO\Mapping\FieldMappingDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Mapping\MappingManualDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Mapping\ObjectMappingDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\InformationChangeRequestDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Order\FieldDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Order\ObjectChangeDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Report\FieldDAO as ReportFieldDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Report\ObjectDAO as ReportObjectDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Report\ReportDAO;
use Mautic\IntegrationsBundle\Sync\Exception\ConflictUnresolvedException;
use Mautic\IntegrationsBundle\Sync\Exception\FieldNotFoundException;
use Mautic\IntegrationsBundle\Sync\Exception\ObjectNotFoundException;
use Mautic\IntegrationsBundle\Sync\Logger\DebugLogger;
use Mautic\IntegrationsBundle\Sync\SyncDataExchange\Helper\FieldHelper;
use Mautic\IntegrationsBundle\Sync\SyncDataExchange\MauticSyncDataExchange;
use Mautic\IntegrationsBundle\Sync\SyncJudge\SyncJudgeInterface;
use Mautic\IntegrationsBundle\Sync\SyncProcess\Direction\Helper\ValueHelper;
class ObjectChangeGenerator
{
private array $judgementModes = [
SyncJudgeInterface::HARD_EVIDENCE_MODE,
SyncJudgeInterface::BEST_EVIDENCE_MODE,
SyncJudgeInterface::FUZZY_EVIDENCE_MODE,
];
public function __construct(
private SyncJudgeInterface $syncJudge,
private ValueHelper $valueHelper,
private FieldHelper $fieldHelper
) {
}
/**
* @return ObjectChangeDAO
*
* @throws ObjectNotFoundException
*/
public function getSyncObjectChange(
ReportDAO $syncReport,
MappingManualDAO $mappingManual,
ObjectMappingDAO $objectMapping,
ReportObjectDAO $internalObject,
ReportObjectDAO $integrationObject
) {
$objectChange = new ObjectChangeDAO(
$mappingManual->getIntegration(),
$internalObject->getObject(),
$internalObject->getObjectId(),
$integrationObject->getObject(),
$integrationObject->getObjectId()
);
if ($internalObject->getObjectId()) {
DebugLogger::log(
$mappingManual->getIntegration(),
sprintf(
"Integration to Mautic; found a match between Mautic's %s:%s object and the integration %s:%s object ",
$internalObject->getObject(),
(string) $internalObject->getObjectId(),
$integrationObject->getObject(),
(string) $integrationObject->getObjectId()
),
self::class.':'.__FUNCTION__
);
} else {
DebugLogger::log(
$mappingManual->getIntegration(),
sprintf(
'Integration to Mautic; no match found for %s:%s',
$integrationObject->getObject(),
(string) $integrationObject->getObjectId()
),
self::class.':'.__FUNCTION__
);
}
/** @var FieldMappingDAO[] $fieldMappings */
$fieldMappings = $objectMapping->getFieldMappings();
foreach ($fieldMappings as $fieldMappingDAO) {
$this->addFieldToObjectChange($fieldMappingDAO, $syncReport, $mappingManual, $internalObject, $integrationObject, $objectChange);
}
// Set the change date/time from the object so that we can update last sync date based on this
$objectChange->setChangeDateTime($integrationObject->getChangeDateTime());
return $objectChange;
}
/**
* @throws ObjectNotFoundException
*/
private function addFieldToObjectChange(
FieldMappingDAO $fieldMappingDAO,
ReportDAO $syncReport,
MappingManualDAO $mappingManual,
ReportObjectDAO $internalObject,
ReportObjectDAO $integrationObject,
ObjectChangeDAO $objectChange
): void {
// Skip adding fields for the pull process that should sync to integration only.
if (ObjectMappingDAO::SYNC_TO_INTEGRATION === $fieldMappingDAO->getSyncDirection()) {
DebugLogger::log(
$mappingManual->getIntegration(),
sprintf(
"Integration to Mautic; the %s object's field %s was skipped because it's configured to sync to the integration",
$internalObject->getObject(),
$fieldMappingDAO->getInternalField()
),
__CLASS__.':'.__FUNCTION__
);
return;
}
try {
$integrationFieldState = $integrationObject->getField($fieldMappingDAO->getIntegrationField())->getState();
$internalFieldState = $this->getFieldState(
$fieldMappingDAO->getInternalObject(),
$fieldMappingDAO->getInternalField(),
$integrationFieldState
);
$integrationInformationChangeRequest = $syncReport->getInformationChangeRequest(
$integrationObject->getObject(),
$integrationObject->getObjectId(),
$fieldMappingDAO->getIntegrationField()
);
} catch (FieldNotFoundException) {
return;
}
// If syncing bidirectional, let the sync judge determine what value should be used for the field
if (ObjectMappingDAO::SYNC_BIDIRECTIONALLY === $fieldMappingDAO->getSyncDirection()) {
$this->judgeThenAddFieldToObjectChange($mappingManual, $internalObject, $fieldMappingDAO, $integrationInformationChangeRequest, $objectChange, $internalFieldState);
return;
}
try {
$newValue = $this->valueHelper->getValueForMautic(
$integrationInformationChangeRequest->getNewValue(),
$internalFieldState,
$fieldMappingDAO->getSyncDirection()
);
} catch (InvalidValueException) {
return; // Field has to be skipped
}
// Add the value to the field based on the field state
$objectChange->addField(
new FieldDAO($fieldMappingDAO->getInternalField(), $newValue),
$internalFieldState
);
// ObjectMappingDAO::SYNC_TO_MAUTIC
DebugLogger::log(
$mappingManual->getIntegration(),
sprintf(
'Integration to Mautic; syncing %s %s with a value of %s',
$internalFieldState,
$fieldMappingDAO->getInternalField(),
var_export($newValue->getNormalizedValue(), true)
),
self::class.':'.__FUNCTION__
);
}
private function judgeThenAddFieldToObjectChange(
MappingManualDAO $mappingManual,
ReportObjectDAO $internalObject,
FieldMappingDAO $fieldMappingDAO,
InformationChangeRequestDAO $integrationInformationChangeRequest,
ObjectChangeDAO $objectChange,
string $fieldState
): void {
try {
$internalField = $internalObject->getField($fieldMappingDAO->getInternalField());
} catch (FieldNotFoundException) {
$internalField = null;
}
if (!$internalField) {
$newValue = $this->valueHelper->getValueForMautic(
$integrationInformationChangeRequest->getNewValue(),
$fieldState,
$fieldMappingDAO->getSyncDirection()
);
$objectChange->addField(
new FieldDAO($fieldMappingDAO->getInternalField(), $newValue),
$fieldState
);
DebugLogger::log(
$mappingManual->getIntegration(),
sprintf(
"Integration to Mautic; the sync is bidirectional but no conflicts were found so syncing the %s object's %s field %s with a value of %s",
$internalObject->getObject(),
$fieldState,
$fieldMappingDAO->getInternalField(),
var_export($newValue->getNormalizedValue(), true)
),
self::class.':'.__FUNCTION__
);
return;
}
$internalInformationChangeRequest = new InformationChangeRequestDAO(
MauticSyncDataExchange::NAME,
$internalObject->getObject(),
$internalObject->getObjectId(),
$internalField->getName(),
$internalField->getValue()
);
$possibleChangeDateTime = $internalObject->getChangeDateTime();
$certainChangeDateTime = $internalField->getChangeDateTime();
// If we know certain change datetime and it's newer than possible change datetime
// then we have to update possible change datetime otherwise comparision doesn't work correctly
if ($certainChangeDateTime && ($certainChangeDateTime > $possibleChangeDateTime)) {
$possibleChangeDateTime = $certainChangeDateTime;
}
$internalInformationChangeRequest->setPossibleChangeDateTime($possibleChangeDateTime);
$internalInformationChangeRequest->setCertainChangeDateTime($certainChangeDateTime);
// There is a conflict so let the judge determine which value comes out on top
foreach ($this->judgementModes as $judgeMode) {
try {
$this->makeJudgement(
$mappingManual,
$judgeMode,
$fieldMappingDAO,
$objectChange,
$integrationInformationChangeRequest,
$internalInformationChangeRequest,
$fieldState
);
break;
} catch (ConflictUnresolvedException) {
DebugLogger::log(
$mappingManual->getIntegration(),
sprintf(
'Integration to Mautic; no winner was determined using the %s judging mode for object %s field %s',
$judgeMode,
$internalObject->getObject(),
$fieldMappingDAO->getInternalField()
),
self::class.':'.__FUNCTION__
);
}
}
}
/**
* @throws ConflictUnresolvedException
*/
private function makeJudgement(
MappingManualDAO $mappingManual,
string $judgeMode,
FieldMappingDAO $fieldMappingDAO,
ObjectChangeDAO $objectChange,
InformationChangeRequestDAO $integrationInformationChangeRequest,
InformationChangeRequestDAO $internalInformationChangeRequest,
string $fieldState
): void {
$winningChangeRequest = $this->syncJudge->adjudicate(
$judgeMode,
$internalInformationChangeRequest,
$integrationInformationChangeRequest
);
$newValue = $this->valueHelper->getValueForMautic(
$winningChangeRequest->getNewValue(),
$fieldState,
$fieldMappingDAO->getSyncDirection()
);
$objectChange->addField(
new FieldDAO($fieldMappingDAO->getInternalField(), $newValue),
$fieldState
);
DebugLogger::log(
$mappingManual->getIntegration(),
sprintf(
"Integration to Mautic; sync judge determined to sync %s to the %s object's %s field %s with a value of %s using the %s judging mode",
$winningChangeRequest->getIntegration(),
$winningChangeRequest->getObject(),
$fieldState,
$fieldMappingDAO->getInternalField(),
var_export($newValue->getNormalizedValue(), true),
$judgeMode
),
self::class.':'.__FUNCTION__
);
}
private function getFieldState(string $object, string $field, string $integrationFieldState): string
{
// If this is a Mautic required field, return required
if (isset($this->fieldHelper->getRequiredFields($object)[$field])) {
return ReportFieldDAO::FIELD_REQUIRED;
}
return $integrationFieldState;
}
}
|