src/Core/Domain/Infrastructure/Handler.php line 43

  1. <?php
  2.     namespace App\Core\Domain\Infrastructure;
  3.     use Symfony\Component\Messenger\Exception\HandlerFailedException;
  4.     use Symfony\Component\Messenger\Exception\LogicException;
  5.     use Symfony\Component\Messenger\Exception\RuntimeException;
  6.     use Symfony\Component\Messenger\MessageBusInterface;
  7.     use Symfony\Component\Messenger\Stamp\HandledStamp;
  8.     /**
  9.      * Class Handler
  10.      * @package App\Core\Infrastructure
  11.      */
  12.     final class Handler implements HandlerInterface
  13.     {
  14.         /**
  15.          * @param MessageBusInterface $messageBus
  16.          */
  17.         public function __construct(
  18.             protected MessageBusInterface $messageBus,
  19.         )
  20.         {
  21.         }
  22.         /**
  23.          * @param object $message
  24.          *
  25.          * @return mixed
  26.          * @throws \Throwable
  27.          * @see \Symfony\Component\Messenger\HandleTrait
  28.          */
  29.         public function handle(object $message): mixed
  30.         {
  31.             if (!$this->messageBus instanceof MessageBusInterface) {
  32.                 throw new LogicException(sprintf('You must provide a "%s" instance in the "%s::$messageBus" property, "%s" given.'MessageBusInterface::class, static::class, get_debug_type($this->messageBus)));
  33.             }
  34.             try
  35.             {
  36.                 $envelope $this->messageBus->dispatch($message);
  37.             }
  38.             catch (HandlerFailedException $handlerFailedException)
  39.             {
  40.                 $current \current($handlerFailedException->getNestedExceptions());
  41.                 if($current->getPrevious()?->getPrevious() instanceof \Exception)
  42.                 {
  43.                     throw $current->getPrevious()->getPrevious();
  44.                 }
  45.                 if($current->getPrevious() instanceof \Exception)
  46.                 {
  47.                     throw $current->getPrevious();
  48.                 }
  49.                 throw $current;
  50.             }
  51.             /** @var HandledStamp[] $handledStamps */
  52.             $handledStamps $envelope->all(HandledStamp::class);
  53.             if (!$handledStamps) {
  54.                 throw new LogicException(sprintf('Message of type "%s" was handled zero times. Exactly one handler is expected when using "%s::%s()".'get_debug_type($envelope->getMessage()), static::class, __FUNCTION__));
  55.             }
  56.             if (\count($handledStamps) > 1) {
  57.                 $handlers implode(', 'array_map(function (HandledStamp $stamp): string {
  58.                     return sprintf('"%s"'$stamp->getHandlerName());
  59.                 }, $handledStamps));
  60.                 throw new LogicException(sprintf('Message of type "%s" was handled multiple times. Only one handler is expected when using "%s::%s()", got %d: %s.'get_debug_type($envelope->getMessage()), static::class, __FUNCTION__\count($handledStamps), $handlers));
  61.             }
  62.             return $handledStamps[0]->getResult();
  63.         }
  64.         /**
  65.          * @param object $message
  66.          *
  67.          * @return \Symfony\Component\Messenger\Envelope
  68.          */
  69.         public function dispatch(object $message): \Symfony\Component\Messenger\Envelope
  70.         {
  71.             return $this->messageBus->dispatch($message);
  72.         }
  73.     }