2021-10-14 10:33:08 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Exceptions;
|
|
|
|
|
2023-02-06 15:41:33 -05:00
|
|
|
use Illuminate\Contracts\Foundation\ExceptionRenderer;
|
2021-10-14 10:33:08 -04:00
|
|
|
|
2023-02-06 15:41:33 -05:00
|
|
|
class BookStackExceptionHandlerPage implements ExceptionRenderer
|
2021-10-14 10:33:08 -04:00
|
|
|
{
|
2023-02-06 15:41:33 -05:00
|
|
|
public function render($throwable)
|
2021-10-14 10:33:08 -04:00
|
|
|
{
|
2023-02-06 15:41:33 -05:00
|
|
|
return view('errors.debug', [
|
|
|
|
'error' => $throwable->getMessage(),
|
|
|
|
'errorClass' => get_class($throwable),
|
|
|
|
'trace' => $throwable->getTraceAsString(),
|
2021-10-14 10:33:08 -04:00
|
|
|
'environment' => $this->getEnvironment(),
|
|
|
|
])->render();
|
|
|
|
}
|
|
|
|
|
2021-10-15 09:16:45 -04:00
|
|
|
protected function safeReturn(callable $callback, $default = null)
|
|
|
|
{
|
2021-10-14 10:33:08 -04:00
|
|
|
try {
|
|
|
|
return $callback();
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getEnvironment(): array
|
|
|
|
{
|
|
|
|
return [
|
2021-10-15 09:16:45 -04:00
|
|
|
'PHP Version' => phpversion(),
|
|
|
|
'BookStack Version' => $this->safeReturn(function () {
|
2021-10-14 10:33:08 -04:00
|
|
|
$versionFile = base_path('version');
|
2021-10-15 09:16:45 -04:00
|
|
|
|
2021-10-14 10:33:08 -04:00
|
|
|
return trim(file_get_contents($versionFile));
|
|
|
|
}, 'unknown'),
|
2021-10-15 09:16:45 -04:00
|
|
|
'Theme Configured' => $this->safeReturn(function () {
|
|
|
|
return config('view.theme');
|
|
|
|
}) ?? 'None',
|
2021-10-14 10:33:08 -04:00
|
|
|
];
|
|
|
|
}
|
2021-10-15 09:16:45 -04:00
|
|
|
}
|