You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
3.8 KiB

3 years ago
  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\HttpKernel\Log;
  11. use Psr\Log\AbstractLogger;
  12. use Psr\Log\InvalidArgumentException;
  13. use Psr\Log\LogLevel;
  14. /**
  15. * Minimalist PSR-3 logger designed to write in stderr or any other stream.
  16. *
  17. * @author Kévin Dunglas <dunglas@gmail.com>
  18. */
  19. class Logger extends AbstractLogger
  20. {
  21. private const LEVELS = [
  22. LogLevel::DEBUG => 0,
  23. LogLevel::INFO => 1,
  24. LogLevel::NOTICE => 2,
  25. LogLevel::WARNING => 3,
  26. LogLevel::ERROR => 4,
  27. LogLevel::CRITICAL => 5,
  28. LogLevel::ALERT => 6,
  29. LogLevel::EMERGENCY => 7,
  30. ];
  31. private $minLevelIndex;
  32. private $formatter;
  33. private $handle;
  34. public function __construct(string $minLevel = null, $output = null, callable $formatter = null)
  35. {
  36. if (null === $minLevel) {
  37. $minLevel = null === $output || 'php://stdout' === $output || 'php://stderr' === $output ? LogLevel::ERROR : LogLevel::WARNING;
  38. if (isset($_ENV['SHELL_VERBOSITY']) || isset($_SERVER['SHELL_VERBOSITY'])) {
  39. switch ((int) ($_ENV['SHELL_VERBOSITY'] ?? $_SERVER['SHELL_VERBOSITY'])) {
  40. case -1: $minLevel = LogLevel::ERROR; break;
  41. case 1: $minLevel = LogLevel::NOTICE; break;
  42. case 2: $minLevel = LogLevel::INFO; break;
  43. case 3: $minLevel = LogLevel::DEBUG; break;
  44. }
  45. }
  46. }
  47. if (!isset(self::LEVELS[$minLevel])) {
  48. throw new InvalidArgumentException(sprintf('The log level "%s" does not exist.', $minLevel));
  49. }
  50. $this->minLevelIndex = self::LEVELS[$minLevel];
  51. $this->formatter = $formatter ?: [$this, 'format'];
  52. if ($output && false === $this->handle = \is_resource($output) ? $output : @fopen($output, 'a')) {
  53. throw new InvalidArgumentException(sprintf('Unable to open "%s".', $output));
  54. }
  55. }
  56. /**
  57. * {@inheritdoc}
  58. *
  59. * @return void
  60. */
  61. public function log($level, $message, array $context = [])
  62. {
  63. if (!isset(self::LEVELS[$level])) {
  64. throw new InvalidArgumentException(sprintf('The log level "%s" does not exist.', $level));
  65. }
  66. if (self::LEVELS[$level] < $this->minLevelIndex) {
  67. return;
  68. }
  69. $formatter = $this->formatter;
  70. if ($this->handle) {
  71. @fwrite($this->handle, $formatter($level, $message, $context));
  72. } else {
  73. error_log($formatter($level, $message, $context, false));
  74. }
  75. }
  76. private function format(string $level, string $message, array $context, bool $prefixDate = true): string
  77. {
  78. if (false !== strpos($message, '{')) {
  79. $replacements = [];
  80. foreach ($context as $key => $val) {
  81. if (null === $val || is_scalar($val) || (\is_object($val) && method_exists($val, '__toString'))) {
  82. $replacements["{{$key}}"] = $val;
  83. } elseif ($val instanceof \DateTimeInterface) {
  84. $replacements["{{$key}}"] = $val->format(\DateTime::RFC3339);
  85. } elseif (\is_object($val)) {
  86. $replacements["{{$key}}"] = '[object '.\get_class($val).']';
  87. } else {
  88. $replacements["{{$key}}"] = '['.\gettype($val).']';
  89. }
  90. }
  91. $message = strtr($message, $replacements);
  92. }
  93. $log = sprintf('[%s] %s', $level, $message).\PHP_EOL;
  94. if ($prefixDate) {
  95. $log = date(\DateTime::RFC3339).' '.$log;
  96. }
  97. return $log;
  98. }
  99. }