vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php line 23

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Monolog package.
  4.  *
  5.  * (c) Jordi Boggiano <j.boggiano@seld.be>
  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 Monolog\Processor;
  11. use Monolog\Utils;
  12. /**
  13.  * Processes a record's message according to PSR-3 rules
  14.  *
  15.  * It replaces {foo} with the value from $context['foo']
  16.  *
  17.  * @author Jordi Boggiano <j.boggiano@seld.be>
  18.  */
  19. class PsrLogMessageProcessor implements ProcessorInterface
  20. {
  21.     const SIMPLE_DATE "Y-m-d\TH:i:s.uP";
  22.     /** @var string|null */
  23.     private $dateFormat;
  24.     /** @var bool */
  25.     private $removeUsedContextFields;
  26.     /**
  27.      * @param string|null $dateFormat              The format of the timestamp: one supported by DateTime::format
  28.      * @param bool        $removeUsedContextFields If set to true the fields interpolated into message gets unset
  29.      */
  30.     public function __construct($dateFormat null$removeUsedContextFields false)
  31.     {
  32.         $this->dateFormat $dateFormat;
  33.         $this->removeUsedContextFields $removeUsedContextFields;
  34.     }
  35.     /**
  36.      * @param  array $record
  37.      * @return array
  38.      */
  39.     public function __invoke(array $record)
  40.     {
  41.         if (false === strpos($record['message'], '{')) {
  42.             return $record;
  43.         }
  44.         $replacements = array();
  45.         foreach ($record['context'] as $key => $val) {
  46.             $placeholder '{' $key '}';
  47.             if (strpos($record['message'], $placeholder) === false) {
  48.                 continue;
  49.             }
  50.             if (is_null($val) || is_scalar($val) || (is_object($val) && method_exists($val"__toString"))) {
  51.                 $replacements[$placeholder] = $val;
  52.             } elseif ($val instanceof \DateTime) {
  53.                 $replacements[$placeholder] = $val->format($this->dateFormat ?: static::SIMPLE_DATE);
  54.             } elseif (is_object($val)) {
  55.                 $replacements[$placeholder] = '[object '.Utils::getClass($val).']';
  56.             } elseif (is_array($val)) {
  57.                 $replacements[$placeholder] = 'array'.Utils::jsonEncode($valnulltrue);
  58.             } else {
  59.                 $replacements[$placeholder] = '['.gettype($val).']';
  60.             }
  61.             if ($this->removeUsedContextFields) {
  62.                 unset($record['context'][$key]);
  63.             }
  64.         }
  65.         $record['message'] = strtr($record['message'], $replacements);
  66.         return $record;
  67.     }
  68. }