vendor/symfony/messenger/Middleware/SendMessageMiddleware.php line 62

  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Messenger\Middleware;
  11. use Psr\EventDispatcher\EventDispatcherInterface;
  12. use Psr\Log\LoggerAwareTrait;
  13. use Psr\Log\NullLogger;
  14. use Symfony\Component\Messenger\Envelope;
  15. use Symfony\Component\Messenger\Event\SendMessageToTransportsEvent;
  16. use Symfony\Component\Messenger\Exception\NoSenderForMessageException;
  17. use Symfony\Component\Messenger\Stamp\ReceivedStamp;
  18. use Symfony\Component\Messenger\Stamp\SentStamp;
  19. use Symfony\Component\Messenger\Transport\Sender\SendersLocatorInterface;
  20. /**
  21.  * @author Samuel Roze <samuel.roze@gmail.com>
  22.  * @author Tobias Schultze <http://tobion.de>
  23.  */
  24. class SendMessageMiddleware implements MiddlewareInterface
  25. {
  26.     use LoggerAwareTrait;
  27.     private SendersLocatorInterface $sendersLocator;
  28.     private ?EventDispatcherInterface $eventDispatcher;
  29.     private bool $allowNoSenders;
  30.     public function __construct(SendersLocatorInterface $sendersLocatorEventDispatcherInterface $eventDispatcher nullbool $allowNoSenders true)
  31.     {
  32.         $this->sendersLocator $sendersLocator;
  33.         $this->eventDispatcher $eventDispatcher;
  34.         $this->allowNoSenders $allowNoSenders;
  35.         $this->logger = new NullLogger();
  36.     }
  37.     public function handle(Envelope $envelopeStackInterface $stack): Envelope
  38.     {
  39.         $context = [
  40.             'class' => \get_class($envelope->getMessage()),
  41.         ];
  42.         $sender null;
  43.         if ($envelope->all(ReceivedStamp::class)) {
  44.             // it's a received message, do not send it back
  45.             $this->logger->info('Received message {class}'$context);
  46.         } else {
  47.             $shouldDispatchEvent true;
  48.             $senders $this->sendersLocator->getSenders($envelope);
  49.             $senders \is_array($senders) ? $senders iterator_to_array($senders);
  50.             foreach ($senders as $alias => $sender) {
  51.                 if (null !== $this->eventDispatcher && $shouldDispatchEvent) {
  52.                     $event = new SendMessageToTransportsEvent($envelope$senders);
  53.                     $this->eventDispatcher->dispatch($event);
  54.                     $envelope $event->getEnvelope();
  55.                     $shouldDispatchEvent false;
  56.                 }
  57.                 $this->logger->info('Sending message {class} with {alias} sender using {sender}'$context + ['alias' => $alias'sender' => $sender::class]);
  58.                 $envelope $sender->send($envelope->with(new SentStamp($sender::class, \is_string($alias) ? $alias null)));
  59.             }
  60.             if (!$this->allowNoSenders && !$sender) {
  61.                 throw new NoSenderForMessageException(sprintf('No sender for message "%s".'$context['class']));
  62.             }
  63.         }
  64.         if (null === $sender) {
  65.             return $stack->next()->handle($envelope$stack);
  66.         }
  67.         // message should only be sent and not be handled by the next middleware
  68.         return $envelope;
  69.     }
  70. }