ttrss/include/errorhandler.php

81 lines
1.8 KiB
PHP
Raw Normal View History

2013-04-16 17:41:31 +02:00
<?php
2015-12-04 13:58:20 +01:00
function format_backtrace($trace) {
$rv = "";
$idx = 1;
if (is_array($trace)) {
foreach ($trace as $e) {
if (isset($e["file"]) && isset($e["line"])) {
$fmt_args = [];
if (is_array($e["args"])) {
foreach ($e["args"] as $a) {
if (!is_object($a)) {
array_push($fmt_args, $a);
} else {
array_push($fmt_args, "[" . get_class($a) . "]");
}
}
}
$filename = str_replace(dirname(__DIR__) . "/", "", $e["file"]);
$rv .= sprintf("%d. %s(%s): %s(%s)\n",
$idx, $filename, $e["line"], $e["function"], implode(", ", $fmt_args));
$idx++;
}
}
}
return $rv;
}
function ttrss_error_handler($errno, $errstr, $file, $line) {
if (version_compare(PHP_VERSION, '8.0.0', '<')) {
if (error_reporting() == 0 || !$errno) return false;
} else {
if (!(error_reporting() & $errno)) return false;
}
2013-04-17 15:00:24 +02:00
if (error_reporting() == 0 || !$errno) return false;
2013-04-16 18:16:15 +02:00
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
2013-04-16 17:41:31 +02:00
2015-12-04 13:58:20 +01:00
$context = format_backtrace(debug_backtrace());
$errstr = truncate_middle($errstr, 16384, " (...) ");
if (class_exists("Logger"))
return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
2013-04-16 17:41:31 +02:00
}
function ttrss_fatal_handler() {
global $last_query;
2013-04-16 17:41:31 +02:00
$error = error_get_last();
if ($error !== NULL) {
2013-04-17 06:32:45 +02:00
$errno = $error["type"];
2013-04-16 17:41:31 +02:00
$file = $error["file"];
$line = $error["line"];
$errstr = $error["message"];
2013-04-17 15:00:24 +02:00
if (!$errno) return false;
2015-12-04 13:58:20 +01:00
$context = format_backtrace(debug_backtrace());
2013-04-16 17:41:31 +02:00
2013-04-16 18:16:15 +02:00
$file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
2013-04-16 17:41:31 +02:00
if ($last_query) $errstr .= " [Last query: $last_query]";
if (class_exists("Logger"))
return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
2013-04-16 17:41:31 +02:00
}
return false;
2013-04-16 17:41:31 +02:00
}
2013-04-17 22:22:34 +02:00
register_shutdown_function('ttrss_fatal_handler');
set_error_handler('ttrss_error_handler');
2017-04-26 19:24:18 +02:00