vendor/symfony/monolog-bridge/Handler/ConsoleHandler.php line 177

Open in your IDE?
  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\Bridge\Monolog\Handler;
  11. use Monolog\Formatter\FormatterInterface;
  12. use Monolog\Formatter\LineFormatter;
  13. use Monolog\Handler\AbstractProcessingHandler;
  14. use Monolog\Logger;
  15. use Monolog\LogRecord;
  16. use Symfony\Bridge\Monolog\Formatter\ConsoleFormatter;
  17. use Symfony\Component\Console\ConsoleEvents;
  18. use Symfony\Component\Console\Event\ConsoleCommandEvent;
  19. use Symfony\Component\Console\Event\ConsoleTerminateEvent;
  20. use Symfony\Component\Console\Output\ConsoleOutputInterface;
  21. use Symfony\Component\Console\Output\OutputInterface;
  22. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  23. use Symfony\Component\VarDumper\Dumper\CliDumper;
  24. if (Logger::API >= 3) {
  25.     /**
  26.      * The base class for compatibility between Monolog 3 LogRecord and Monolog 1/2 array records.
  27.      *
  28.      * @author Jordi Boggiano <j.boggiano@seld.be>
  29.      *
  30.      * @internal
  31.      */
  32.     trait CompatibilityIsHandlingHandler
  33.     {
  34.         abstract private function doIsHandling(array|LogRecord $record): bool;
  35.         /**
  36.          * {@inheritdoc}
  37.          */
  38.         public function isHandling(LogRecord $record): bool
  39.         {
  40.             return $this->doIsHandling($record);
  41.         }
  42.     }
  43. } else {
  44.     /**
  45.      * The base class for compatibility between Monolog 3 LogRecord and Monolog 1/2 array records.
  46.      *
  47.      * @author Jordi Boggiano <j.boggiano@seld.be>
  48.      *
  49.      * @internal
  50.      */
  51.     trait CompatibilityIsHandlingHandler
  52.     {
  53.         abstract private function doIsHandling(array|LogRecord $record): bool;
  54.         /**
  55.          * {@inheritdoc}
  56.          */
  57.         public function isHandling(array $record): bool
  58.         {
  59.             return $this->doIsHandling($record);
  60.         }
  61.     }
  62. }
  63. /**
  64.  * Writes logs to the console output depending on its verbosity setting.
  65.  *
  66.  * It is disabled by default and gets activated as soon as a command is executed.
  67.  * Instead of listening to the console events, the output can also be set manually.
  68.  *
  69.  * The minimum logging level at which this handler will be triggered depends on the
  70.  * verbosity setting of the console output. The default mapping is:
  71.  * - OutputInterface::VERBOSITY_NORMAL will show all WARNING and higher logs
  72.  * - OutputInterface::VERBOSITY_VERBOSE (-v) will show all NOTICE and higher logs
  73.  * - OutputInterface::VERBOSITY_VERY_VERBOSE (-vv) will show all INFO and higher logs
  74.  * - OutputInterface::VERBOSITY_DEBUG (-vvv) will show all DEBUG and higher logs, i.e. all logs
  75.  *
  76.  * This mapping can be customized with the $verbosityLevelMap constructor parameter.
  77.  *
  78.  * @author Tobias Schultze <http://tobion.de>
  79.  *
  80.  * @final since Symfony 6.1
  81.  */
  82. class ConsoleHandler extends AbstractProcessingHandler implements EventSubscriberInterface
  83. {
  84.     use CompatibilityHandler;
  85.     use CompatibilityIsHandlingHandler;
  86.     use CompatibilityProcessingHandler;
  87.     private ?OutputInterface $output;
  88.     private array $verbosityLevelMap = [
  89.         OutputInterface::VERBOSITY_QUIET => Logger::ERROR,
  90.         OutputInterface::VERBOSITY_NORMAL => Logger::WARNING,
  91.         OutputInterface::VERBOSITY_VERBOSE => Logger::NOTICE,
  92.         OutputInterface::VERBOSITY_VERY_VERBOSE => Logger::INFO,
  93.         OutputInterface::VERBOSITY_DEBUG => Logger::DEBUG,
  94.     ];
  95.     private array $consoleFormatterOptions;
  96.     /**
  97.      * @param OutputInterface|null $output            The console output to use (the handler remains disabled when passing null
  98.      *                                                until the output is set, e.g. by using console events)
  99.      * @param bool                 $bubble            Whether the messages that are handled can bubble up the stack
  100.      * @param array                $verbosityLevelMap Array that maps the OutputInterface verbosity to a minimum logging
  101.      *                                                level (leave empty to use the default mapping)
  102.      */
  103.     public function __construct(OutputInterface $output nullbool $bubble true, array $verbosityLevelMap = [], array $consoleFormatterOptions = [])
  104.     {
  105.         parent::__construct(Logger::DEBUG$bubble);
  106.         $this->output $output;
  107.         if ($verbosityLevelMap) {
  108.             $this->verbosityLevelMap $verbosityLevelMap;
  109.         }
  110.         $this->consoleFormatterOptions $consoleFormatterOptions;
  111.     }
  112.     /**
  113.      * {@inheritdoc}
  114.      */
  115.     private function doIsHandling(array|LogRecord $record): bool
  116.     {
  117.         return $this->updateLevel() && parent::isHandling($record);
  118.     }
  119.     /**
  120.      * {@inheritdoc}
  121.      */
  122.     private function doHandle(array|LogRecord $record): bool
  123.     {
  124.         // we have to update the logging level each time because the verbosity of the
  125.         // console output might have changed in the meantime (it is not immutable)
  126.         return $this->updateLevel() && parent::handle($record);
  127.     }
  128.     /**
  129.      * Sets the console output to use for printing logs.
  130.      */
  131.     public function setOutput(OutputInterface $output)
  132.     {
  133.         $this->output $output;
  134.     }
  135.     /**
  136.      * Disables the output.
  137.      */
  138.     public function close(): void
  139.     {
  140.         $this->output null;
  141.         parent::close();
  142.     }
  143.     /**
  144.      * Before a command is executed, the handler gets activated and the console output
  145.      * is set in order to know where to write the logs.
  146.      */
  147.     public function onCommand(ConsoleCommandEvent $event)
  148.     {
  149.         $output $event->getOutput();
  150.         if ($output instanceof ConsoleOutputInterface) {
  151.             $output $output->getErrorOutput();
  152.         }
  153.         $this->setOutput($output);
  154.     }
  155.     /**
  156.      * After a command has been executed, it disables the output.
  157.      */
  158.     public function onTerminate(ConsoleTerminateEvent $event)
  159.     {
  160.         $this->close();
  161.     }
  162.     /**
  163.      * {@inheritdoc}
  164.      */
  165.     public static function getSubscribedEvents(): array
  166.     {
  167.         return [
  168.             ConsoleEvents::COMMAND => ['onCommand'255],
  169.             ConsoleEvents::TERMINATE => ['onTerminate', -255],
  170.         ];
  171.     }
  172.     private function doWrite(array|LogRecord $record): void
  173.     {
  174.         // at this point we've determined for sure that we want to output the record, so use the output's own verbosity
  175.         $this->output->write((string) $record['formatted'], false$this->output->getVerbosity());
  176.     }
  177.     /**
  178.      * {@inheritdoc}
  179.      */
  180.     protected function getDefaultFormatter(): FormatterInterface
  181.     {
  182.         if (!class_exists(CliDumper::class)) {
  183.             return new LineFormatter();
  184.         }
  185.         if (!$this->output) {
  186.             return new ConsoleFormatter($this->consoleFormatterOptions);
  187.         }
  188.         return new ConsoleFormatter(array_replace([
  189.             'colors' => $this->output->isDecorated(),
  190.             'multiline' => OutputInterface::VERBOSITY_DEBUG <= $this->output->getVerbosity(),
  191.         ], $this->consoleFormatterOptions));
  192.     }
  193.     /**
  194.      * Updates the logging level based on the verbosity setting of the console output.
  195.      *
  196.      * @return bool Whether the handler is enabled and verbosity is not set to quiet
  197.      */
  198.     private function updateLevel(): bool
  199.     {
  200.         if (null === $this->output) {
  201.             return false;
  202.         }
  203.         $verbosity $this->output->getVerbosity();
  204.         if (isset($this->verbosityLevelMap[$verbosity])) {
  205.             $this->setLevel($this->verbosityLevelMap[$verbosity]);
  206.         } else {
  207.             $this->setLevel(Logger::DEBUG);
  208.         }
  209.         return true;
  210.     }
  211. }