Files
domain-watchdog/src/MessageHandler/UpdateDomainsFromWatchlistHandler.php

117 lines
5.0 KiB
PHP
Raw Normal View History

<?php
namespace App\MessageHandler;
use App\Entity\Domain;
use App\Entity\WatchList;
2024-08-26 23:45:30 +02:00
use App\Message\OrderDomain;
use App\Message\SendDomainEventNotif;
use App\Message\UpdateDomainsFromWatchlist;
2025-01-02 18:08:51 +01:00
use App\Notifier\DomainDeletedNotification;
2024-08-16 23:23:51 +02:00
use App\Notifier\DomainUpdateErrorNotification;
use App\Repository\WatchListRepository;
2025-01-02 18:08:51 +01:00
use App\Service\ChatNotificationService;
use App\Service\RDAPService;
2024-08-04 14:45:27 +02:00
use Psr\Log\LoggerInterface;
2024-08-27 00:09:25 +02:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
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\Messenger\MessageBusInterface;
2024-08-05 01:30:27 +02:00
use Symfony\Component\Mime\Address;
2024-08-16 23:23:51 +02:00
use Symfony\Component\Notifier\Recipient\Recipient;
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
#[AsMessageHandler]
2024-08-26 23:45:30 +02:00
final readonly class UpdateDomainsFromWatchlistHandler
{
2024-08-16 23:23:51 +02:00
private Address $sender;
public function __construct(
2024-08-02 23:24:52 +02:00
private RDAPService $RDAPService,
2025-01-02 18:08:51 +01:00
private ChatNotificationService $chatNotificationService,
2024-08-02 23:24:52 +02:00
private MailerInterface $mailer,
2024-08-16 23:23:51 +02:00
string $mailerSenderEmail,
string $mailerSenderName,
private MessageBusInterface $bus,
2024-08-04 14:45:27 +02:00
private WatchListRepository $watchListRepository,
private LoggerInterface $logger,
2024-08-02 23:24:52 +02:00
) {
2024-08-16 23:23:51 +02:00
$this->sender = new Address($mailerSenderEmail, $mailerSenderName);
}
/**
* @throws ExceptionInterface
* @throws TransportExceptionInterface
* @throws ClientExceptionInterface
* @throws DecodingExceptionInterface
* @throws RedirectionExceptionInterface
* @throws ServerExceptionInterface
* @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface
* @throws \Throwable
*/
2024-08-26 23:45:30 +02:00
public function __invoke(UpdateDomainsFromWatchlist $message): void
{
/** @var WatchList $watchList */
2024-08-02 23:24:52 +02:00
$watchList = $this->watchListRepository->findOneBy(['token' => $message->watchListToken]);
2024-08-04 14:45:27 +02:00
$this->logger->info('Domain names from Watchlist {token} will be processed.', [
'token' => $message->watchListToken,
]);
/*
* A domain name is updated if one or more of these conditions are met:
* - was updated more than 7 days ago
2025-01-04 19:35:55 +01:00
* - has statuses that suggest it will expire soon AND was updated more than 15 minutes ago
* - has specific statuses that suggest there is a dispute between the registrant and the registrar AND was updated more than a day ago
*/
/** @var Domain $domain */
2024-12-07 20:08:29 +01:00
foreach ($watchList->getDomains()->filter(fn ($domain) => $domain->isToBeUpdated(false)) as $domain
) {
$updatedAt = $domain->getUpdatedAt();
try {
/*
* Domain name update
* We send messages that correspond to the sending of notifications that will not be processed here.
*/
2024-08-10 23:29:31 +02:00
$this->RDAPService->registerDomain($domain->getLdhName());
$this->bus->dispatch(new SendDomainEventNotif($watchList->getToken(), $domain->getLdhName(), $updatedAt));
2024-08-27 00:09:25 +02:00
} catch (NotFoundHttpException) {
2025-01-04 17:35:12 +01:00
if (!$domain->getDeleted()) {
$notification = (new DomainDeletedNotification($this->sender, $domain));
$this->mailer->send($notification->asEmailMessage(new Recipient($watchList->getUser()->getEmail()))->getMessage());
$this->chatNotificationService->sendChatNotification($watchList, $notification);
}
2025-01-02 18:08:51 +01:00
2024-08-27 00:09:25 +02:00
if (null !== $watchList->getConnector()) {
/*
* If the domain name no longer appears in the WHOIS AND a connector is associated with this Watchlist,
* this connector is used to purchase the domain name.
*/
2024-08-27 00:09:25 +02:00
$this->bus->dispatch(new OrderDomain($watchList->getToken(), $domain->getLdhName(), $updatedAt));
}
2024-08-02 23:24:52 +02:00
} catch (\Throwable $e) {
/*
* In case of another unknown error,
* the owner of the Watchlist is informed that an error occurred in updating the domain name.
*/
2024-08-10 23:11:59 +02:00
$this->logger->error('An update error email is sent to user {username}.', [
2024-08-04 14:45:27 +02:00
'username' => $watchList->getUser()->getUserIdentifier(),
2024-08-10 23:11:59 +02:00
'error' => $e,
2024-08-04 14:45:27 +02:00
]);
2024-08-16 23:23:51 +02:00
$email = (new DomainUpdateErrorNotification($this->sender, $domain))
->asEmailMessage(new Recipient($watchList->getUser()->getEmail()));
$this->mailer->send($email->getMessage());
2024-08-10 23:31:34 +02:00
throw $e;
}
}
}
}