vendor/symfony/error-handler/Exception/FlattenException.php line 25

  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\ErrorHandler\Exception;
  11. use Symfony\Component\HttpFoundation\Exception\RequestExceptionInterface;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
  14. /**
  15.  * FlattenException wraps a PHP Error or Exception to be able to serialize it.
  16.  *
  17.  * Basically, this class removes all objects from the trace.
  18.  *
  19.  * @author Fabien Potencier <fabien@symfony.com>
  20.  */
  21. class FlattenException
  22. {
  23.     private string $message;
  24.     private string|int $code;
  25.     private ?self $previous null;
  26.     private array $trace;
  27.     private string $traceAsString;
  28.     private string $class;
  29.     private int $statusCode;
  30.     private string $statusText;
  31.     private array $headers;
  32.     private string $file;
  33.     private int $line;
  34.     private ?string $asString null;
  35.     public static function create(\Exception $exceptionint $statusCode null, array $headers = []): static
  36.     {
  37.         return static::createFromThrowable($exception$statusCode$headers);
  38.     }
  39.     public static function createFromThrowable(\Throwable $exceptionint $statusCode null, array $headers = []): static
  40.     {
  41.         $e = new static();
  42.         $e->setMessage($exception->getMessage());
  43.         $e->setCode($exception->getCode());
  44.         if ($exception instanceof HttpExceptionInterface) {
  45.             $statusCode $exception->getStatusCode();
  46.             $headers array_merge($headers$exception->getHeaders());
  47.         } elseif ($exception instanceof RequestExceptionInterface) {
  48.             $statusCode 400;
  49.         }
  50.         $statusCode ??= 500;
  51.         if (class_exists(Response::class) && isset(Response::$statusTexts[$statusCode])) {
  52.             $statusText Response::$statusTexts[$statusCode];
  53.         } else {
  54.             $statusText 'Whoops, looks like something went wrong.';
  55.         }
  56.         $e->setStatusText($statusText);
  57.         $e->setStatusCode($statusCode);
  58.         $e->setHeaders($headers);
  59.         $e->setTraceFromThrowable($exception);
  60.         $e->setClass(get_debug_type($exception));
  61.         $e->setFile($exception->getFile());
  62.         $e->setLine($exception->getLine());
  63.         $previous $exception->getPrevious();
  64.         if ($previous instanceof \Throwable) {
  65.             $e->setPrevious(static::createFromThrowable($previous));
  66.         }
  67.         return $e;
  68.     }
  69.     public function toArray(): array
  70.     {
  71.         $exceptions = [];
  72.         foreach (array_merge([$this], $this->getAllPrevious()) as $exception) {
  73.             $exceptions[] = [
  74.                 'message' => $exception->getMessage(),
  75.                 'class' => $exception->getClass(),
  76.                 'trace' => $exception->getTrace(),
  77.             ];
  78.         }
  79.         return $exceptions;
  80.     }
  81.     public function getStatusCode(): int
  82.     {
  83.         return $this->statusCode;
  84.     }
  85.     /**
  86.      * @return $this
  87.      */
  88.     public function setStatusCode(int $code): static
  89.     {
  90.         $this->statusCode $code;
  91.         return $this;
  92.     }
  93.     public function getHeaders(): array
  94.     {
  95.         return $this->headers;
  96.     }
  97.     /**
  98.      * @return $this
  99.      */
  100.     public function setHeaders(array $headers): static
  101.     {
  102.         $this->headers $headers;
  103.         return $this;
  104.     }
  105.     public function getClass(): string
  106.     {
  107.         return $this->class;
  108.     }
  109.     /**
  110.      * @return $this
  111.      */
  112.     public function setClass(string $class): static
  113.     {
  114.         $this->class str_contains($class"@anonymous\0") ? (get_parent_class($class) ?: key(class_implements($class)) ?: 'class').'@anonymous' $class;
  115.         return $this;
  116.     }
  117.     public function getFile(): string
  118.     {
  119.         return $this->file;
  120.     }
  121.     /**
  122.      * @return $this
  123.      */
  124.     public function setFile(string $file): static
  125.     {
  126.         $this->file $file;
  127.         return $this;
  128.     }
  129.     public function getLine(): int
  130.     {
  131.         return $this->line;
  132.     }
  133.     /**
  134.      * @return $this
  135.      */
  136.     public function setLine(int $line): static
  137.     {
  138.         $this->line $line;
  139.         return $this;
  140.     }
  141.     public function getStatusText(): string
  142.     {
  143.         return $this->statusText;
  144.     }
  145.     /**
  146.      * @return $this
  147.      */
  148.     public function setStatusText(string $statusText): static
  149.     {
  150.         $this->statusText $statusText;
  151.         return $this;
  152.     }
  153.     public function getMessage(): string
  154.     {
  155.         return $this->message;
  156.     }
  157.     /**
  158.      * @return $this
  159.      */
  160.     public function setMessage(string $message): static
  161.     {
  162.         if (str_contains($message"@anonymous\0")) {
  163.             $message preg_replace_callback('/[a-zA-Z_\x7f-\xff][\\\\a-zA-Z0-9_\x7f-\xff]*+@anonymous\x00.*?\.php(?:0x?|:[0-9]++\$)[0-9a-fA-F]++/', function ($m) {
  164.                 return class_exists($m[0], false) ? (get_parent_class($m[0]) ?: key(class_implements($m[0])) ?: 'class').'@anonymous' $m[0];
  165.             }, $message);
  166.         }
  167.         $this->message $message;
  168.         return $this;
  169.     }
  170.     /**
  171.      * @return int|string int most of the time (might be a string with PDOException)
  172.      */
  173.     public function getCode(): int|string
  174.     {
  175.         return $this->code;
  176.     }
  177.     /**
  178.      * @return $this
  179.      */
  180.     public function setCode(int|string $code): static
  181.     {
  182.         $this->code $code;
  183.         return $this;
  184.     }
  185.     public function getPrevious(): ?self
  186.     {
  187.         return $this->previous;
  188.     }
  189.     /**
  190.      * @return $this
  191.      */
  192.     public function setPrevious(?self $previous): static
  193.     {
  194.         $this->previous $previous;
  195.         return $this;
  196.     }
  197.     /**
  198.      * @return self[]
  199.      */
  200.     public function getAllPrevious(): array
  201.     {
  202.         $exceptions = [];
  203.         $e $this;
  204.         while ($e $e->getPrevious()) {
  205.             $exceptions[] = $e;
  206.         }
  207.         return $exceptions;
  208.     }
  209.     public function getTrace(): array
  210.     {
  211.         return $this->trace;
  212.     }
  213.     /**
  214.      * @return $this
  215.      */
  216.     public function setTraceFromThrowable(\Throwable $throwable): static
  217.     {
  218.         $this->traceAsString $throwable->getTraceAsString();
  219.         return $this->setTrace($throwable->getTrace(), $throwable->getFile(), $throwable->getLine());
  220.     }
  221.     /**
  222.      * @return $this
  223.      */
  224.     public function setTrace(array $trace, ?string $file, ?int $line): static
  225.     {
  226.         $this->trace = [];
  227.         $this->trace[] = [
  228.             'namespace' => '',
  229.             'short_class' => '',
  230.             'class' => '',
  231.             'type' => '',
  232.             'function' => '',
  233.             'file' => $file,
  234.             'line' => $line,
  235.             'args' => [],
  236.         ];
  237.         foreach ($trace as $entry) {
  238.             $class '';
  239.             $namespace '';
  240.             if (isset($entry['class'])) {
  241.                 $parts explode('\\'$entry['class']);
  242.                 $class array_pop($parts);
  243.                 $namespace implode('\\'$parts);
  244.             }
  245.             $this->trace[] = [
  246.                 'namespace' => $namespace,
  247.                 'short_class' => $class,
  248.                 'class' => $entry['class'] ?? '',
  249.                 'type' => $entry['type'] ?? '',
  250.                 'function' => $entry['function'] ?? null,
  251.                 'file' => $entry['file'] ?? null,
  252.                 'line' => $entry['line'] ?? null,
  253.                 'args' => isset($entry['args']) ? $this->flattenArgs($entry['args']) : [],
  254.             ];
  255.         }
  256.         return $this;
  257.     }
  258.     private function flattenArgs(array $argsint $level 0int &$count 0): array
  259.     {
  260.         $result = [];
  261.         foreach ($args as $key => $value) {
  262.             if (++$count 1e4) {
  263.                 return ['array''*SKIPPED over 10000 entries*'];
  264.             }
  265.             if ($value instanceof \__PHP_Incomplete_Class) {
  266.                 $result[$key] = ['incomplete-object'$this->getClassNameFromIncomplete($value)];
  267.             } elseif (\is_object($value)) {
  268.                 $result[$key] = ['object'get_debug_type($value)];
  269.             } elseif (\is_array($value)) {
  270.                 if ($level 10) {
  271.                     $result[$key] = ['array''*DEEP NESTED ARRAY*'];
  272.                 } else {
  273.                     $result[$key] = ['array'$this->flattenArgs($value$level 1$count)];
  274.                 }
  275.             } elseif (null === $value) {
  276.                 $result[$key] = ['null'null];
  277.             } elseif (\is_bool($value)) {
  278.                 $result[$key] = ['boolean'$value];
  279.             } elseif (\is_int($value)) {
  280.                 $result[$key] = ['integer'$value];
  281.             } elseif (\is_float($value)) {
  282.                 $result[$key] = ['float'$value];
  283.             } elseif (\is_resource($value)) {
  284.                 $result[$key] = ['resource'get_resource_type($value)];
  285.             } else {
  286.                 $result[$key] = ['string', (string) $value];
  287.             }
  288.         }
  289.         return $result;
  290.     }
  291.     private function getClassNameFromIncomplete(\__PHP_Incomplete_Class $value): string
  292.     {
  293.         $array = new \ArrayObject($value);
  294.         return $array['__PHP_Incomplete_Class_Name'];
  295.     }
  296.     public function getTraceAsString(): string
  297.     {
  298.         return $this->traceAsString;
  299.     }
  300.     /**
  301.      * @return $this
  302.      */
  303.     public function setAsString(?string $asString): static
  304.     {
  305.         $this->asString $asString;
  306.         return $this;
  307.     }
  308.     public function getAsString(): string
  309.     {
  310.         if (null !== $this->asString) {
  311.             return $this->asString;
  312.         }
  313.         $message '';
  314.         $next false;
  315.         foreach (array_reverse(array_merge([$this], $this->getAllPrevious())) as $exception) {
  316.             if ($next) {
  317.                 $message .= 'Next ';
  318.             } else {
  319.                 $next true;
  320.             }
  321.             $message .= $exception->getClass();
  322.             if ('' != $exception->getMessage()) {
  323.                 $message .= ': '.$exception->getMessage();
  324.             }
  325.             $message .= ' in '.$exception->getFile().':'.$exception->getLine().
  326.                 "\nStack trace:\n".$exception->getTraceAsString()."\n\n";
  327.         }
  328.         return rtrim($message);
  329.     }
  330. }