-
Notifications
You must be signed in to change notification settings - Fork 2
/
log.cpp
563 lines (479 loc) · 18.3 KB
/
log.cpp
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
/*
* Copyright (C) 2004-2017 ZNC, see the NOTICE file for details.
* Copyright (C) 2006-2007, CNU <bshalm@broadpark.no>
*(http://cnu.dieplz.net/znc)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <znc/FileUtils.h>
#include <znc/User.h>
#include <znc/IRCNetwork.h>
#include <znc/Chan.h>
#include <znc/Server.h>
#include <time.h>
#include <algorithm>
using std::vector;
class CLogRule {
public:
CLogRule(const CString& sRule, bool bEnabled = true)
: m_sRule(sRule), m_bEnabled(bEnabled) {}
const CString& GetRule() const { return m_sRule; }
bool IsEnabled() const { return m_bEnabled; }
void SetEnabled(bool bEnabled) { m_bEnabled = bEnabled; }
bool Compare(const CString& sTarget) const {
return sTarget.WildCmp(m_sRule, CString::CaseInsensitive);
}
bool operator==(const CLogRule& sOther) const {
return m_sRule == sOther.GetRule();
}
CString ToString() const { return (m_bEnabled ? "" : "!") + m_sRule; }
private:
CString m_sRule;
bool m_bEnabled;
};
class CLogMod : public CModule {
public:
MODCONSTRUCTOR(CLogMod) {
m_bSanitize = false;
AddHelpCommand();
AddCommand(
"SetRules", t_d("<rules>"),
t_d("Set logging rules, use !#chan or !query to negate and * "),
[=](const CString& sLine) { SetRulesCmd(sLine); });
AddCommand("ClearRules", "", t_d("Clear all logging rules"),
[=](const CString& sLine) { ClearRulesCmd(sLine); });
AddCommand("ListRules", "", t_d("List all logging rules"),
[=](const CString& sLine) { ListRulesCmd(sLine); });
AddCommand(
"Set", t_d("<var> true|false"),
t_d("Set one of the following options: joins, quits, nickchanges"),
[=](const CString& sLine) { SetCmd(sLine); });
AddCommand("ShowSettings", "",
t_d("Show current settings set by Set command"),
[=](const CString& sLine) { ShowSettingsCmd(sLine); });
}
void SetRulesCmd(const CString& sLine);
void ClearRulesCmd(const CString& sLine);
void ListRulesCmd(const CString& sLine = "");
void SetCmd(const CString& sLine);
void ShowSettingsCmd(const CString& sLine);
void SetRules(const VCString& vsRules);
VCString SplitRules(const CString& sRules) const;
CString JoinRules(const CString& sSeparator) const;
bool TestRules(const CString& sTarget) const;
void PutLog(const CString& sLine, const CString& sWindow = "status");
void PutLog(const CString& sLine, const CChan& Channel);
void PutLog(const CString& sLine, const CNick& Nick);
CString GetServer();
bool OnLoad(const CString& sArgs, CString& sMessage) override;
void OnIRCConnected() override;
void OnIRCDisconnected() override;
EModRet OnBroadcast(CString& sMessage) override;
void OnRawMode2(const CNick* pOpNick, CChan& Channel, const CString& sModes,
const CString& sArgs) override;
void OnKick(const CNick& OpNick, const CString& sKickedNick, CChan& Channel,
const CString& sMessage) override;
void OnQuit(const CNick& Nick, const CString& sMessage,
const vector<CChan*>& vChans) override;
void OnJoin(const CNick& Nick, CChan& Channel) override;
void OnPart(const CNick& Nick, CChan& Channel,
const CString& sMessage) override;
void OnNick(const CNick& OldNick, const CString& sNewNick,
const vector<CChan*>& vChans) override;
EModRet OnTopic(CNick& Nick, CChan& Channel, CString& sTopic) override;
EModRet OnSendToIRCMessage(CMessage& Message) override;
/* notices */
EModRet OnUserNotice(CString& sTarget, CString& sMessage) override;
EModRet OnPrivNotice(CNick& Nick, CString& sMessage) override;
EModRet OnChanNotice(CNick& Nick, CChan& Channel,
CString& sMessage) override;
/* actions */
EModRet OnUserAction(CString& sTarget, CString& sMessage) override;
EModRet OnPrivAction(CNick& Nick, CString& sMessage) override;
EModRet OnChanAction(CNick& Nick, CChan& Channel,
CString& sMessage) override;
/* msgs */
EModRet OnUserMsg(CString& sTarget, CString& sMessage) override;
EModRet OnPrivMsg(CNick& Nick, CString& sMessage) override;
EModRet OnChanMsg(CNick& Nick, CChan& Channel, CString& sMessage) override;
private:
bool NeedJoins() const;
bool NeedQuits() const;
bool NeedNickChanges() const;
CString m_sLogPath;
CString m_sTimestamp;
bool m_bSanitize;
vector<CLogRule> m_vRules;
};
void CLogMod::SetRulesCmd(const CString& sLine) {
VCString vsRules = SplitRules(sLine.Token(1, true));
if (vsRules.empty()) {
PutModule(t_s("Usage: SetRules <rules>"));
PutModule(t_s("Wildcards are allowed"));
} else {
SetRules(vsRules);
SetNV("rules", JoinRules(","));
ListRulesCmd();
}
}
void CLogMod::ClearRulesCmd(const CString& sLine) {
size_t uCount = m_vRules.size();
if (uCount == 0) {
PutModule(t_s("No logging rules. Everything is logged."));
} else {
CString sRules = JoinRules(" ");
SetRules(VCString());
DelNV("rules");
PutModule(t_p("1 rule removed: {2}", "{1} rules removed: {2}", uCount)(
uCount, sRules));
}
}
void CLogMod::ListRulesCmd(const CString& sLine) {
CTable Table;
Table.AddColumn(t_s("Rule", "listrules"));
Table.AddColumn(t_s("Logging enabled", "listrules"));
for (const CLogRule& Rule : m_vRules) {
Table.AddRow();
Table.SetCell(t_s("Rule", "listrules"), Rule.GetRule());
Table.SetCell(t_s("Logging enabled", "listrules"), CString(Rule.IsEnabled()));
}
if (Table.empty()) {
PutModule(t_s("No logging rules. Everything is logged."));
} else {
PutModule(Table);
}
}
void CLogMod::SetCmd(const CString& sLine) {
const CString sVar = sLine.Token(1).AsLower();
const CString sValue = sLine.Token(2);
if (sValue.empty()) {
PutModule(
t_s("Usage: Set <var> true|false, where <var> is one of: joins, "
"quits, nickchanges"));
return;
}
bool b = sLine.Token(2).ToBool();
const std::unordered_map<CString, std::pair<CString, CString>>
mssResponses = {
{"joins", {t_s("Will log joins"), t_s("Will not log joins")}},
{"quits", {t_s("Will log quits"), t_s("Will not log quits")}},
{"nickchanges",
{t_s("Will log nick changes"), t_s("Will not log nick changes")}}};
auto it = mssResponses.find(sVar);
if (it == mssResponses.end()) {
PutModule(t_s(
"Unknown variable. Known variables: joins, quits, nickchanges"));
return;
}
SetNV(sVar, CString(b));
PutModule(b ? it->second.first : it->second.second);
}
void CLogMod::ShowSettingsCmd(const CString& sLine) {
PutModule(NeedJoins() ? t_s("Logging joins") : t_s("Not logging joins"));
PutModule(NeedQuits() ? t_s("Logging quits") : t_s("Not logging quits"));
PutModule(NeedNickChanges() ? t_s("Logging nick changes")
: t_s("Not logging nick changes"));
}
bool CLogMod::NeedJoins() const {
return !HasNV("joins") || GetNV("joins").ToBool();
}
bool CLogMod::NeedQuits() const {
return !HasNV("quits") || GetNV("quits").ToBool();
}
bool CLogMod::NeedNickChanges() const {
return !HasNV("nickchanges") || GetNV("nickchanges").ToBool();
}
void CLogMod::SetRules(const VCString& vsRules) {
m_vRules.clear();
for (CString sRule : vsRules) {
bool bEnabled = !sRule.TrimPrefix("!");
m_vRules.push_back(CLogRule(sRule, bEnabled));
}
}
VCString CLogMod::SplitRules(const CString& sRules) const {
CString sCopy = sRules;
sCopy.Replace(",", " ");
VCString vsRules;
sCopy.Split(" ", vsRules, false, "", "", true, true);
return vsRules;
}
CString CLogMod::JoinRules(const CString& sSeparator) const {
VCString vsRules;
for (const CLogRule& Rule : m_vRules) {
vsRules.push_back(Rule.ToString());
}
return sSeparator.Join(vsRules.begin(), vsRules.end());
}
bool CLogMod::TestRules(const CString& sTarget) const {
for (const CLogRule& Rule : m_vRules) {
if (Rule.Compare(sTarget)) {
return Rule.IsEnabled();
}
}
return true;
}
void CLogMod::PutLog(const CString& sLine,
const CString& sWindow /*= "Status"*/) {
if (!TestRules(sWindow)) {
return;
}
CString sPath;
timeval curtime;
gettimeofday(&curtime, nullptr);
// Generate file name
sPath = CUtils::FormatTime(curtime, m_sLogPath, GetUser()->GetTimezone());
if (sPath.empty()) {
DEBUG("Could not format log path [" << sPath << "]");
return;
}
// TODO: Properly handle IRC case mapping
// $WINDOW has to be handled last, since it can contain %
sPath.Replace("$USER",
CString((GetUser() ? GetUser()->GetUserName() : "UNKNOWN")));
sPath.Replace("$NETWORK",
CString((GetNetwork() ? GetNetwork()->GetName() : "znc")));
sPath.Replace("$WINDOW", CString(sWindow.Replace_n("/", "-")
.Replace_n("\\", "-")).AsLower());
// Check if it's allowed to write in this specific path
sPath = CDir::CheckPathPrefix(GetSavePath(), sPath);
if (sPath.empty()) {
DEBUG("Invalid log path [" << m_sLogPath << "].");
return;
}
CFile LogFile(sPath);
CString sLogDir = LogFile.GetDir();
struct stat ModDirInfo;
CFile::GetInfo(GetSavePath(), ModDirInfo);
if (!CFile::Exists(sLogDir)) CDir::MakeDir(sLogDir, ModDirInfo.st_mode);
if (LogFile.Open(O_WRONLY | O_APPEND | O_CREAT)) {
LogFile.Write(CUtils::FormatTime(curtime, m_sTimestamp,
GetUser()->GetTimezone()) +
" " + (m_bSanitize ? sLine.StripControls_n() : sLine) +
"\n");
} else
DEBUG("Could not open log file [" << sPath << "]: " << strerror(errno));
}
void CLogMod::PutLog(const CString& sLine, const CChan& Channel) {
PutLog(sLine, Channel.GetName());
}
void CLogMod::PutLog(const CString& sLine, const CNick& Nick) {
PutLog(sLine, Nick.GetNick());
}
CString CLogMod::GetServer() {
CServer* pServer = GetNetwork()->GetCurrentServer();
CString sSSL;
if (!pServer) return "(no server)";
if (pServer->IsSSL()) sSSL = "+";
return pServer->GetName() + " " + sSSL + CString(pServer->GetPort());
}
bool CLogMod::OnLoad(const CString& sArgs, CString& sMessage) {
VCString vsArgs;
sArgs.QuoteSplit(vsArgs);
bool bReadingTimestamp = false;
bool bHaveLogPath = false;
for (CString& sArg : vsArgs) {
if (bReadingTimestamp) {
m_sTimestamp = sArg;
bReadingTimestamp = false;
} else if (sArg.Equals("-sanitize")) {
m_bSanitize = true;
} else if (sArg.Equals("-timestamp")) {
bReadingTimestamp = true;
} else {
// Only one arg may be LogPath
if (bHaveLogPath) {
sMessage =
t_f("Invalid args [{1}]. Only one log path allowed. Check "
"that there are no spaces in the path.")(sArgs);
return false;
}
m_sLogPath = sArg;
bHaveLogPath = true;
}
}
if (m_sTimestamp.empty()) {
m_sTimestamp = "[%H:%M:%S]";
}
// Add default filename to path if it's a folder
if (GetType() == CModInfo::UserModule) {
if (m_sLogPath.Right(1) == "/" ||
m_sLogPath.find("$WINDOW") == CString::npos ||
m_sLogPath.find("$NETWORK") == CString::npos) {
if (!m_sLogPath.empty()) {
m_sLogPath += "/";
}
m_sLogPath += "$NETWORK_$WINDOW_%Y%m%d.log";
}
} else if (GetType() == CModInfo::NetworkModule) {
if (m_sLogPath.Right(1) == "/" ||
m_sLogPath.find("$WINDOW") == CString::npos) {
if (!m_sLogPath.empty()) {
m_sLogPath += "/";
}
m_sLogPath += "$WINDOW_%Y%m%d.log";
}
} else {
if (m_sLogPath.Right(1) == "/" ||
m_sLogPath.find("$USER") == CString::npos ||
m_sLogPath.find("$WINDOW") == CString::npos ||
m_sLogPath.find("$NETWORK") == CString::npos) {
if (!m_sLogPath.empty()) {
m_sLogPath += "/";
}
m_sLogPath += "$USER_$NETWORK_$WINDOW_%Y%m%d.log";
}
}
CString sRules = GetNV("rules");
VCString vsRules = SplitRules(sRules);
SetRules(vsRules);
// Check if it's allowed to write in this path in general
m_sLogPath = CDir::CheckPathPrefix(GetSavePath(), m_sLogPath);
if (m_sLogPath.empty()) {
sMessage = t_f("Invalid log path [{1}]")(m_sLogPath);
return false;
} else {
sMessage = t_f("Logging to [{1}]. Using timestamp format '{2}'")(
m_sLogPath, m_sTimestamp);
return true;
}
}
// TODO consider writing translated strings to log. Currently user language
// affects only UI.
void CLogMod::OnIRCConnected() {
PutLog("Connected to IRC (" + GetServer() + ")");
}
void CLogMod::OnIRCDisconnected() {
PutLog("Disconnected from IRC (" + GetServer() + ")");
}
CModule::EModRet CLogMod::OnBroadcast(CString& sMessage) {
PutLog("Broadcast: " + sMessage);
return CONTINUE;
}
void CLogMod::OnRawMode2(const CNick* pOpNick, CChan& Channel,
const CString& sModes, const CString& sArgs) {
const CString sNick = pOpNick ? pOpNick->GetNick() : "Server";
PutLog("*** " + sNick + " sets mode: " + sModes + " " + sArgs, Channel);
}
void CLogMod::OnKick(const CNick& OpNick, const CString& sKickedNick,
CChan& Channel, const CString& sMessage) {
PutLog("*** " + sKickedNick + " was kicked by " + OpNick.GetNick() + " (" +
sMessage + ")",
Channel);
}
void CLogMod::OnQuit(const CNick& Nick, const CString& sMessage,
const vector<CChan*>& vChans) {
if (NeedQuits()) {
for (CChan* pChan : vChans)
PutLog("*** Quits: " + Nick.GetNick() + " (" + Nick.GetIdent() +
"@" + Nick.GetHost() + ") (" + sMessage + ")",
*pChan);
}
}
CModule::EModRet CLogMod::OnSendToIRCMessage(CMessage& Message) {
if (Message.GetType() != CMessage::Type::Quit) {
return CONTINUE;
}
CIRCNetwork* pNetwork = Message.GetNetwork();
OnQuit(pNetwork->GetIRCNick(),
Message.As<CQuitMessage>().GetReason(),
pNetwork->GetChans());
return CONTINUE;
}
void CLogMod::OnJoin(const CNick& Nick, CChan& Channel) {
if (NeedJoins()) {
PutLog("*** Joins: " + Nick.GetNick() + " (" + Nick.GetIdent() + "@" +
Nick.GetHost() + ")",
Channel);
}
}
void CLogMod::OnPart(const CNick& Nick, CChan& Channel,
const CString& sMessage) {
PutLog("*** Parts: " + Nick.GetNick() + " (" + Nick.GetIdent() + "@" +
Nick.GetHost() + ") (" + sMessage + ")",
Channel);
}
void CLogMod::OnNick(const CNick& OldNick, const CString& sNewNick,
const vector<CChan*>& vChans) {
if (NeedNickChanges()) {
for (CChan* pChan : vChans)
PutLog("*** " + OldNick.GetNick() + " is now known as " + sNewNick,
*pChan);
}
}
CModule::EModRet CLogMod::OnTopic(CNick& Nick, CChan& Channel,
CString& sTopic) {
PutLog("*** " + Nick.GetNick() + " changes topic to '" + sTopic + "'",
Channel);
return CONTINUE;
}
/* notices */
CModule::EModRet CLogMod::OnUserNotice(CString& sTarget, CString& sMessage) {
CIRCNetwork* pNetwork = GetNetwork();
if (pNetwork) {
PutLog("-" + pNetwork->GetCurNick() + "- " + sMessage, sTarget);
}
return CONTINUE;
}
CModule::EModRet CLogMod::OnPrivNotice(CNick& Nick, CString& sMessage) {
PutLog("-" + Nick.GetNick() + "- " + sMessage, Nick);
return CONTINUE;
}
CModule::EModRet CLogMod::OnChanNotice(CNick& Nick, CChan& Channel,
CString& sMessage) {
PutLog("-" + Nick.GetNick() + "- " + sMessage, Channel);
return CONTINUE;
}
/* actions */
CModule::EModRet CLogMod::OnUserAction(CString& sTarget, CString& sMessage) {
CIRCNetwork* pNetwork = GetNetwork();
if (pNetwork) {
PutLog("* " + pNetwork->GetCurNick() + " " + sMessage, sTarget);
}
return CONTINUE;
}
CModule::EModRet CLogMod::OnPrivAction(CNick& Nick, CString& sMessage) {
PutLog("* " + Nick.GetNick() + " " + sMessage, Nick);
return CONTINUE;
}
CModule::EModRet CLogMod::OnChanAction(CNick& Nick, CChan& Channel,
CString& sMessage) {
PutLog("* " + Nick.GetNick() + " " + sMessage, Channel);
return CONTINUE;
}
/* msgs */
CModule::EModRet CLogMod::OnUserMsg(CString& sTarget, CString& sMessage) {
CIRCNetwork* pNetwork = GetNetwork();
if (pNetwork) {
PutLog("<" + pNetwork->GetCurNick() + "> " + sMessage, sTarget);
}
return CONTINUE;
}
CModule::EModRet CLogMod::OnPrivMsg(CNick& Nick, CString& sMessage) {
PutLog("<" + Nick.GetNick() + "> " + sMessage, Nick);
return CONTINUE;
}
CModule::EModRet CLogMod::OnChanMsg(CNick& Nick, CChan& Channel,
CString& sMessage) {
PutLog("<" + Nick.GetNick() + "> " + sMessage, Channel);
return CONTINUE;
}
template <>
void TModInfo<CLogMod>(CModInfo& Info) {
Info.AddType(CModInfo::NetworkModule);
Info.AddType(CModInfo::GlobalModule);
Info.SetHasArgs(true);
Info.SetArgsHelpText(
Info.t_s("[-sanitize] Optional path where to store logs."));
Info.SetWikiPage("log");
}
USERMODULEDEFS(CLogMod, t_s("Writes IRC logs."))