123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Messenger\Command;
- use Symfony\Component\Console\Exception\RuntimeException;
- use Symfony\Component\Console\Input\InputArgument;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Output\ConsoleOutputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- use Symfony\Component\Console\Style\SymfonyStyle;
- use Symfony\Component\Messenger\Stamp\ErrorDetailsStamp;
- use Symfony\Component\Messenger\Stamp\RedeliveryStamp;
- use Symfony\Component\Messenger\Transport\Receiver\ListableReceiverInterface;
- /**
- * @author Ryan Weaver <ryan@symfonycasts.com>
- */
- class FailedMessagesShowCommand extends AbstractFailedMessagesCommand
- {
- protected static $defaultName = 'messenger:failed:show';
- /**
- * {@inheritdoc}
- */
- protected function configure(): void
- {
- $this
- ->setDefinition([
- new InputArgument('id', InputArgument::OPTIONAL, 'Specific message id to show'),
- new InputOption('max', null, InputOption::VALUE_REQUIRED, 'Maximum number of messages to list', 50),
- ])
- ->setDescription('Show one or more messages from the failure transport')
- ->setHelp(<<<'EOF'
- The <info>%command.name%</info> shows message that are pending in the failure transport.
- <info>php %command.full_name%</info>
- Or look at a specific message by its id:
- <info>php %command.full_name% {id}</info>
- EOF
- )
- ;
- }
- /**
- * {@inheritdoc}
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $io = new SymfonyStyle($input, $output instanceof ConsoleOutputInterface ? $output->getErrorOutput() : $output);
- $receiver = $this->getReceiver();
- $this->printPendingMessagesMessage($receiver, $io);
- if (!$receiver instanceof ListableReceiverInterface) {
- throw new RuntimeException(sprintf('The "%s" receiver does not support listing or showing specific messages.', $this->getReceiverName()));
- }
- if (null === $id = $input->getArgument('id')) {
- $this->listMessages($io, $input->getOption('max'));
- } else {
- $this->showMessage($id, $io);
- }
- return 0;
- }
- private function listMessages(SymfonyStyle $io, int $max)
- {
- /** @var ListableReceiverInterface $receiver */
- $receiver = $this->getReceiver();
- $envelopes = $receiver->all($max);
- $rows = [];
- foreach ($envelopes as $envelope) {
- /** @var RedeliveryStamp|null $lastRedeliveryStamp */
- $lastRedeliveryStamp = $envelope->last(RedeliveryStamp::class);
- /** @var ErrorDetailsStamp|null $lastErrorDetailsStamp */
- $lastErrorDetailsStamp = $envelope->last(ErrorDetailsStamp::class);
- $lastRedeliveryStampWithException = $this->getLastRedeliveryStampWithException($envelope, true);
- $errorMessage = '';
- if (null !== $lastErrorDetailsStamp) {
- $errorMessage = $lastErrorDetailsStamp->getExceptionMessage();
- } elseif (null !== $lastRedeliveryStampWithException) {
- // Try reading the errorMessage for messages that are still in the queue without the new ErrorDetailStamps.
- $errorMessage = $lastRedeliveryStampWithException->getExceptionMessage();
- }
- $rows[] = [
- $this->getMessageId($envelope),
- \get_class($envelope->getMessage()),
- null === $lastRedeliveryStamp ? '' : $lastRedeliveryStamp->getRedeliveredAt()->format('Y-m-d H:i:s'),
- $errorMessage,
- ];
- }
- if (0 === \count($rows)) {
- $io->success('No failed messages were found.');
- return;
- }
- $io->table(['Id', 'Class', 'Failed at', 'Error'], $rows);
- if (\count($rows) === $max) {
- $io->comment(sprintf('Showing first %d messages.', $max));
- }
- $io->comment('Run <comment>messenger:failed:show {id} -vv</comment> to see message details.');
- }
- private function showMessage(string $id, SymfonyStyle $io)
- {
- /** @var ListableReceiverInterface $receiver */
- $receiver = $this->getReceiver();
- $envelope = $receiver->find($id);
- if (null === $envelope) {
- throw new RuntimeException(sprintf('The message "%s" was not found.', $id));
- }
- $this->displaySingleMessage($envelope, $io);
- $io->writeln([
- '',
- sprintf(' Run <comment>messenger:failed:retry %s</comment> to retry this message.', $id),
- sprintf(' Run <comment>messenger:failed:remove %s</comment> to delete it.', $id),
- ]);
- }
- }
|