mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
feat: Print early exceptions in debug mode instead of plain error pages
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
a88c1bdfb6
commit
efc3d76e43
1 changed files with 19 additions and 11 deletions
|
|
@ -275,8 +275,10 @@ class OC_Template extends \OC\Template\Base {
|
|||
* @suppress PhanAccessMethodInternal
|
||||
*/
|
||||
public static function printExceptionErrorPage($exception, $statusCode = 503) {
|
||||
$debug = false;
|
||||
http_response_code($statusCode);
|
||||
try {
|
||||
$debug = \OC::$server->getSystemConfig()->getValue('debug', false);
|
||||
$request = \OC::$server->getRequest();
|
||||
$content = new \OC_Template('', 'exception', 'error', false);
|
||||
$content->assign('errorClass', get_class($exception));
|
||||
|
|
@ -285,7 +287,7 @@ class OC_Template extends \OC\Template\Base {
|
|||
$content->assign('file', $exception->getFile());
|
||||
$content->assign('line', $exception->getLine());
|
||||
$content->assign('exception', $exception);
|
||||
$content->assign('debugMode', \OC::$server->getSystemConfig()->getValue('debug', false));
|
||||
$content->assign('debugMode', $debug);
|
||||
$content->assign('remoteAddr', $request->getRemoteAddress());
|
||||
$content->assign('requestID', $request->getId());
|
||||
$content->printPage();
|
||||
|
|
@ -296,22 +298,28 @@ class OC_Template extends \OC\Template\Base {
|
|||
$logger->logException($e, ['app' => 'core']);
|
||||
} catch (Throwable $e) {
|
||||
// no way to log it properly - but to avoid a white page of death we send some output
|
||||
header('Content-Type: text/plain; charset=utf-8');
|
||||
print("Internal Server Error\n\n");
|
||||
print("The server encountered an internal error and was unable to complete your request.\n");
|
||||
print("Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\n");
|
||||
print("More details can be found in the server log.\n");
|
||||
self::printPlainErrorPage($e, $debug);
|
||||
|
||||
// and then throw it again to log it at least to the web server error log
|
||||
throw $e;
|
||||
}
|
||||
|
||||
header('Content-Type: text/plain; charset=utf-8');
|
||||
print("Internal Server Error\n\n");
|
||||
print("The server encountered an internal error and was unable to complete your request.\n");
|
||||
print("Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\n");
|
||||
print("More details can be found in the server log.\n");
|
||||
self::printPlainErrorPage($e, $debug);
|
||||
}
|
||||
die();
|
||||
}
|
||||
|
||||
private static function printPlainErrorPage(\Throwable $exception, bool $debug = false) {
|
||||
header('Content-Type: text/plain; charset=utf-8');
|
||||
print("Internal Server Error\n\n");
|
||||
print("The server encountered an internal error and was unable to complete your request.\n");
|
||||
print("Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\n");
|
||||
print("More details can be found in the server log.\n");
|
||||
|
||||
if ($debug) {
|
||||
print("\n");
|
||||
print($exception->getMessage() . ' ' . $exception->getFile() . ' at ' . $exception->getLine() . "\n");
|
||||
print($exception->getTraceAsString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue