mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
81 lines
2.6 KiB
PHP
81 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\MessageHandler;
|
|
|
|
use App\Message\UpdateRdapServers;
|
|
use App\Repository\DomainRepository;
|
|
use App\Service\OfficialDataService;
|
|
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
|
|
use Symfony\Component\Messenger\Attribute\AsMessageHandler;
|
|
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
|
|
use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface;
|
|
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
|
|
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
|
|
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
|
|
|
#[AsMessageHandler]
|
|
final readonly class UpdateRdapServersHandler
|
|
{
|
|
public function __construct(
|
|
private OfficialDataService $officialDataService,
|
|
private ParameterBagInterface $bag, private DomainRepository $domainRepository,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* @throws TransportExceptionInterface
|
|
* @throws ServerExceptionInterface
|
|
* @throws RedirectionExceptionInterface
|
|
* @throws DecodingExceptionInterface
|
|
* @throws ClientExceptionInterface|\Throwable
|
|
*/
|
|
public function __invoke(UpdateRdapServers $message): void
|
|
{
|
|
/** @var \Throwable[] $throws */
|
|
$throws = [];
|
|
|
|
/*
|
|
* First, we update the list of TLDs from IANA because it is the official list of TLDs.
|
|
* Then, we update from ICANN because it allows to have information about generic top-level domains (gTLDs).
|
|
*/
|
|
|
|
try {
|
|
$this->officialDataService->updateTldListIANA();
|
|
$this->officialDataService->updateGTldListICANN();
|
|
$this->domainRepository->setDomainDeletedIfTldIsDeleted();
|
|
} catch (\Throwable $throwable) {
|
|
$throws[] = $throwable;
|
|
}
|
|
|
|
/*
|
|
* Finally, we take the list from IANA and import it again to allow the classification of the latest types of TLDs.
|
|
*/
|
|
|
|
try {
|
|
$this->officialDataService->updateRDAPServersFromIANA();
|
|
} catch (\Throwable $throwable) {
|
|
$throws[] = $throwable;
|
|
}
|
|
|
|
/*
|
|
* If it exists, the list of custom RDAP servers is updated at this time.
|
|
*/
|
|
|
|
try {
|
|
$this->officialDataService->updateRDAPServersFromFile($this->bag->get('custom_rdap_servers_file'));
|
|
} catch (\Throwable $throwable) {
|
|
$throws[] = $throwable;
|
|
}
|
|
|
|
try {
|
|
$this->officialDataService->updateRegistrarListIANA();
|
|
} catch (\Throwable $throwable) {
|
|
$throws[] = $throwable;
|
|
}
|
|
|
|
if (!empty($throws)) {
|
|
throw $throws[0];
|
|
}
|
|
}
|
|
}
|