2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Exceptions;
|
2016-02-03 15:52:25 -05:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
use Exception;
|
|
|
|
use Illuminate\Contracts\Support\Responsable;
|
2023-06-13 12:40:37 -04:00
|
|
|
use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
|
2021-05-08 13:49:58 -04:00
|
|
|
|
2023-06-13 12:40:37 -04:00
|
|
|
class PrettyException extends Exception implements Responsable, HttpExceptionInterface
|
2018-01-28 11:58:52 -05:00
|
|
|
{
|
2023-06-15 12:07:40 -04:00
|
|
|
protected ?string $subtitle = null;
|
|
|
|
protected ?string $details = null;
|
2023-06-13 12:40:37 -04:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
/**
|
|
|
|
* Render a response for when this exception occurs.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-10-26 17:04:18 -04:00
|
|
|
* {@inheritdoc}
|
2021-05-08 13:49:58 -04:00
|
|
|
*/
|
|
|
|
public function toResponse($request)
|
|
|
|
{
|
2023-06-13 12:40:37 -04:00
|
|
|
$code = $this->getStatusCode();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
return response()->view('errors.' . $code, [
|
2021-06-26 11:23:15 -04:00
|
|
|
'message' => $this->getMessage(),
|
2021-05-08 13:49:58 -04:00
|
|
|
'subtitle' => $this->subtitle,
|
2021-06-26 11:23:15 -04:00
|
|
|
'details' => $this->details,
|
2021-05-08 13:49:58 -04:00
|
|
|
], $code);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setSubtitle(string $subtitle): self
|
|
|
|
{
|
|
|
|
$this->subtitle = $subtitle;
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
public function setDetails(string $details): self
|
|
|
|
{
|
|
|
|
$this->details = $details;
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2023-06-13 12:40:37 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the desired HTTP status code for this exception.
|
|
|
|
*/
|
|
|
|
public function getStatusCode(): int
|
|
|
|
{
|
|
|
|
return ($this->getCode() === 0) ? 500 : $this->getCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the desired HTTP headers for this exception.
|
|
|
|
*/
|
|
|
|
public function getHeaders(): array
|
|
|
|
{
|
2023-06-15 12:07:40 -04:00
|
|
|
return [];
|
2023-06-13 12:40:37 -04:00
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|