Spaces:
No application file
No application file
File size: 11,475 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 |
<?php
namespace Mautic\CampaignBundle\Executioner;
use Doctrine\Common\Collections\ArrayCollection;
use Mautic\CampaignBundle\Entity\Campaign;
use Mautic\CampaignBundle\Entity\Event;
use Mautic\CampaignBundle\Entity\LeadEventLog;
use Mautic\CampaignBundle\Entity\LeadEventLogRepository;
use Mautic\CampaignBundle\EventListener\CampaignActionJumpToEventSubscriber;
use Mautic\CampaignBundle\Executioner\ContactFinder\Limiter\ContactLimiter;
use Mautic\CampaignBundle\Executioner\ContactFinder\ScheduledContactFinder;
use Mautic\CampaignBundle\Executioner\Exception\NoContactsFoundException;
use Mautic\CampaignBundle\Executioner\Exception\NoEventsFoundException;
use Mautic\CampaignBundle\Executioner\Result\Counter;
use Mautic\CampaignBundle\Executioner\Scheduler\EventScheduler;
use Mautic\CoreBundle\Helper\ProgressBarHelper;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Contracts\Service\ResetInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
class ScheduledExecutioner implements ExecutionerInterface, ResetInterface
{
private ?Campaign $campaign = null;
private ?ContactLimiter $limiter = null;
private ?OutputInterface $output = null;
private ?\Symfony\Component\Console\Helper\ProgressBar $progressBar = null;
private ?array $scheduledEvents = null;
private ?Counter $counter = null;
protected ?\DateTime $now = null;
public function __construct(
private LeadEventLogRepository $repo,
private LoggerInterface $logger,
private TranslatorInterface $translator,
private EventExecutioner $executioner,
private EventScheduler $scheduler,
private ScheduledContactFinder $scheduledContactFinder
) {
}
/**
* @return Counter|mixed
*
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
* @throws \Doctrine\ORM\Query\QueryException
*/
public function execute(Campaign $campaign, ContactLimiter $limiter, OutputInterface $output = null)
{
$this->campaign = $campaign;
$this->limiter = $limiter;
$this->output = $output ?: new NullOutput();
$this->counter = new Counter();
$this->logger->debug('CAMPAIGN: Triggering scheduled events');
try {
$this->prepareForExecution();
$this->executeOrRescheduleEvent();
} catch (NoEventsFoundException) {
$this->logger->debug('CAMPAIGN: No events to process');
} finally {
if ($this->progressBar) {
$this->progressBar->finish();
}
}
return $this->counter;
}
/**
* @return Counter
*
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
* @throws \Doctrine\ORM\Query\QueryException
*/
public function executeByIds(array $logIds, OutputInterface $output = null, ?\DateTime $now = null)
{
$now = $now ?? $this->now ?? new \DateTime();
$this->output = $output ?: new NullOutput();
$this->counter = new Counter();
if (!$logIds) {
return $this->counter;
}
$logs = $this->repo->getScheduledByIds($logIds);
$totalLogsFound = $logs->count();
$this->counter->advanceEvaluated($totalLogsFound);
$this->logger->debug('CAMPAIGN: '.$logs->count().' events scheduled to execute.');
$this->output->writeln(
$this->translator->trans(
'mautic.campaign.trigger.event_count',
[
'%events%' => $totalLogsFound,
'%batch%' => 'n/a',
]
)
);
if (!$logs->count()) {
return $this->counter;
}
$this->progressBar = ProgressBarHelper::init($this->output, $totalLogsFound);
$this->progressBar->start();
$scheduledLogCount = $totalLogsFound - $logs->count();
$this->progressBar->advance($scheduledLogCount);
// Organize the logs by event ID
$organized = $this->organizeByEvent($logs);
foreach ($organized as $organizedLogs) {
/** @var Event $event */
$event = $organizedLogs->first()->getEvent();
// Validate that the schedule is still appropriate
$this->validateSchedule($organizedLogs, $now, true);
// Check that the campaign is published with up/down dates
if ($event->getCampaign()->isPublished()) {
try {
// Hydrate contacts with custom field data
$this->scheduledContactFinder->hydrateContacts($organizedLogs);
$this->executioner->executeLogs($event, $organizedLogs, $this->counter);
} catch (NoContactsFoundException) {
// All of the events were rescheduled
}
} else {
$this->executioner->recordLogsWithError(
$organizedLogs,
$this->translator->trans('mautic.campaign.event.campaign_unpublished')
);
}
$this->progressBar->advance($organizedLogs->count());
}
$this->progressBar->finish();
return $this->counter;
}
public function reset(): void
{
$this->now = null;
}
/**
* @throws NoEventsFoundException
*/
private function prepareForExecution(): void
{
$this->now ??= new \DateTime();
// Get counts by event
$scheduledEvents = $this->repo->getScheduledCounts($this->campaign->getId(), $this->now, $this->limiter);
$totalScheduledCount = $scheduledEvents ? array_sum($scheduledEvents) : 0;
$this->scheduledEvents = array_keys($scheduledEvents);
$this->logger->debug('CAMPAIGN: '.$totalScheduledCount.' events scheduled to execute.');
$this->output->writeln(
$this->translator->trans(
'mautic.campaign.trigger.event_count',
[
'%events%' => $totalScheduledCount,
'%batch%' => $this->limiter->getBatchLimit(),
]
)
);
if (!$totalScheduledCount) {
throw new NoEventsFoundException();
}
$this->progressBar = ProgressBarHelper::init($this->output, $totalScheduledCount);
$this->progressBar->start();
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
* @throws \Doctrine\ORM\Query\QueryException
*/
private function executeOrRescheduleEvent(): void
{
// Use the same timestamp across all contacts processed
$now = $this->now ?? new \DateTime();
foreach ($this->scheduledEvents as $eventId) {
$this->counter->advanceEventCount();
// Loop over contacts until the entire campaign is executed
$this->executeScheduled($eventId, $now);
}
}
/**
* @throws Dispatcher\Exception\LogNotProcessedException
* @throws Dispatcher\Exception\LogPassedAndFailedException
* @throws Exception\CannotProcessEventException
* @throws Scheduler\Exception\NotSchedulableException
* @throws \Doctrine\ORM\Query\QueryException
*/
private function executeScheduled($eventId, \DateTime $now): void
{
$logs = $this->repo->getScheduled($eventId, $this->now, $this->limiter);
while ($logs->count()) {
try {
$fetchedContacts = $this->scheduledContactFinder->hydrateContacts($logs);
} catch (NoContactsFoundException) {
break;
}
$event = $logs->first()->getEvent();
$this->progressBar->advance($logs->count());
$this->counter->advanceEvaluated($logs->count());
// Validate that the schedule is still appropriate
$this->validateSchedule($logs, $now);
// Execute if there are any that did not get rescheduled
$this->executioner->executeLogs($event, $logs, $this->counter);
// Get next batch
$this->scheduledContactFinder->clear($fetchedContacts);
$logs = $this->repo->getScheduled($eventId, $this->now, $this->limiter);
}
}
/**
* @param bool $scheduleTogether
*
* @throws Scheduler\Exception\NotSchedulableException
*/
private function validateSchedule(ArrayCollection $logs, \DateTime $now, $scheduleTogether = false): void
{
$toBeRescheduled = new ArrayCollection();
$latestExecutionDate = $now;
// Check if the event should be scheduled (let the schedulers do the debug logging)
/** @var LeadEventLog $log */
foreach ($logs as $key => $log) {
$executionDate = $this->scheduler->validateExecutionDateTime($log, $now);
$this->logger->debug(
'CAMPAIGN: Log ID #'.$log->getID().
' to be executed on '.$executionDate->format('Y-m-d H:i:s e').
' compared to '.$now->format('Y-m-d H:i:s e')
);
if ($this->scheduler->shouldSchedule($executionDate, $now)) {
// The schedule has changed for this event since first scheduled
$this->counter->advanceTotalScheduled();
if ($scheduleTogether) {
$toBeRescheduled->set($key, $log);
if ($executionDate > $latestExecutionDate) {
$latestExecutionDate = $executionDate;
}
} else {
$this->scheduler->reschedule($log, $executionDate);
}
$logs->remove($key);
continue;
}
}
if ($toBeRescheduled->count()) {
$this->scheduler->rescheduleLogs($toBeRescheduled, $latestExecutionDate);
}
}
/**
* @return ArrayCollection[]
*/
private function organizeByEvent(ArrayCollection $logs): array
{
$jumpTo = [];
$other = [];
/** @var LeadEventLog $log */
foreach ($logs as $log) {
$event = $log->getEvent();
$eventType = $event->getType();
if (CampaignActionJumpToEventSubscriber::EVENT_NAME === $eventType) {
if (!isset($jumpTo[$event->getId()])) {
$jumpTo[$event->getId()] = new ArrayCollection();
}
$jumpTo[$event->getId()]->set($log->getId(), $log);
} else {
if (!isset($other[$event->getId()])) {
$other[$event->getId()] = new ArrayCollection();
}
$other[$event->getId()]->set($log->getId(), $log);
}
}
return array_merge($other, $jumpTo);
}
}
|