Spaces:
No application file
No application file
File size: 14,152 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 |
<?php
namespace Mautic\CampaignBundle\Executioner\Scheduler;
use Doctrine\Common\Collections\ArrayCollection;
use Mautic\CampaignBundle\CampaignEvents;
use Mautic\CampaignBundle\Entity\Event;
use Mautic\CampaignBundle\Entity\LeadEventLog;
use Mautic\CampaignBundle\Event\ScheduledBatchEvent;
use Mautic\CampaignBundle\Event\ScheduledEvent;
use Mautic\CampaignBundle\EventCollector\Accessor\Event\AbstractEventAccessor;
use Mautic\CampaignBundle\EventCollector\EventCollector;
use Mautic\CampaignBundle\Executioner\Exception\IntervalNotConfiguredException;
use Mautic\CampaignBundle\Executioner\Logger\EventLogger;
use Mautic\CampaignBundle\Executioner\Scheduler\Exception\NotSchedulableException;
use Mautic\CampaignBundle\Executioner\Scheduler\Mode\DateTime;
use Mautic\CampaignBundle\Executioner\Scheduler\Mode\Interval;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
use Mautic\LeadBundle\Entity\Lead;
use Psr\Log\LoggerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class EventScheduler
{
public function __construct(
private LoggerInterface $logger,
private EventLogger $eventLogger,
private Interval $intervalScheduler,
private DateTime $dateTimeScheduler,
private EventCollector $collector,
private EventDispatcherInterface $dispatcher,
private CoreParametersHelper $coreParametersHelper
) {
}
public function scheduleForContact(Event $event, \DateTimeInterface $executionDate, Lead $contact): void
{
$contacts = new ArrayCollection([$contact]);
$this->schedule($event, $executionDate, $contacts);
}
/**
* @param bool $isInactiveEvent
*/
public function schedule(Event $event, \DateTimeInterface $executionDate, ArrayCollection $contacts, $isInactiveEvent = false): void
{
$config = $this->collector->getEventConfig($event);
// Load the rotations for creating new log entries
$this->eventLogger->hydrateContactRotationsForNewLogs($contacts->getKeys(), $event->getCampaign()->getId());
// If this is relative to a specific hour, process the contacts in batches by contacts' timezone
if ($this->intervalScheduler->isContactSpecificExecutionDateRequired($event)) {
$groupedExecutionDates = $this->intervalScheduler->groupContactsByDate($event, $contacts, $executionDate);
foreach ($groupedExecutionDates as $groupExecutionDateDAO) {
$this->scheduleEventForContacts(
$event,
$config,
$groupExecutionDateDAO->getExecutionDate(),
$groupExecutionDateDAO->getContacts(),
$isInactiveEvent
);
}
return;
}
// Otherwise just schedule as the default
$this->scheduleEventForContacts($event, $config, $executionDate, $contacts, $isInactiveEvent);
}
public function reschedule(LeadEventLog $log, \DateTimeInterface $toBeExecutedOn): void
{
$log->setTriggerDate($toBeExecutedOn);
$this->eventLogger->persistLog($log);
$event = $log->getEvent();
$config = $this->collector->getEventConfig($event);
$this->dispatchScheduledEvent($config, $log, true);
}
/**
* @param ArrayCollection|LeadEventLog[] $logs
*/
public function rescheduleLogs(ArrayCollection $logs, \DateTimeInterface $toBeExecutedOn): void
{
foreach ($logs as $log) {
$log->setTriggerDate($toBeExecutedOn);
}
$this->eventLogger->persistCollection($logs);
$event = $logs->first()->getEvent();
$config = $this->collector->getEventConfig($event);
$this->dispatchBatchScheduledEvent($config, $event, $logs, true);
}
/**
* @deprecated since Mautic 3. To be removed in Mautic 4. Use rescheduleFailures instead.
*/
public function rescheduleFailure(LeadEventLog $log): void
{
try {
$this->reschedule($log, $this->getRescheduleDate($log));
} catch (IntervalNotConfiguredException) {
// Do not reschedule if an interval was not configured.
}
}
public function rescheduleFailures(ArrayCollection $logs): void
{
if (!$logs->count()) {
return;
}
foreach ($logs as $log) {
try {
$this->reschedule($log, $this->getRescheduleDate($log));
} catch (IntervalNotConfiguredException) {
// Do not reschedule if an interval was not configured.
}
}
// Send out a batch event
$event = $logs->first()->getEvent();
$config = $this->collector->getEventConfig($event);
$this->dispatchBatchScheduledEvent($config, $event, $logs, true);
}
/**
* @throws NotSchedulableException
*/
public function getExecutionDateTime(Event $event, \DateTimeInterface $compareFromDateTime = null, \DateTime $comparedToDateTime = null): \DateTimeInterface
{
if (null === $compareFromDateTime) {
$compareFromDateTime = new \DateTime();
} else {
// Prevent comparisons from modifying original object
$compareFromDateTime = clone $compareFromDateTime;
}
if (null === $comparedToDateTime) {
$comparedToDateTime = clone $compareFromDateTime;
} else {
// Prevent comparisons from modifying original object
$comparedToDateTime = clone $comparedToDateTime;
}
switch ($event->getTriggerMode()) {
case Event::TRIGGER_MODE_IMMEDIATE:
case null: // decision
$this->logger->debug('CAMPAIGN: ('.$event->getId().') Executing immediately');
return $compareFromDateTime;
case Event::TRIGGER_MODE_INTERVAL:
return $this->intervalScheduler->getExecutionDateTime($event, $compareFromDateTime, $comparedToDateTime);
case Event::TRIGGER_MODE_DATE:
return $this->dateTimeScheduler->getExecutionDateTime($event, $compareFromDateTime, $comparedToDateTime);
}
throw new NotSchedulableException();
}
/**
* @return \DateTimeInterface
*
* @throws NotSchedulableException
*/
public function validateExecutionDateTime(LeadEventLog $log, \DateTime $currentDateTime)
{
if (!$scheduledDateTime = $log->getTriggerDate()) {
throw new NotSchedulableException();
}
$event = $log->getEvent();
switch ($event->getTriggerMode()) {
case Event::TRIGGER_MODE_IMMEDIATE:
case null: // decision
$this->logger->debug('CAMPAIGN: ('.$event->getId().') Executing immediately');
return $currentDateTime;
case Event::TRIGGER_MODE_INTERVAL:
return $this->intervalScheduler->validateExecutionDateTime($log, $currentDateTime);
case Event::TRIGGER_MODE_DATE:
return $this->dateTimeScheduler->getExecutionDateTime($event, $currentDateTime, $scheduledDateTime);
}
throw new NotSchedulableException();
}
/**
* @param ArrayCollection|Event[] $events
*
* @throws NotSchedulableException
*/
public function getSortedExecutionDates(ArrayCollection $events, \DateTimeInterface $lastActiveDate): array
{
$eventExecutionDates = [];
/** @var Event $child */
foreach ($events as $child) {
$eventExecutionDates[$child->getId()] = $this->getExecutionDateTime($child, $lastActiveDate);
}
uasort(
$eventExecutionDates,
fn (\DateTimeInterface $a, \DateTimeInterface $b): int => $a <=> $b
);
return $eventExecutionDates;
}
public function getExecutionDateForInactivity(\DateTimeInterface $eventExecutionDate, \DateTimeInterface $earliestExecutionDate, \DateTimeInterface $now): \DateTimeInterface
{
if ($eventExecutionDate->getTimestamp() === $earliestExecutionDate->getTimestamp()) {
// Inactivity is based on the "wait" period so execute now
return clone $now;
}
return $eventExecutionDate;
}
public function shouldSchedule(\DateTimeInterface $executionDate, \DateTimeInterface $now): bool
{
// Mainly for functional tests so we don't have to wait minutes but technically can be used in an environment as well if this behavior
// is desired by system admin
if (false === (bool) getenv('CAMPAIGN_EXECUTIONER_SCHEDULER_ACKNOWLEDGE_SECONDS')) {
// Purposively ignore seconds to prevent rescheduling based on a variance of a few seconds
$executionDate = new \DateTime($executionDate->format('Y-m-d H:i'), $executionDate->getTimezone());
$now = new \DateTime($now->format('Y-m-d H:i'), $now->getTimezone());
}
return $executionDate > $now;
}
public function shouldScheduleEvent(Event $event, \DateTimeInterface $executionDate, \DateTimeInterface $now): bool
{
if ($this->intervalScheduler->isContactSpecificExecutionDateRequired($event)) {
// Event has days in week specified. Needs to be recalculated to the next day configured
return true;
}
return $this->shouldSchedule($executionDate, $now);
}
/**
* @throws NotSchedulableException
*/
public function validateAndScheduleEventForContacts(Event $event, \DateTimeInterface $executionDateTime, ArrayCollection $contacts, \DateTimeInterface $comparedFromDateTime): void
{
if ($this->intervalScheduler->isContactSpecificExecutionDateRequired($event)) {
$this->logger->debug(
'CAMPAIGN: Event ID# '.$event->getId().
' has to be scheduled based on contact specific parameters '.
' compared to '.$executionDateTime->format('Y-m-d H:i:s')
);
$groupedExecutionDates = $this->intervalScheduler->groupContactsByDate($event, $contacts, $executionDateTime);
$config = $this->collector->getEventConfig($event);
foreach ($groupedExecutionDates as $groupExecutionDateDAO) {
$this->scheduleEventForContacts(
$event,
$config,
$groupExecutionDateDAO->getExecutionDate(),
$groupExecutionDateDAO->getContacts()
);
}
return;
}
if ($this->shouldSchedule($executionDateTime, $comparedFromDateTime)) {
$this->schedule($event, $executionDateTime, $contacts);
return;
}
throw new NotSchedulableException();
}
/**
* @param bool $isReschedule
*/
private function dispatchScheduledEvent(AbstractEventAccessor $config, LeadEventLog $log, $isReschedule = false): void
{
$this->dispatcher->dispatch(
new ScheduledEvent($config, $log, $isReschedule),
CampaignEvents::ON_EVENT_SCHEDULED
);
}
/**
* @param bool $isReschedule
*/
private function dispatchBatchScheduledEvent(AbstractEventAccessor $config, Event $event, ArrayCollection $logs, $isReschedule = false): void
{
if (!$logs->count()) {
return;
}
$this->dispatcher->dispatch(
new ScheduledBatchEvent($config, $event, $logs, $isReschedule),
CampaignEvents::ON_EVENT_SCHEDULED_BATCH
);
}
/**
* @param bool $isInactiveEvent
*/
private function scheduleEventForContacts(Event $event, AbstractEventAccessor $config, \DateTimeInterface $executionDate, ArrayCollection $contacts, $isInactiveEvent = false): void
{
foreach ($contacts as $contact) {
// Create the entry
$log = $this->eventLogger->buildLogEntry($event, $contact, $isInactiveEvent);
// Schedule it
$log->setTriggerDate($executionDate);
// Add it to the queue to persist to the DB
$this->eventLogger->queueToPersist($log);
// lead actively triggered this event, a decision wasn't involved, or it was system triggered and a "no" path so schedule the event to be fired at the defined time
$this->logger->debug(
'CAMPAIGN: '.ucfirst($event->getEventType()).' ID# '.$event->getId().' for contact ID# '.$contact->getId()
.' has timing that is not appropriate and thus scheduled for '.$executionDate->format('Y-m-d H:i:s T')
);
$this->dispatchScheduledEvent($config, $log);
}
// Persist any pending in the queue
$logs = $this->eventLogger->persistQueuedLogs();
// Send out a batch event
$this->dispatchBatchScheduledEvent($config, $event, $logs);
// Update log entries and clear from memory
$this->eventLogger->persistCollection($logs)
->clearCollection($logs);
}
/**
* @throws IntervalNotConfiguredException
*/
private function getRescheduleDate(LeadEventLog $leadEventLog): \DateTimeInterface
{
$rescheduleDate = new \DateTime();
$logInterval = $leadEventLog->getRescheduleInterval();
if ($logInterval) {
return $rescheduleDate->add($logInterval);
}
$defaultIntervalString = $this->coreParametersHelper->get('campaign_time_wait_on_event_false');
if (!$defaultIntervalString) {
throw new IntervalNotConfiguredException('No Interval has been set on the lead event log nor as campaign_time_wait_on_event_false config value.');
}
try {
return $rescheduleDate->add(new \DateInterval($defaultIntervalString));
} catch (\Exception) {
// Bad interval
throw new IntervalNotConfiguredException("'{$defaultIntervalString}' is not valid interval string for campaign_time_wait_on_event_false config key.");
}
}
}
|