mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
167 lines
7.4 KiB
PHP
167 lines
7.4 KiB
PHP
<?php
|
|
|
|
namespace App\MessageHandler;
|
|
|
|
use App\Config\Provider\AbstractProvider;
|
|
use App\Config\TriggerAction;
|
|
use App\Config\WebhookScheme;
|
|
use App\Entity\Domain;
|
|
use App\Entity\DomainEvent;
|
|
use App\Entity\WatchList;
|
|
use App\Entity\WatchListTrigger;
|
|
use App\Message\ProcessDomainTrigger;
|
|
use App\Notifier\DomainOrderErrorNotification;
|
|
use App\Notifier\DomainOrderNotification;
|
|
use App\Notifier\DomainUpdateNotification;
|
|
use App\Repository\DomainRepository;
|
|
use App\Repository\WatchListRepository;
|
|
use App\Service\StatService;
|
|
use Psr\Cache\CacheItemPoolInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
use Symfony\Component\HttpKernel\KernelInterface;
|
|
use Symfony\Component\Mailer\Exception\TransportExceptionInterface;
|
|
use Symfony\Component\Mailer\MailerInterface;
|
|
use Symfony\Component\Messenger\Attribute\AsMessageHandler;
|
|
use Symfony\Component\Messenger\Exception\ExceptionInterface;
|
|
use Symfony\Component\Mime\Address;
|
|
use Symfony\Component\Notifier\Notification\ChatNotificationInterface;
|
|
use Symfony\Component\Notifier\Recipient\Recipient;
|
|
use Symfony\Component\Notifier\Transport\AbstractTransportFactory;
|
|
use Symfony\Component\Notifier\Transport\Dsn;
|
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
|
|
|
#[AsMessageHandler]
|
|
final readonly class ProcessDomainTriggerHandler
|
|
{
|
|
private Address $sender;
|
|
|
|
public function __construct(
|
|
string $mailerSenderEmail,
|
|
string $mailerSenderName,
|
|
private WatchListRepository $watchListRepository,
|
|
private DomainRepository $domainRepository,
|
|
private KernelInterface $kernel,
|
|
private LoggerInterface $logger,
|
|
private HttpClientInterface $client,
|
|
private MailerInterface $mailer,
|
|
private CacheItemPoolInterface $cacheItemPool,
|
|
private StatService $statService
|
|
) {
|
|
$this->sender = new Address($mailerSenderEmail, $mailerSenderName);
|
|
}
|
|
|
|
/**
|
|
* @throws TransportExceptionInterface
|
|
* @throws \Exception
|
|
* @throws ExceptionInterface
|
|
*/
|
|
public function __invoke(ProcessDomainTrigger $message): void
|
|
{
|
|
/** @var WatchList $watchList */
|
|
$watchList = $this->watchListRepository->findOneBy(['token' => $message->watchListToken]);
|
|
/** @var Domain $domain */
|
|
$domain = $this->domainRepository->findOneBy(['ldhName' => $message->ldhName]);
|
|
|
|
$connector = $watchList->getConnector();
|
|
if (null !== $connector && $domain->getDeleted()) {
|
|
$this->logger->notice('Watchlist {watchlist} is linked to connector {connector}. A purchase attempt will be made for domain name {ldhName} with provider {provider}.', [
|
|
'watchlist' => $message->watchListToken,
|
|
'connector' => $connector->getId(),
|
|
'ldhName' => $message->ldhName,
|
|
'provider' => $connector->getProvider()->value,
|
|
]);
|
|
try {
|
|
$provider = $connector->getProvider();
|
|
if (null === $provider) {
|
|
throw new \Exception('Provider not found');
|
|
}
|
|
|
|
$connectorProviderClass = $provider->getConnectorProvider();
|
|
|
|
/** @var AbstractProvider $connectorProvider */
|
|
$connectorProvider = new $connectorProviderClass($connector->getAuthData(), $this->client, $this->cacheItemPool, $this->kernel);
|
|
|
|
$connectorProvider->orderDomain($domain, $this->kernel->isDebug());
|
|
|
|
$notification = (new DomainOrderNotification($this->sender, $domain, $connector));
|
|
$this->mailer->send($notification->asEmailMessage(new Recipient($watchList->getUser()->getEmail()))->getMessage());
|
|
$this->sendChatNotification($watchList, $notification);
|
|
|
|
$this->statService->incrementStat('stats.domain.purchased');
|
|
} catch (\Throwable) {
|
|
$this->logger->warning('Unable to complete purchase. An error message is sent to user {username}.', [
|
|
'username' => $watchList->getUser()->getUserIdentifier(),
|
|
]);
|
|
|
|
$notification = (new DomainOrderErrorNotification($this->sender, $domain));
|
|
$this->mailer->send($notification->asEmailMessage(new Recipient($watchList->getUser()->getEmail()))->getMessage());
|
|
$this->sendChatNotification($watchList, $notification);
|
|
|
|
$this->statService->incrementStat('stats.domain.purchase.failed');
|
|
}
|
|
}
|
|
|
|
/** @var DomainEvent $event */
|
|
foreach ($domain->getEvents()->filter(fn ($event) => $message->updatedAt < $event->getDate() && $event->getDate() < new \DateTime()) as $event) {
|
|
$watchListTriggers = $watchList->getWatchListTriggers()
|
|
->filter(fn ($trigger) => $trigger->getEvent() === $event->getAction());
|
|
|
|
/** @var WatchListTrigger $watchListTrigger */
|
|
foreach ($watchListTriggers->getIterator() as $watchListTrigger) {
|
|
$this->logger->info('Action {event} has been detected on the domain name {ldhName}. A notification is sent to user {username}.', [
|
|
'event' => $event->getAction(),
|
|
'ldhName' => $message->ldhName,
|
|
'username' => $watchList->getUser()->getUserIdentifier(),
|
|
]);
|
|
|
|
$recipient = new Recipient($watchList->getUser()->getEmail());
|
|
$notification = new DomainUpdateNotification($this->sender, $event);
|
|
|
|
if (TriggerAction::SendEmail == $watchListTrigger->getAction()) {
|
|
$this->mailer->send($notification->asEmailMessage($recipient)->getMessage());
|
|
} elseif (TriggerAction::SendChat == $watchListTrigger->getAction()) {
|
|
$this->sendChatNotification($watchList, $notification);
|
|
}
|
|
|
|
$this->statService->incrementStat('stats.alert.sent');
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws \Symfony\Component\Notifier\Exception\TransportExceptionInterface
|
|
*/
|
|
private function sendChatNotification(WatchList $watchList, ChatNotificationInterface $notification): void
|
|
{
|
|
$webhookDsn = $watchList->getWebhookDsn();
|
|
if (null !== $webhookDsn && 0 !== count($webhookDsn)) {
|
|
foreach ($webhookDsn as $dsnString) {
|
|
$dsn = new Dsn($dsnString);
|
|
|
|
$scheme = $dsn->getScheme();
|
|
$webhookScheme = WebhookScheme::tryFrom($scheme);
|
|
|
|
if (null !== $webhookScheme) {
|
|
$transportFactoryClass = $webhookScheme->getChatTransportFactory();
|
|
/** @var AbstractTransportFactory $transportFactory */
|
|
$transportFactory = new $transportFactoryClass();
|
|
try {
|
|
$transportFactory->create($dsn)->send($notification->asChatMessage(new Recipient()));
|
|
$this->logger->info('Chat message sent with {schema} for Watchlist {token}',
|
|
[
|
|
'scheme' => $webhookScheme->name,
|
|
'token' => $watchList->getToken(),
|
|
]);
|
|
} catch (\Throwable) {
|
|
$this->logger->error('Unable to send a chat message to {scheme} for Watchlist {token}',
|
|
[
|
|
'scheme' => $webhookScheme->name,
|
|
'token' => $watchList->getToken(),
|
|
]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|