| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 4.4.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Error\Renderer;
- use Cake\Console\ConsoleOutput;
- use Cake\Core\Configure;
- use Cake\Core\Exception\CakeException;
- use Psr\Http\Message\ServerRequestInterface;
- use Throwable;
- /**
- * Plain text exception rendering with a stack trace.
- *
- * Useful in CI or plain text environments.
- *
- * @todo 5.0 Implement \Cake\Error\ExceptionRendererInterface. This implementation can't implement
- * the concrete interface because the return types are not compatible.
- */
- class ConsoleExceptionRenderer
- {
- /**
- * @var \Throwable
- */
- private $error;
- /**
- * @var \Cake\Console\ConsoleOutput
- */
- private $output;
- /**
- * @var bool
- */
- private $trace;
- /**
- * Constructor.
- *
- * @param \Throwable $error The error to render.
- * @param \Psr\Http\Message\ServerRequestInterface|null $request Not used.
- * @param array $config Error handling configuration.
- */
- public function __construct(Throwable $error, ?ServerRequestInterface $request, array $config)
- {
- $this->error = $error;
- $this->output = $config['stderr'] ?? new ConsoleOutput('php://stderr');
- $this->trace = $config['trace'] ?? true;
- }
- /**
- * Render an exception into a plain text message.
- *
- * @return \Psr\Http\Message\ResponseInterface|string
- */
- public function render()
- {
- $out = [];
- $out[] = sprintf(
- '<error>[%s] %s</error> in %s on line %s',
- get_class($this->error),
- $this->error->getMessage(),
- $this->error->getFile(),
- $this->error->getLine()
- );
- $debug = Configure::read('debug');
- if ($debug && $this->error instanceof CakeException) {
- $attributes = $this->error->getAttributes();
- if ($attributes) {
- $out[] = '';
- $out[] = '<info>Exception Attributes</info>';
- $out[] = '';
- $out[] = var_export($this->error->getAttributes(), true);
- }
- }
- if ($this->trace) {
- $out[] = '';
- $out[] = '<info>Stack Trace:</info>';
- $out[] = '';
- $out[] = $this->error->getTraceAsString();
- $out[] = '';
- }
- return join("\n", $out);
- }
- /**
- * Write output to the output stream
- *
- * @param string $output The output to print.
- * @return void
- */
- public function write($output): void
- {
- $this->output->write($output);
- }
- }
|