]> git.wh0rd.org - tt-rss.git/blob - include/errorhandler.php
pngcrush.sh
[tt-rss.git] / include / errorhandler.php
1 <?php
2 function format_backtrace($trace) {
3 $rv = "";
4 $idx = 1;
5
6 if (is_array($trace)) {
7 foreach ($trace as $e) {
8 if (isset($e["file"]) && isset($e["line"])) {
9 $fmt_args = [];
10
11 if (is_array($e["args"])) {
12 foreach ($e["args"] as $a) {
13 if (!is_object($a)) {
14 array_push($fmt_args, $a);
15 } else {
16 array_push($fmt_args, "[" . get_class($a) . "]");
17 }
18 }
19 }
20
21 $filename = str_replace(dirname(__DIR__) . "/", "", $e["file"]);
22
23 $rv .= sprintf("%d. %s(%s): %s(%s)\n",
24 $idx, $filename, $e["line"], $e["function"], implode(", ", $fmt_args));
25
26 $idx++;
27 }
28 }
29 }
30
31 return $rv;
32 }
33
34 function ttrss_error_handler($errno, $errstr, $file, $line, $context) {
35 if (error_reporting() == 0 || !$errno) return false;
36
37 $file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
38
39 $context = format_backtrace(debug_backtrace());
40 $errstr = truncate_middle($errstr, 16384, " (...) ");
41
42 if (class_exists("Logger"))
43 return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
44 }
45
46 function ttrss_fatal_handler() {
47 global $last_query;
48
49 $error = error_get_last();
50
51 if ($error !== NULL) {
52 $errno = $error["type"];
53 $file = $error["file"];
54 $line = $error["line"];
55 $errstr = $error["message"];
56
57 if (!$errno) return false;
58
59 $context = format_backtrace(debug_backtrace());
60
61 $file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
62
63 if ($last_query) $errstr .= " [Last query: $last_query]";
64
65 if (class_exists("Logger"))
66 return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
67 }
68
69 return false;
70 }
71
72 register_shutdown_function('ttrss_fatal_handler');
73 set_error_handler('ttrss_error_handler');
74