src/Event/RequestIdListener.php line 26

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Event;
  4. use MarfaTech\Component\IdGenerator\Generator\IdGenerator;
  5. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  6. use Symfony\Component\HttpKernel\Event\RequestEvent;
  7. use Symfony\Component\HttpKernel\KernelEvents;
  8. class RequestIdListener implements EventSubscriberInterface
  9. {
  10.     public function __construct(
  11.         private readonly IdGenerator $idGenerator,
  12.     ) {
  13.     }
  14.     public static function getSubscribedEvents(): array
  15.     {
  16.         return [
  17.             KernelEvents::REQUEST => ['onKernelRequest'100],
  18.         ];
  19.     }
  20.     public function onKernelRequest(RequestEvent $event): void
  21.     {
  22.         if (!$event->isMainRequest()) {
  23.             return;
  24.         }
  25.         $request $event->getRequest();
  26.         if (!$request->attributes->has('requestId')) {
  27.             $requestId $this->idGenerator->generateUniqueId();
  28.             $request->attributes->set('requestId'$requestId);
  29.         }
  30.     }
  31. }