Spaces:
No application file
No application file
File size: 17,571 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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
<?php
namespace Mautic\CampaignBundle\Executioner;
use Doctrine\Common\Collections\ArrayCollection;
use Mautic\CampaignBundle\Entity\Event;
use Mautic\CampaignBundle\Entity\FailedLeadEventLog;
use Mautic\CampaignBundle\Entity\LeadEventLog;
use Mautic\CampaignBundle\EventCollector\Accessor\Exception\TypeNotFoundException;
use Mautic\CampaignBundle\EventCollector\EventCollector;
use Mautic\CampaignBundle\EventListener\CampaignActionJumpToEventSubscriber;
use Mautic\CampaignBundle\Executioner\Event\ActionExecutioner;
use Mautic\CampaignBundle\Executioner\Event\ConditionExecutioner;
use Mautic\CampaignBundle\Executioner\Event\DecisionExecutioner;
use Mautic\CampaignBundle\Executioner\Logger\EventLogger;
use Mautic\CampaignBundle\Executioner\Result\Counter;
use Mautic\CampaignBundle\Executioner\Result\EvaluatedContacts;
use Mautic\CampaignBundle\Executioner\Result\Responses;
use Mautic\CampaignBundle\Executioner\Scheduler\EventScheduler;
use Mautic\CampaignBundle\Helper\RemovedContactTracker;
use Mautic\LeadBundle\Entity\Lead;
use Psr\Log\LoggerInterface;
class EventExecutioner
{
private ?Responses $responses = null;
private \DateTimeInterface $executionDate;
public function __construct(
private EventCollector $collector,
private EventLogger $eventLogger,
private ActionExecutioner $actionExecutioner,
private ConditionExecutioner $conditionExecutioner,
private DecisionExecutioner $decisionExecutioner,
private LoggerInterface $logger,
private EventScheduler $scheduler,
private RemovedContactTracker $removedContactTracker,
) {
// Be sure that all events are compared using the exact same \DateTime
$this->executionDate = new \DateTime();
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
public function executeForContact(Event $event, Lead $contact, Responses $responses = null, Counter $counter = null): void
{
if ($responses) {
$this->responses = $responses;
}
$contacts = new ArrayCollection([$contact->getId() => $contact]);
$this->executeForContacts($event, $contacts, $counter);
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
public function executeEventsForContact(ArrayCollection $events, Lead $contact, Responses $responses = null, Counter $counter = null): void
{
if ($responses) {
$this->responses = $responses;
}
$contacts = new ArrayCollection([$contact->getId() => $contact]);
$this->executeEventsForContacts($events, $contacts, $counter);
}
/**
* @param ArrayCollection<int,Lead> $contacts
* @param bool $isInactiveEvent
*
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
public function executeForContacts(Event $event, ArrayCollection $contacts, Counter $counter = null, $isInactiveEvent = false): void
{
if (!$contacts->count()) {
$this->logger->debug('CAMPAIGN: No contacts to process for event ID '.$event->getId());
return;
}
$config = $this->collector->getEventConfig($event);
$logs = $this->eventLogger->fetchRotationAndGenerateLogsFromContacts($event, $config, $contacts, $isInactiveEvent);
$this->executeLogs($event, $logs, $counter);
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
public function executeLogs(Event $event, ArrayCollection $logs, Counter $counter = null): void
{
$this->logger->debug('CAMPAIGN: Executing '.$event->getType().' ID '.$event->getId());
if (!$logs->count()) {
$this->logger->debug('CAMPAIGN: No logs to process for event ID '.$event->getId());
return;
}
$config = $this->collector->getEventConfig($event);
if ($counter) {
// Must pass $counter around rather than setting it as a class property as this class is used
// circularly to process children of parent events thus counter must be kept track separately
$counter->advanceExecuted($logs->count());
}
switch ($event->getEventType()) {
case Event::TYPE_ACTION:
$evaluatedContacts = $this->actionExecutioner->execute($config, $logs);
$this->persistLogs($logs);
$this->executeConditionEventsForContacts($event, $evaluatedContacts->getPassed(), $counter);
$this->executeActionEventsForContacts($event, $evaluatedContacts->getPassed(), $counter);
break;
case Event::TYPE_CONDITION:
$evaluatedContacts = $this->conditionExecutioner->execute($config, $logs);
$this->persistLogs($logs);
$this->executeBranchedEventsForContacts($event, $evaluatedContacts, $counter);
break;
case Event::TYPE_DECISION:
$evaluatedContacts = $this->decisionExecutioner->execute($config, $logs);
$this->persistLogs($logs);
$this->executePositivePathEventsForContacts($event, $evaluatedContacts->getPassed(), $counter);
break;
default:
throw new TypeNotFoundException("{$event->getEventType()} is not a valid event type");
}
}
/**
* @param bool $isInactive
*
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
public function executeEventsForContacts(ArrayCollection $events, ArrayCollection $contacts, Counter $childrenCounter = null, $isInactive = false): void
{
if (!$contacts->count()) {
return;
}
// Schedule then return those that need to be immediately executed
$executeThese = $this->scheduleEvents($events, $contacts, $childrenCounter, $isInactive);
// Execute non jump-to events normally
$otherEvents = $executeThese->filter(fn (Event $event): bool => CampaignActionJumpToEventSubscriber::EVENT_NAME !== $event->getType());
if ($otherEvents->count()) {
foreach ($otherEvents as $event) {
$this->executeForContacts($event, $contacts, $childrenCounter, $isInactive);
}
}
// Now execute jump to events
$jumpEvents = $executeThese->filter(fn (Event $event): bool => CampaignActionJumpToEventSubscriber::EVENT_NAME === $event->getType());
if ($jumpEvents->count()) {
$jumpLogs = [];
// Create logs for the jump to events before the rotation is incremented
foreach ($jumpEvents as $key => $event) {
$config = $this->collector->getEventConfig($event);
$jumpLogs[$key] = $this->eventLogger->fetchRotationAndGenerateLogsFromContacts($event, $config, $contacts, $isInactive);
}
// Process the jump to events
foreach ($jumpLogs as $key => $logs) {
$this->executeLogs($jumpEvents->get($key), $logs, $childrenCounter);
}
}
}
/**
* @param bool $isInactiveEvent
*/
public function recordLogsAsExecutedForEvent(Event $event, ArrayCollection $contacts, $isInactiveEvent = false): void
{
$config = $this->collector->getEventConfig($event);
$logs = $this->eventLogger->generateLogsFromContacts($event, $config, $contacts, $isInactiveEvent);
// Save updated log entries and clear from memory
if (!$logs->isEmpty()) {
$this->eventLogger->persistCollection($logs)
->clearCollection($logs);
}
}
/**
* @param bool $isInactiveEvent
*/
public function recordLogsAsFailedForEvent(Event $event, ArrayCollection $contacts, $reason, $isInactiveEvent = false): void
{
$config = $this->collector->getEventConfig($event);
$logs = $this->eventLogger->generateLogsFromContacts($event, $config, $contacts, $isInactiveEvent);
if (!$logs->isEmpty()) {
foreach ($logs as $log) {
$failedLog = new FailedLeadEventLog();
$failedLog->setLog($log)
->setReason($reason);
}
// Save updated log entries and clear from memory
$this->eventLogger->persistCollection($logs)
->clearCollection($logs);
}
}
/**
* @param ArrayCollection|LeadEventLog[] $logs
* @param string $error
*/
public function recordLogsWithError(ArrayCollection $logs, $error): void
{
foreach ($logs as $log) {
$log->appendToMetadata(
[
'failed' => 1,
'reason' => $error,
]
);
$log->setIsScheduled(false);
}
// Save updated log entries and clear from memory
$this->eventLogger->persistCollection($logs)
->clearCollection($logs);
}
/**
* @return \DateTimeInterface
*/
public function getExecutionDate()
{
return $this->executionDate;
}
/**
* @param bool $isInactive
*
* @return ArrayCollection
*
* @throws Scheduler\Exception\NotSchedulableException
*/
private function scheduleEvents(ArrayCollection $events, ArrayCollection $contacts, Counter $childrenCounter = null, $isInactive = false)
{
$events = clone $events;
foreach ($events as $key => $event) {
// Ignore decisions
if (Event::TYPE_DECISION == $event->getEventType()) {
$this->logger->debug('CAMPAIGN: Ignoring child event ID '.$event->getId().' as a decision');
continue;
}
$executionDate = $this->scheduler->getExecutionDateTime($event, $this->executionDate);
$this->logger->debug(
'CAMPAIGN: Event ID# '.$event->getId().
' to be executed on '.$executionDate->format('Y-m-d H:i:s e')
);
// Check if we need to schedule this if it is not an inactivity check
if (!$isInactive && $this->scheduler->shouldScheduleEvent($event, $executionDate, $this->executionDate)) {
if ($childrenCounter) {
$childrenCounter->advanceTotalScheduled($contacts->count());
}
$this->scheduler->schedule($event, $executionDate, $contacts, $isInactive);
$events->remove($key);
continue;
}
}
return $events;
}
private function persistLogs(ArrayCollection $logs): void
{
if ($this->responses) {
// Extract responses
$this->responses->setFromLogs($logs);
}
$this->checkForRemovedContacts($logs);
// Save updated log entries and clear from memory
$this->eventLogger->persistCollection($logs)
->clearCollection($logs);
}
private function checkForRemovedContacts(ArrayCollection $logs): void
{
/**
* @var int $key
* @var LeadEventLog $log
*/
foreach ($logs as $key => $log) {
// Use the deleted ID if the contact was removed by the delete contact action
$contact = $log->getLead();
$contactId = (!empty($contact->deletedId)) ? $contact->deletedId : $contact->getId();
$campaignId = $log->getCampaign()->getId();
if ($this->removedContactTracker->wasContactRemoved($campaignId, $contactId)) {
$this->logger->debug("CAMPAIGN: Contact ID# $contactId has been removed from campaign ID $campaignId");
$logs->remove($key);
// Clear out removed contacts to prevent a memory leak
$this->removedContactTracker->clearRemovedContact($campaignId, $contactId);
}
}
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
private function executeActionEventsForContacts(Event $event, ArrayCollection $contacts, Counter $counter = null): void
{
$childrenCounter = new Counter();
$actions = $event->getChildrenByEventType(Event::TYPE_ACTION);
$childrenCounter->advanceEvaluated($actions->count());
$this->logger->debug('CAMPAIGN: Executing '.$actions->count().' actions under action ID '.$event->getId());
$this->executeEventsForContacts($actions, $contacts, $childrenCounter);
if ($counter) {
$counter->advanceTotalEvaluated($childrenCounter->getTotalEvaluated());
$counter->advanceTotalExecuted($childrenCounter->getTotalExecuted());
}
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
private function executeConditionEventsForContacts(Event $event, ArrayCollection $contacts, Counter $counter = null): void
{
$childrenCounter = new Counter();
$conditions = $event->getChildrenByEventType(Event::TYPE_CONDITION);
$childrenCounter->advanceEvaluated($conditions->count());
$this->logger->debug('CAMPAIGN: Evaluating '.$conditions->count().' conditions for action ID '.$event->getId());
$this->executeEventsForContacts($conditions, $contacts, $childrenCounter);
if ($counter) {
$counter->advanceTotalEvaluated($childrenCounter->getTotalEvaluated());
$counter->advanceTotalExecuted($childrenCounter->getTotalExecuted());
}
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
private function executeBranchedEventsForContacts(Event $event, EvaluatedContacts $contacts, Counter $counter = null): void
{
$childrenCounter = new Counter();
$this->executePositivePathEventsForContacts($event, $contacts->getPassed(), $childrenCounter);
$this->executeNegativePathEventsForContacts($event, $contacts->getFailed(), $childrenCounter);
if ($counter) {
$counter->advanceTotalEvaluated($childrenCounter->getTotalEvaluated());
$counter->advanceTotalExecuted($childrenCounter->getTotalExecuted());
}
}
/**
* @param Counter|null $counter
*
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
private function executePositivePathEventsForContacts(Event $event, ArrayCollection $contacts, Counter $counter): void
{
if (!$contacts->count()) {
return;
}
$this->logger->debug('CAMPAIGN: Contact IDs '.implode(',', $contacts->getKeys()).' passed evaluation for event ID '.$event->getId());
$children = $event->getPositiveChildren();
$counter->advanceEvaluated($children->count());
$this->executeEventsForContacts($children, $contacts, $counter);
}
/**
* @param Counter|null $counter
*
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
*/
private function executeNegativePathEventsForContacts(Event $event, ArrayCollection $contacts, Counter $counter): void
{
if (!$contacts->count()) {
return;
}
$this->logger->debug('CAMPAIGN: Contact IDs '.implode(',', $contacts->getKeys()).' failed evaluation for event ID '.$event->getId());
$children = $event->getNegativeChildren();
$counter->advanceEvaluated($children->count());
$this->executeEventsForContacts($children, $contacts, $counter);
}
/**
* @throws \Doctrine\DBAL\Exception
* @throws \Doctrine\ORM\OptimisticLockException
*/
public function persistSummaries(): void
{
$this->eventLogger->getSummaryModel()->persistSummaries();
}
}
|