1 | <?php
|
---|
2 | /*
|
---|
3 | * Project: NodeMap2.0
|
---|
4 | * File: LogHandler.class.php
|
---|
5 | * Purpose: Handling our log file containing log entries generated by the application
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Log levels:
|
---|
10 | * SYSLOG_EMERG System is unusable
|
---|
11 | * SYSLOG_ALERT Action must be taken immediately
|
---|
12 | * SYSLOG_CRIT Critical conditions
|
---|
13 | * SYSLOG_ERR Error conditions
|
---|
14 | * SYSLOG_WARNING Warning conditions
|
---|
15 | * SYSLOG_NOTICE Normal, but significant, condition
|
---|
16 | * SYSLOG_INFO Informational message
|
---|
17 | * SYSLOG_DEBUG Debug-level message
|
---|
18 | */
|
---|
19 |
|
---|
20 | define('SYSLOG_NONE', 0);
|
---|
21 | define('SYSLOG_EMERG', 1);
|
---|
22 | define('SYSLOG_ALERT', 2);
|
---|
23 | define('SYSLOG_CRIT', 3);
|
---|
24 | define('SYSLOG_ERR', 4);
|
---|
25 | define('SYSLOG_WARNING', 5);
|
---|
26 | define('SYSLOG_NOTICE', 6);
|
---|
27 | define('SYSLOG_INFO', 7);
|
---|
28 | define('SYSLOG_DEBUG', 8);
|
---|
29 |
|
---|
30 | /*
|
---|
31 | * Actions on log levels
|
---|
32 | */
|
---|
33 | define('LOG_LEVEL_ECHO', SYSLOG_DEBUG);
|
---|
34 | define('LOG_LEVEL_WRITE', SYSLOG_DEBUG);
|
---|
35 | define('LOG_LEVEL_MAIL', SYSLOG_DEBUG);
|
---|
36 |
|
---|
37 | class LogHandler {
|
---|
38 | /*
|
---|
39 | * Function: __construct (constructor)
|
---|
40 | * Parameters: -
|
---|
41 | * Function: Creating a LogHandler object
|
---|
42 | */
|
---|
43 | public function __construct() {
|
---|
44 | }
|
---|
45 |
|
---|
46 | /*
|
---|
47 | * Function: logEntry
|
---|
48 | * Parameters: int $logno, string $logstr, string $logfile, int $logline
|
---|
49 | * Function: Handling with log entries, decides what to do with it
|
---|
50 | */
|
---|
51 | public function logEntry($logno, $logstr, $logfile, $logline) {
|
---|
52 | $errorString = 'SysLog ';
|
---|
53 |
|
---|
54 | switch ($logno) {
|
---|
55 | case SYSLOG_EMERG:
|
---|
56 | $errorString = 'Emergency';
|
---|
57 | break;
|
---|
58 | case SYSLOG_ALERT:
|
---|
59 | $errorString = 'Alert';
|
---|
60 | break;
|
---|
61 | case SYSLOG_CRIT:
|
---|
62 | $errorString = 'Critical';
|
---|
63 | break;
|
---|
64 | case SYSLOG_ERR:
|
---|
65 | $errorString = 'Error';
|
---|
66 | break;
|
---|
67 | case SYSLOG_WARNING:
|
---|
68 | $errorString = 'Warning';
|
---|
69 | break;
|
---|
70 | case SYSLOG_NOTICE:
|
---|
71 | $errorString = 'Notice';
|
---|
72 | break;
|
---|
73 | case SYSLOG_INFO:
|
---|
74 | $errorString = 'Information';
|
---|
75 | break;
|
---|
76 | case SYSLOG_DEBUG:
|
---|
77 | $errorString = 'Debug';
|
---|
78 | break;
|
---|
79 | default:
|
---|
80 | $errorString = 'SYSLOG_DEFAULT';
|
---|
81 | break;
|
---|
82 | }
|
---|
83 |
|
---|
84 | $time = date( "H:i.s m/d/y" );
|
---|
85 | $errorString .= ' (' . $logno .' | '.$time .' | ): ' . $logstr . "\r\n\t" . 'In file "' . $logfile . '" on line "' . $logline . '"' . "\r\n";
|
---|
86 |
|
---|
87 | if ($logno <= LOG_LEVEL_ECHO) {
|
---|
88 | echo '<!-- ' . $errorString . ' -->';
|
---|
89 | }
|
---|
90 | if ($logno <= LOG_LEVEL_WRITE) {
|
---|
91 | $filename = 'logfile.txt';
|
---|
92 | if (is_writable($filename)) {
|
---|
93 |
|
---|
94 | //Check if the file can be opened
|
---|
95 | if (!$handle = fopen($filename, 'a')) {
|
---|
96 | echo "Cannot open file ($filename)";
|
---|
97 | exit;
|
---|
98 | }
|
---|
99 |
|
---|
100 | // Write $errorString to file.
|
---|
101 | if (fwrite($handle, $errorString) === FALSE) {
|
---|
102 | echo "Cannot write to file ($filename)";
|
---|
103 | exit;
|
---|
104 | }
|
---|
105 |
|
---|
106 | fclose($handle);
|
---|
107 |
|
---|
108 | } else {
|
---|
109 | echo "The file $filename is not writable";
|
---|
110 | }
|
---|
111 | }
|
---|
112 |
|
---|
113 | if ($logno <= LOG_LEVEL_MAIL) {
|
---|
114 | mail('test@test.com', 'Nodemap error', $errorString);
|
---|
115 | }
|
---|
116 | }
|
---|
117 | }
|
---|
118 |
|
---|
119 | $LOG_HANDLER = new LogHandler();
|
---|
120 |
|
---|
121 | /*
|
---|
122 | * Function: trigger_log
|
---|
123 | * Parameters: int $logno, string $logstr, string $logfile, int $logline
|
---|
124 | * Function: Handling with log entries, forwarding them to our $LOG_HANDLER object.
|
---|
125 | */
|
---|
126 | function trigger_log($logno, $logstr, $logfile, $logline) {
|
---|
127 | global $LOG_HANDLER;
|
---|
128 |
|
---|
129 | $LOG_HANDLER->logEntry($logno, $logstr, $logfile, $logline);
|
---|
130 | }
|
---|
131 | ?>
|
---|