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

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