Spaces:
No application file
No application file
File size: 2,820 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 |
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Sync\Notification;
use Mautic\IntegrationsBundle\Exception\IntegrationNotFoundException;
use Mautic\IntegrationsBundle\Helper\ConfigIntegrationsHelper;
use Mautic\IntegrationsBundle\Helper\SyncIntegrationsHelper;
use Mautic\IntegrationsBundle\Integration\Interfaces\ConfigFormSyncInterface;
use Mautic\IntegrationsBundle\Sync\DAO\Sync\Order\NotificationDAO;
use Mautic\IntegrationsBundle\Sync\Exception\HandlerNotSupportedException;
use Mautic\IntegrationsBundle\Sync\Notification\Handler\HandlerContainer;
use Mautic\IntegrationsBundle\Sync\SyncDataExchange\MauticSyncDataExchange;
use Symfony\Contracts\Translation\TranslatorInterface;
class Notifier
{
public function __construct(
private HandlerContainer $handlerContainer,
private SyncIntegrationsHelper $syncIntegrationsHelper,
private ConfigIntegrationsHelper $configIntegrationsHelper,
private TranslatorInterface $translator
) {
}
/**
* @param NotificationDAO[] $notifications
* @param string $integrationHandler
*
* @throws HandlerNotSupportedException
* @throws IntegrationNotFoundException
*/
public function noteMauticSyncIssue(array $notifications, $integrationHandler = MauticSyncDataExchange::NAME): void
{
foreach ($notifications as $notification) {
$handler = $this->handlerContainer->getHandler($integrationHandler, $notification->getMauticObject());
$integrationDisplayName = $this->syncIntegrationsHelper->getIntegration($notification->getIntegration())->getDisplayName();
$objectDisplayName = $this->getObjectDisplayName($notification->getIntegration(), $notification->getIntegrationObject());
$handler->writeEntry($notification, $integrationDisplayName, $objectDisplayName);
}
}
/**
* Finalizes notifications such as pushing summary entries to the user notifications.
*/
public function finalizeNotifications(): void
{
foreach ($this->handlerContainer->getHandlers() as $handler) {
$handler->finalize();
}
}
private function getObjectDisplayName(string $integration, string $object): string
{
try {
$configIntegration = $this->configIntegrationsHelper->getIntegration($integration);
} catch (IntegrationNotFoundException) {
return ucfirst($object);
}
if (!$configIntegration instanceof ConfigFormSyncInterface) {
return ucfirst($object);
}
$objects = $configIntegration->getSyncConfigObjects();
if (!isset($objects[$object])) {
return ucfirst($object);
}
return $this->translator->trans($objects[$object]);
}
}
|