-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.php
executable file
·154 lines (143 loc) · 3.83 KB
/
logger.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
/**
* APLib - A PHP library to create your website smooth, easy & secure
*
* @package APLib
* @version 0.1
* @author ALMA PRO LEADER
* @license MIT License
* @copyright 2017-2018
* @link https://github.com/almapro/APLib/
*/
namespace APLib;
/**
* Define log files' paths
*/
if(!defined('ELF')) define("ELF", __DIR__."/logs/error.log");
if(!defined('ALF')) define("ALF", __DIR__."/logs/access.log");
if(!defined('MLF')) define("MLF", __DIR__."/logs/message.log");
/**
* Logger - A class to log all errors
*/
class Logger
{
/**
* @var array $errors an array to contain errors
*/
private static $errors = array();
/**
* Initiate Logger
*
* @return void
*/
public static function init()
{
if(!file_exists(__DIR__.'/logs/index.php'))
{
if(!file_exists(__DIR__.'/logs/')) mkdir(__DIR__.'/logs/');
\APLib\Security::Index(__DIR__.'/logs/index.php');
}
}
/**
* Run Logger
*
* @return void
*/
public static function run()
{
if(sizeof(static::$errors) > 0)
{
//
}
}
/**
* Log error data
*
* @param object $log log data to write to log file
*
* @return void
*/
public static function Error($log)
{
if($log instanceof \Exception)
{
array_push(static::$errors, $log);
$log = "Error: ".$log->getMessage().'\r\nFile: '.$log->getFile().'\r\nLine: '.$log->getLine();
}
$le = \APLib\Parser::last(ELF);
if(isset($le['message']) && $log == $le['message']) return;
$o = '[X] - '.date("m/j/Y g:i:s A").' - '.$log;
file_put_contents(ELF, "->->->->->\r\n".$o."\r\n<-<-<-<-<-\r\n", FILE_APPEND | LOCK_EX);
}
/**
* Log good data
*
* @param object $log log data to write to log file
*
* @return void
*/
public static function Good($log)
{
$le = \APLib\Parser::last(MLF);
if(isset($le['message']) && $log == $le['message']) return;
$o = '[+] - '.date("m/j/Y g:i:s A").' - '.$log;
file_put_contents(MLf, "->->->->->\r\n".$o."\r\n<-<-<-<-<-\r\n", FILE_APPEND | LOCK_EX);
}
/**
* Log info data
*
* @param object $log log data to write to log file
*
* @return void
*/
public static function Info($log)
{
$le = \APLib\Parser::last(ELF);
if(isset($le['message']) && $log == $le['message']) return;
$o = '[*] - '.date("m/j/Y g:i:s A").' - '.$log;
file_put_contents(ELF, "->->->->->\r\n".$o."\r\n<-<-<-<-<-\r\n", FILE_APPEND | LOCK_EX);
}
/**
* Log warning data
*
* @param object $log log data to write to log file
*
* @return void
*/
public static function Warning($log)
{
$le = \APLib\Parser::last(ELF);
if(isset($le['message']) && $log == $le['message']) return;
$o = '[!] - '.date("m/j/Y g:i:s A").' - '.$log;
file_put_contents(ELF, "->->->->->\r\n".$o."\r\n<-<-<-<-<-\r\n", FILE_APPEND | LOCK_EX);
}
/**
* Log access data
*
* @param object $log log data to write to log file
*
* @return void
*/
public static function Access($log)
{
$le = \APLib\Parser::last(ALF);
if(isset($le['message']) && $log == $le['message']) return;
$o = '[**] - '.date("m/j/Y g:i:s A").' - '.$log;
file_put_contents(ALF, "->->->->->\r\n".$o."\r\n<-<-<-<-<-\r\n", FILE_APPEND | LOCK_EX);
}
/**
* Log hack data
*
* @param object $log log data to write to log file
*
* @return void
*/
public static function Hack($log)
{
$le = \APLib\Parser::last(ALF);
if(isset($le['message']) && $log == $le['message']) return;
$o = '[!!] - '.date("m/j/Y g:i:s A").' - '.$log;
file_put_contents(ALF, "->->->->->\r\n".$o."\r\n<-<-<-<-<-\r\n", FILE_APPEND | LOCK_EX);
}
}
?>