Spaces:
No application file
No application file
File size: 5,781 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 |
<?php
namespace Mautic\CampaignBundle\Event;
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\Event\AbstractEventAccessor;
class PendingEvent extends AbstractLogCollectionEvent
{
use ContextTrait;
private ArrayCollection $failures;
private ArrayCollection $successful;
/**
* @var string|null
*/
private $channel;
/**
* @var int|null
*/
private $channelId;
private \DateTimeInterface $now;
/**
* @throws \Exception
*/
public function __construct(AbstractEventAccessor $config, Event $event, ArrayCollection $logs)
{
$this->failures = new ArrayCollection();
$this->successful = new ArrayCollection();
$this->now = new \DateTime();
parent::__construct($config, $event, $logs);
}
/**
* @return LeadEventLog[]|ArrayCollection
*/
public function getPending()
{
return $this->logs;
}
/**
* @param string $reason
*/
public function fail(LeadEventLog $log, $reason, \DateInterval $rescheduleInterval = null): void
{
if (!$failedLog = $log->getFailedLog()) {
$failedLog = new FailedLeadEventLog();
}
$log->setRescheduleInterval($rescheduleInterval);
$failedLog->setLog($log)
->setDateAdded(new \DateTime())
->setReason($reason);
// Used by the UI
$metadata = $log->getMetadata();
$metadata = array_merge(
$metadata,
[
'failed' => 1,
'reason' => $reason,
]
);
$log->setMetadata($metadata);
$this->logChannel($log);
$this->failures->set($log->getId(), $log);
}
/**
* @param string $reason
*/
public function failAll($reason): void
{
foreach ($this->logs as $log) {
$this->fail($log, $reason);
}
}
/**
* Fail all that have not passed yet.
*
* @param string $reason
*/
public function failRemaining($reason): void
{
foreach ($this->logs as $log) {
if (!$this->successful->contains($log)) {
$this->fail($log, $reason);
}
}
}
/**
* @param LeadEventLog[]|ArrayCollection $logs
* @param string $reason
*/
public function failLogs(ArrayCollection $logs, $reason): void
{
foreach ($logs as $log) {
$this->fail($log, $reason);
}
}
public function pass(LeadEventLog $log): void
{
$metadata = $log->getMetadata();
unset($metadata['errors']);
if (isset($metadata['failed'])) {
unset($metadata['failed'], $metadata['reason']);
}
$log->setMetadata($metadata);
$this->passLog($log);
}
/**
* @param string $error
*/
public function passWithError(LeadEventLog $log, $error): void
{
$log->appendToMetadata(
[
'failed' => 1,
'reason' => $error,
]
);
$this->passLog($log);
}
/**
* @param string $error
*/
public function passAllWithError($error): void
{
/** @var LeadEventLog $log */
foreach ($this->logs as $log) {
$this->passWithError($log, $error);
}
}
/**
* Pass all remainging logs that have not failed failed nor suceeded yet.
*/
public function passRemainingWithError(string $error): void
{
foreach ($this->logs as $log) {
if (!$this->failures->contains($log) && !$this->successful->contains($log)) {
$this->passWithError($log, $error);
}
}
}
/**
* Pass all pending.
*/
public function passAll(): void
{
/** @var LeadEventLog $log */
foreach ($this->logs as $log) {
$this->pass($log);
}
}
/**
* @param LeadEventLog[]|ArrayCollection $logs
*/
public function passLogs(ArrayCollection $logs): void
{
foreach ($logs as $log) {
$this->pass($log);
}
}
/**
* Pass all that have not failed yet.
*/
public function passRemaining(): void
{
foreach ($this->logs as $log) {
if (!$this->failures->contains($log)) {
$this->pass($log);
}
}
}
/**
* @return LeadEventLog[]|ArrayCollection
*/
public function getFailures()
{
return $this->failures;
}
/**
* @return LeadEventLog[]|ArrayCollection
*/
public function getSuccessful()
{
return $this->successful;
}
/**
* @param string $channel
* @param int|null $channelId
*/
public function setChannel($channel, $channelId = null): void
{
$this->channel = $channel;
$this->channelId = $channelId;
}
private function passLog(LeadEventLog $log): void
{
if ($failedLog = $log->getFailedLog()) {
// Delete existing entries
$failedLog->setLog(null);
$log->setFailedLog(null);
}
$this->logChannel($log);
$log->setIsScheduled(false)
->setDateTriggered($this->now);
$this->successful->set($log->getId(), $log);
}
private function logChannel(LeadEventLog $log): void
{
if ($this->channel) {
$log->setChannel($this->channel);
$log->setChannelId($this->channelId);
}
}
}
|