-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathOJLog.php
290 lines (260 loc) · 8.29 KB
/
OJLog.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Monolog\Formatter\LineFormatter;
use Monolog\Handler\StreamHandler;
use Monolog\Logger;
class OJLog extends Model
{
/*
* @function writeLogger
* @input $context, $level
*
* @description
*/
public static function writeLogger($context, $level)
{
$logger = new Logger('Online Judge');
$logFormat = "[%datetime%] %channel%.%level_name%: %message% \n";
$formatter = new LineFormatter($logFormat);
$stream = new StreamHandler('/var/log/neuoj/neuoj.log');
$stream->setFormatter($formatter);
$logger->pushHandler($stream);
$logger->addRecord($level, $context);
}
/*
* @function loginInfo
* @input $uid, $ip
*
* @description splice login info
*/
public static function loginInfo($uid, $ip)
{
$context = "User " . $uid . " logged in NEUOJ at " . $ip . ".";
self::writeLogger($context, Logger::INFO);
}
/*
* @function logoutInfo
* @input $uid, $ip
*
* @description splice logout info
*/
public static function logoutInfo($uid, $ip)
{
$context = "User " . $uid . " logged out NEUOJ at " . $ip . ".";
self::writeLogger($context, Logger::INFO);
}
/*
* @function changePassword
* @input $uid
*
* @description splice change password info
*/
public static function changePassword($uid)
{
$context = "User " . $uid . " changed password. ";
self::writeLogger($context, Logger::NOTICE);
}
/*
* @function changeProfile
* @input $uid, $oldProfile, $newProfile
*
* @description splice change profile info
*/
public static function changeProfile($uid, $oldProfile, $newProfile)
{
$context = "User " . $uid . " changed profile from " . $oldProfile . " to " . $newProfile;
self::writeLogger($context, Logger::INFO);
}
/*
* @function deleteDiscuss
* @input $uid, $contestId, $problemId, $deleteContent
*
* @description splice delete discuss info
*/
public static function deleteDiscuss($uid, $contestId, $problemId, $deleteContent)
{
$context = "Admin " . $uid . " deleted a discuss of Contest " . $contestId . " Problem " . $problemId . ".Its content:" . $deleteContent;
self::writeLogger($context, Logger::NOTICE);
}
/*
* @function addContest
* @input $uid, $contestId
*
* @description splice add contest info
*/
public static function addContest($uid, $contestId)
{
$context = "Admin " . $uid . " added Contest " . $contestId . ".";
self::writeLogger($context, Logger::NOTICE);
}
/*
* @function editContest
* @input $uid, $contestId, $oldContent, $newContent
*
* @description splice edit contest info
*/
public static function editContest($uid, $contestId, $oldContent, $newContent)
{
$context = "Admin " . $uid . " edited Contest " . $contestId . " from " . $oldContent . " to " . $newContent;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function deleteContest
* @input $uid, $contestId, $deleteContent
*
* @description splice delete contest info
*/
public static function deleteContest($uid, $contestId, $deleteContent)
{
$context = "Admin " . $uid . " deleted Contest " . $contestId . ".Its content:" . $deleteContent;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function addProblem
* @input $uid, $problemId
*
* @description splice add problem info
*/
public static function addProblem($uid, $problemId)
{
$context = "Admin " . $uid . " added Problem " . $problemId . ".";
self::writeLogger($context, Logger::NOTICE);
}
/*
* @function editProblem
* @input $uid, $problemId, $oldContent, $newContent
*
* @description splice edit problme info
*/
public static function editProblem($uid, $problemId, $oldContent, $newContent)
{
$context = "Admin " . $uid . " edited Problem " . $problemId . " from " . $oldContent . " to " . $newContent;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function deleteProblem
* @input $uid, $problemId, $deleteContent
*
* @description splice delete problem info
*/
public static function deleteProblem($uid, $problemId, $deleteContent)
{
$context = "Admin " . $uid . " deleted Problem " . $problemId . ".Its content:" . $deleteContent;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function addTrain
* @input $uid, $trainId
*
* @description splice add train info
*/
public static function addTrain($uid, $trainId)
{
$context = "Admin " . $uid . " added Train " . $trainId . ".";
self::writeLogger($context, Logger::NOTICE);
}
/*
* @function editTrain
* @input $uid, $trainId, $oldContent, $newContent
*
* @description splice edit train info
*/
public static function editTrain($uid, $trainId, $oldContent, $newContent)
{
$context = "Admin " . $uid . " edited Train " . $trainId . " from " . $oldContent . " to " . $newContent;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function deleteTrain
* @input $uid, $trainId, $deleteContent
*
* @description splice delete train info
*/
public static function deleteTrain($uid, $trainId, $deleteContent)
{
$context = "Admin " . $uid . " deleted Train " . $trainId . ".Its content:" . $deleteContent;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function setTeacher
* @input $gid, $uid
*
* @description splice set teacher info
*/
public static function setTeacher($aid, $uid)
{
$context = "Admin " . $aid . " set User " . $uid . " as Teacher.";
self::writeLogger($context, Logger::ALERT);
}
/*
* @function setAdmin
* @input $gid, $uid
*
* @description splice set admin info
*/
public static function setAdmin($aid, $uid)
{
$context = "Admin " . $aid . " set User " . $uid . " as Admin.";
self::writeLogger($context, Logger::ALERT);
}
/*
* @function setUser
* @input $gid, $uid
*
* @description splice set User info
*/
public static function setUser($aid, $uid)
{
$context = "Admin " . $aid . " set User " . $uid . " as User.";
self::writeLogger($context, Logger::ALERT);
}
/*
* @function rejudge
* @input $uid, $contestId, $problemId
*
* @description splice rejudge info
*/
public static function rejudge($uid, $contestId, $problemId)
{
$context = "Admin " . $uid . " rejudged Contest " . $contestId . " Problem " . $problemId;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function rejudgeByRunID
* @input $uid, $runId
*
* @description splice rejudge info
*/
public static function rejudgeByRunID($uid, $runId)
{
$context = "Admin " . $uid . " rejudged Submission " . $runId;
self::writeLogger($context, Logger::ALERT);
}
/*
* @function changeVisibility
* @input $uid, $problemId, $newStatus
*
* @description splice change visibility info
*/
public static function changeVisibility($uid, $problemId, $newStatus)
{
$context = "Admin " . $uid . " changed Problem " . $problemId . " Visibility to " . $newStatus;
self::writeLogger($context, Logger::ALERT);
}
/* public static function addExecutalbe($uid, $execid, $exec_type)
{
$context = "Admin " . $uid . "add Executable ". $execid . " type: ".$exec_type;
self::writeLogger($context, Logger::NOTICE);
}
public static function updateExecutalbe($uid, $execid, $execid_edit, $exectype_edit)
{
$context = "Admin " . $uid . "update Executable ". $execid . "to execid: " . $execid_edit . "and type: ". $exectype_edit;
self::writeLogger($context, Logger::NOTICE);
}
public static function deleteExecutalbe($uid, $execide)
{
$context = "Admin " . $uid . "delete Executable ". $execid;
self::writeLogger($context, Logger::ALERT);
}*/
}