BookStack/app/Exceptions/WhoopsBookStackPrettyHandler.php

50 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace BookStack\Exceptions;
use Whoops\Handler\Handler;
class WhoopsBookStackPrettyHandler extends Handler
{
/**
* @return int|null A handler may return nothing, or a Handler::HANDLE_* constant
*/
public function handle()
{
$exception = $this->getException();
2021-10-14 16:40:22 +00:00
echo view('errors.debug', [
2021-10-15 13:16:45 +00:00
'error' => $exception->getMessage(),
'errorClass' => get_class($exception),
'trace' => $exception->getTraceAsString(),
'environment' => $this->getEnvironment(),
])->render();
2021-10-14 16:40:22 +00:00
return Handler::QUIT;
}
2021-10-15 13:16:45 +00:00
protected function safeReturn(callable $callback, $default = null)
{
try {
return $callback();
} catch (\Exception $e) {
return $default;
}
}
protected function getEnvironment(): array
{
return [
2021-10-15 13:16:45 +00:00
'PHP Version' => phpversion(),
'BookStack Version' => $this->safeReturn(function () {
$versionFile = base_path('version');
2021-10-15 13:16:45 +00:00
return trim(file_get_contents($versionFile));
}, 'unknown'),
2021-10-15 13:16:45 +00:00
'Theme Configured' => $this->safeReturn(function () {
return config('view.theme');
}) ?? 'None',
];
}
2021-10-15 13:16:45 +00:00
}