BookStack/app/Exceptions/BookStackExceptionHandlerPage.php

43 lines
1.2 KiB
PHP
Raw Normal View History

<?php
namespace BookStack\Exceptions;
2023-02-06 20:41:33 +00:00
use Illuminate\Contracts\Foundation\ExceptionRenderer;
2023-02-06 20:41:33 +00:00
class BookStackExceptionHandlerPage implements ExceptionRenderer
{
2023-02-06 20:41:33 +00:00
public function render($throwable)
{
2023-02-06 20:41:33 +00:00
return view('errors.debug', [
'error' => $throwable->getMessage(),
'errorClass' => get_class($throwable),
'trace' => $throwable->getTraceAsString(),
'environment' => $this->getEnvironment(),
])->render();
}
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
}