Spaces:
No application file
No application file
File size: 13,544 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 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Sync\SyncDataExchange\Internal\ObjectHelper;
use Doctrine\DBAL\ArrayParameterType;
use Doctrine\DBAL\Connection;
use Mautic\IntegrationsBundle\Entity\ObjectMapping;
use Mautic\IntegrationsBundle\Sync\DAO\Mapping\UpdatedObjectMappingDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Order\FieldDAO;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Order\ObjectChangeDAO;
use Mautic\IntegrationsBundle\Sync\Logger\DebugLogger;
use Mautic\IntegrationsBundle\Sync\SyncDataExchange\Internal\Object\Contact;
use Mautic\IntegrationsBundle\Sync\SyncDataExchange\MauticSyncDataExchange;
use Mautic\LeadBundle\DataObject\LeadManipulator;
use Mautic\LeadBundle\Entity\DoNotContact;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\LeadBundle\Entity\LeadRepository;
use Mautic\LeadBundle\Exception\ImportFailedException;
use Mautic\LeadBundle\Field\FieldList;
use Mautic\LeadBundle\Field\FieldsWithUniqueIdentifier;
use Mautic\LeadBundle\Model\DoNotContact as DoNotContactModel;
use Mautic\LeadBundle\Model\LeadModel;
class ContactObjectHelper implements ObjectHelperInterface
{
private ?array $availableFields = null;
/**
* @var string[]|null
*/
private ?array $uniqueIdentifierFields = null;
/**
* @var array<string,Lead>
*/
private array $contactsCreated = [];
public function __construct(
private LeadModel $model,
private LeadRepository $repository,
private Connection $connection,
private DoNotContactModel $dncModel,
private FieldList $fieldList,
private FieldsWithUniqueIdentifier $fieldsWithUniqueIdentifier
) {
}
/**
* @param ObjectChangeDAO[] $objects
*
* @return ObjectMapping[]
*/
public function create(array $objects): array
{
$availableFields = $this->getAvailableFields();
$objectMappings = [];
foreach ($objects as $object) {
$fields = $object->getFields();
$contact = $this->getContactEntity($fields);
$pseudoFields = [];
foreach ($fields as $field) {
if (in_array($field->getName(), $availableFields)) {
$contact->addUpdatedField($field->getName(), $field->getValue()->getNormalizedValue());
} else {
$pseudoFields[$field->getName()] = $field;
}
}
$contact->setManipulator(new LeadManipulator('integrations', 'create'));
// Create the contact before processing pseudo fields
$this->model->saveEntity($contact);
// Process the pseudo field
$this->processPseudoFields($contact, $pseudoFields, $object->getIntegration());
DebugLogger::log(
MauticSyncDataExchange::NAME,
sprintf(
'Created lead ID %d',
$contact->getId()
),
self::class.':'.__FUNCTION__
);
$objectMapping = new ObjectMapping();
$objectMapping->setLastSyncDate($object->getChangeDateTime())
->setIntegration($object->getIntegration())
->setIntegrationObjectName($object->getMappedObject())
->setIntegrationObjectId($object->getMappedObjectId())
->setInternalObjectName(Contact::NAME)
->setInternalObjectId($contact->getId());
$objectMappings[] = $objectMapping;
}
// Detach to free RAM after all contacts are processed in case there are duplicates in the same batch
foreach ($this->contactsCreated as $contact) {
$this->repository->detachEntity($contact);
}
// Reset contacts created for the next batch
$this->contactsCreated = [];
return $objectMappings;
}
/**
* @param ObjectChangeDAO[] $objects
*
* @return UpdatedObjectMappingDAO[]
*/
public function update(array $ids, array $objects): array
{
/** @var Lead[] $contacts */
$contacts = $this->model->getEntities(['ids' => $ids]);
DebugLogger::log(
MauticSyncDataExchange::NAME,
sprintf(
'Found %d leads to update with ids %s',
count($contacts),
implode(', ', $ids)
),
self::class.':'.__FUNCTION__
);
$availableFields = $this->getAvailableFields();
$updatedMappedObjects = [];
foreach ($contacts as $contact) {
/** @var ObjectChangeDAO $changedObject */
$changedObject = $objects[$contact->getId()];
$fields = $changedObject->getFields();
$pseudoFields = [];
foreach ($fields as $field) {
if (in_array($field->getName(), $availableFields)) {
$contact->addUpdatedField($field->getName(), $field->getValue()->getNormalizedValue());
} else {
$pseudoFields[$field->getName()] = $field;
}
}
$contact->setManipulator(new LeadManipulator('integrations', 'update'));
// Create the contact before processing pseudo fields
$this->model->saveEntity($contact);
// Process the pseudo field
$this->processPseudoFields($contact, $pseudoFields, $changedObject->getIntegration());
$this->repository->detachEntity($contact);
DebugLogger::log(
MauticSyncDataExchange::NAME,
sprintf(
'Updated lead ID %d',
$contact->getId()
),
self::class.':'.__FUNCTION__
);
// Integration name and ID are stored in the change's mappedObject/mappedObjectId
$updatedMappedObjects[] = new UpdatedObjectMappingDAO(
$changedObject->getIntegration(),
$changedObject->getMappedObject(),
$changedObject->getMappedObjectId(),
$changedObject->getChangeDateTime()
);
}
return $updatedMappedObjects;
}
/**
* Unfortunately the LeadRepository doesn't give us what we need so we have to write our own queries.
*
* @param int $start
* @param int $limit
*/
public function findObjectsBetweenDates(\DateTimeInterface $from, \DateTimeInterface $to, $start, $limit): array
{
$qb = $this->connection->createQueryBuilder();
$qb->select('*')
->from(MAUTIC_TABLE_PREFIX.'leads', 'l')
->where(
$qb->expr()->and(
$qb->expr()->isNotNull('l.date_identified'),
$qb->expr()->or(
$qb->expr()->and(
$qb->expr()->isNotNull('l.date_modified'),
$qb->expr()->gte('l.date_modified', ':dateFrom'),
$qb->expr()->lt('l.date_modified', ':dateTo')
),
$qb->expr()->and(
$qb->expr()->isNull('l.date_modified'),
$qb->expr()->gte('l.date_added', ':dateFrom'),
$qb->expr()->lt('l.date_added', ':dateTo')
)
)
)
)
->setParameter('dateFrom', $from->format('Y-m-d H:i:s'))
->setParameter('dateTo', $to->format('Y-m-d H:i:s'))
->setFirstResult($start)
->setMaxResults($limit);
return $qb->executeQuery()->fetchAllAssociative();
}
public function findObjectsByIds(array $ids): array
{
if (!count($ids)) {
return [];
}
$qb = $this->connection->createQueryBuilder();
$qb->select('*')
->from(MAUTIC_TABLE_PREFIX.'leads', 'l')
->where(
$qb->expr()->in('id', $ids)
);
return $qb->executeQuery()->fetchAllAssociative();
}
public function findObjectsByFieldValues(array $fields): array
{
$q = $this->connection->createQueryBuilder()
->select('l.id')
->from(MAUTIC_TABLE_PREFIX.'leads', 'l');
foreach ($fields as $col => $val) {
// Use andWhere because Mautic treats conflicting unique identifiers as different objects
$q->{$this->repository->getUniqueIdentifiersWherePart()}("l.$col = :".$col)
->setParameter($col, $val);
}
return $q->executeQuery()->fetchAllAssociative();
}
public function getDoNotContactStatus(int $contactId, string $channel): int
{
$q = $this->connection->createQueryBuilder();
$q->select('dnc.reason')
->from(MAUTIC_TABLE_PREFIX.'lead_donotcontact', 'dnc')
->where(
$q->expr()->and(
$q->expr()->eq('dnc.lead_id', ':contactId'),
$q->expr()->eq('dnc.channel', ':channel')
)
)
->setParameter('contactId', $contactId)
->setParameter('channel', $channel)
->setMaxResults(1);
$status = $q->executeQuery()->fetchOne();
if (false === $status) {
return DoNotContact::IS_CONTACTABLE;
}
return (int) $status;
}
public function findOwnerIds(array $objectIds): array
{
if (empty($objectIds)) {
return [];
}
$qb = $this->connection->createQueryBuilder();
$qb->select('c.owner_id, c.id');
$qb->from(MAUTIC_TABLE_PREFIX.'leads', 'c');
$qb->where('c.owner_id IS NOT NULL');
$qb->andWhere('c.id IN (:objectIds)');
$qb->setParameter('objectIds', $objectIds, ArrayParameterType::INTEGER);
return $qb->executeQuery()->fetchAllAssociative();
}
public function findObjectById(int $id): ?Lead
{
return $this->repository->getEntity($id);
}
/**
* @throws ImportFailedException
*/
public function setFieldValues(Lead $lead): void
{
$this->model->setFieldValues($lead, []);
}
private function getAvailableFields(): array
{
if (null === $this->availableFields) {
$availableFields = $this->fieldList->getFieldList(false, false);
$this->availableFields = array_keys($availableFields);
}
return $this->availableFields;
}
/**
* @return string[]
*/
private function getUniqueIdentifierFields(): array
{
if (null === $this->uniqueIdentifierFields) {
$uniqueIdentifierFields = $this->fieldsWithUniqueIdentifier->getFieldsWithUniqueIdentifier(['object' => MauticSyncDataExchange::OBJECT_CONTACT]);
$this->uniqueIdentifierFields = array_keys($uniqueIdentifierFields);
}
return $this->uniqueIdentifierFields;
}
/**
* @param FieldDAO[] $fields
*/
private function processPseudoFields(Lead $contact, array $fields, string $integration): void
{
foreach ($fields as $name => $field) {
if (str_starts_with($name, 'mautic_internal_dnc_')) {
$channel = str_replace('mautic_internal_dnc_', '', $name);
$dncReason = $this->getDoNotContactReason($field->getValue()->getNormalizedValue());
if (DoNotContact::IS_CONTACTABLE === $dncReason) {
$this->dncModel->removeDncForContact($contact->getId(), $channel);
continue;
}
$this->dncModel->addDncForContact(
$contact->getId(),
$channel,
$dncReason,
$integration,
true,
true,
true
);
}
if ('owner_id' == $name) {
$ownerId = $field->getValue()->getNormalizedValue();
$this->model->updateLeadOwner($contact, $ownerId);
}
// Ignore all others as unrecognized
}
}
private function getDoNotContactReason($value): int
{
$value = (int) $value;
if (in_array($value, [DoNotContact::BOUNCED, DoNotContact::UNSUBSCRIBED, DoNotContact::MANUAL, DoNotContact::IS_CONTACTABLE])) {
return $value;
}
// Assume manually removed
return DoNotContact::MANUAL;
}
/**
* @param FieldDAO[] $fields
*/
private function getContactEntity(array $fields): Lead
{
$uniqueIdentifierFields = $this->getUniqueIdentifierFields();
// Create a key based on the concatenation of unique identifier values
$contactKey = '';
foreach ($uniqueIdentifierFields as $uniqueIdentifierField) {
if (isset($fields[$uniqueIdentifierField])) {
$contactKey .= strtolower($fields[$uniqueIdentifierField]->getValue()->getNormalizedValue());
}
}
// Check if a contact with matching values was created in the same batch as another
if (!empty($contactKey) && isset($this->contactsCreated[$contactKey])) {
return $this->contactsCreated[$contactKey];
}
// Create a new contact but ensure a unique key
$contactKey = $contactKey ?: uniqid();
return $this->contactsCreated[$contactKey] = new Lead();
}
}
|