]> git.wh0rd.org - tt-rss.git/blame - include/errorhandler.php
pngcrush.sh
[tt-rss.git] / include / errorhandler.php
CommitLineData
889a5f9f 1<?php
b8619f8d
AD
2function 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
889a5f9f 34function ttrss_error_handler($errno, $errstr, $file, $line, $context) {
eefaa2df 35 if (error_reporting() == 0 || !$errno) return false;
7a51032c 36
4e53956a 37 $file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
889a5f9f 38
b8619f8d 39 $context = format_backtrace(debug_backtrace());
cc43e19b 40 $errstr = truncate_middle($errstr, 16384, " (...) ");
475d7628 41
15d52d51
AD
42 if (class_exists("Logger"))
43 return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
889a5f9f
AD
44}
45
46function ttrss_fatal_handler() {
475d7628 47 global $last_query;
889a5f9f 48
889a5f9f
AD
49 $error = error_get_last();
50
51 if ($error !== NULL) {
77be1217 52 $errno = $error["type"];
889a5f9f
AD
53 $file = $error["file"];
54 $line = $error["line"];
55 $errstr = $error["message"];
56
eefaa2df
AD
57 if (!$errno) return false;
58
b8619f8d 59 $context = format_backtrace(debug_backtrace());
889a5f9f 60
4e53956a 61 $file = substr(str_replace(dirname(dirname(__FILE__)), "", $file), 1);
889a5f9f 62
475d7628
AD
63 if ($last_query) $errstr .= " [Last query: $last_query]";
64
15d52d51
AD
65 if (class_exists("Logger"))
66 return Logger::get()->log_error($errno, $errstr, $file, $line, $context);
889a5f9f 67 }
aca75cb5
AD
68
69 return false;
889a5f9f
AD
70}
71
7329ab2d
AD
72register_shutdown_function('ttrss_fatal_handler');
73set_error_handler('ttrss_error_handler');
ea79a0e0 74