-
Notifications
You must be signed in to change notification settings - Fork 2
/
notice.cpp
306 lines (243 loc) · 8.79 KB
/
notice.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
// notice.cpp
// Module rejects all notices unless the sender is added.
// Module also converts the notices into PRIVMSG's because notices annoy me.
/*
* Copyright (C) 2004-2016 ZNC, see the NOTICE file for details.
*
* 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/IRCNetwork.h>
#include <znc/Modules.h>
#include <znc/User.h>
using std::map;
using std::set;
using std::vector;
class CnoticeMod;
class CnoticeUser {
public:
CnoticeUser() {}
CnoticeUser(const CString& sLine) { FromString(sLine); }
CnoticeUser(const CString& sUsername, const CString& sHostmasks)
: m_sUsername(sUsername) {
AddHostmasks(sHostmasks);
}
virtual ~CnoticeUser() {}
const CString& GetUsername() const { return m_sUsername; }
bool HostMatches(const CString& sHostmask) {
for (const CString& s : m_ssHostmasks) {
if (sHostmask.WildCmp(s, CString::CaseInsensitive)) {
return true;
}
}
return false;
}
CString GetHostmasks() const {
return CString(",").Join(m_ssHostmasks.begin(), m_ssHostmasks.end());
}
bool DelHostmasks(const CString& sHostmasks) {
VCString vsHostmasks;
sHostmasks.Split(",", vsHostmasks);
for (const CString& s : vsHostmasks) {
m_ssHostmasks.erase(s);
}
return m_ssHostmasks.empty();
}
void AddHostmasks(const CString& sHostmasks) {
VCString vsHostmasks;
sHostmasks.Split(",", vsHostmasks);
for (const CString& s : vsHostmasks) {
m_ssHostmasks.insert(s);
}
}
CString ToString() const {
return m_sUsername + "\t" + GetHostmasks();
}
bool FromString(const CString& sLine) {
m_sUsername = sLine.Token(0, false, "\t");
sLine.Token(1, false, "\t").Split(",", m_ssHostmasks);
return true;
}
private:
protected:
CString m_sUsername;
set<CString> m_ssHostmasks;
};
class CnoticeMod : public CModule {
public:
MODCONSTRUCTOR(CnoticeMod) {
AddHelpCommand();
AddCommand("ListUsers", static_cast<CModCommand::ModCmdFunc>( &CnoticeMod::OnListUsersCommand), "", "List all users");
AddCommand("AddMasks", static_cast<CModCommand::ModCmdFunc>( &CnoticeMod::OnAddMasksCommand), "<user> <mask>,[mask] ...", "Adds masks to a user");
AddCommand("DelMasks", static_cast<CModCommand::ModCmdFunc>( &CnoticeMod::OnDelMasksCommand), "<user> <mask>,[mask] ...", "Removes masks from a user");
AddCommand("AddUser", static_cast<CModCommand::ModCmdFunc>( &CnoticeMod::OnAddUserCommand), "<user> <hostmask>[,<hostmasks>...]", "Adds a user");
AddCommand("DelUser", static_cast<CModCommand::ModCmdFunc>( &CnoticeMod::OnDelUserCommand), "<user>", "Removes a user");
}
bool OnLoad(const CString& sArgs, CString& sMessage) override {
// Load the users
for (MCString::iterator it = BeginNV(); it != EndNV(); ++it) {
const CString& sLine = it->second;
CnoticeUser* pUser = new CnoticeUser;
if (!pUser->FromString(sLine) ||
FindUser(pUser->GetUsername().AsLower())) {
delete pUser;
} else {
m_msUsers[pUser->GetUsername().AsLower()] = pUser;
}
}
return true;
}
~CnoticeMod() override {
for (const auto& it : m_msUsers) {
delete it.second;
}
m_msUsers.clear();
}
virtual EModRet OnPrivNotice(CNick& Nick, CString& sMessage) {
for (const auto& it : m_msUsers) {
if (it.second->HostMatches(Nick.GetNickMask())) {
PutUser(":" + Nick.GetNickMask() + " PRIVMSG " + GetUser()->GetNick() + " :" + sMessage);
break;
}
}
return HALTCORE;
}
void OnModCommand(const CString& sLine) override {
CString sCommand = sLine.Token(0).AsUpper();
HandleCommand(sLine);
}
void OnAddUserCommand(const CString& sLine) {
CString sUser = sLine.Token(1);
CString sHost = sLine.Token(2);
if (sHost.empty()) {
PutModule("Usage: AddUser <user> <hostmask>[,<hostmasks>...]");
} else {
CnoticeUser* pUser = AddUser(sUser, sHost);
if (pUser) {
SetNV(sUser, pUser->ToString());
}
}
}
void OnDelUserCommand(const CString& sLine) {
CString sUser = sLine.Token(1);
if (sUser.empty()) {
PutModule("Usage: DelUser <user>");
} else {
DelUser(sUser);
DelNV(sUser);
}
}
void OnListUsersCommand(const CString& sLine) {
if (m_msUsers.empty()) {
PutModule("There are no users defined");
return;
}
CTable Table;
Table.AddColumn("User");
Table.AddColumn("Hostmasks");
for (const auto& it : m_msUsers) {
VCString vsHostmasks;
it.second->GetHostmasks().Split(",", vsHostmasks);
for (unsigned int a = 0; a < vsHostmasks.size(); a++) {
Table.AddRow();
if (a == 0) {
Table.SetCell("User", it.second->GetUsername());
} else if (a == vsHostmasks.size() - 1) {
Table.SetCell("User", "`-");
} else {
Table.SetCell("User", "|-");
}
Table.SetCell("Hostmasks", vsHostmasks[a]);
}
}
PutModule(Table);
}
void OnAddMasksCommand(const CString& sLine) {
CString sUser = sLine.Token(1);
CString sHostmasks = sLine.Token(2, true);
if (sHostmasks.empty()) {
PutModule("Usage: AddMasks <user> <mask>,[mask] ...");
return;
}
CnoticeUser* pUser = FindUser(sUser);
if (!pUser) {
PutModule("No such user");
return;
}
pUser->AddHostmasks(sHostmasks);
PutModule("Hostmasks(s) added to user [" + pUser->GetUsername() + "]");
SetNV(pUser->GetUsername(), pUser->ToString());
}
void OnDelMasksCommand(const CString& sLine) {
CString sUser = sLine.Token(1);
CString sHostmasks = sLine.Token(2, true);
if (sHostmasks.empty()) {
PutModule("Usage: DelMasks <user> <mask>,[mask] ...");
return;
}
CnoticeUser* pUser = FindUser(sUser);
if (!pUser) {
PutModule("No such user");
return;
}
if (pUser->DelHostmasks(sHostmasks)) {
PutModule("Removed user [" + pUser->GetUsername() + "]");
DelUser(sUser);
DelNV(sUser);
} else {
PutModule("Hostmasks(s) Removed from user [" + pUser->GetUsername() + "]");
SetNV(pUser->GetUsername(), pUser->ToString());
}
}
CnoticeUser* FindUser(const CString& sUser) {
map<CString, CnoticeUser*>::iterator it =
m_msUsers.find(sUser.AsLower());
return (it != m_msUsers.end()) ? it->second : nullptr;
}
CnoticeUser* FindUserByHost(const CString& sHostmask) {
for (const auto& it : m_msUsers) {
CnoticeUser* pUser = it.second;
if (pUser->HostMatches(sHostmask)) {
return pUser;
}
}
return nullptr;
}
void DelUser(const CString& sUser) {
map<CString, CnoticeUser*>::iterator it =
m_msUsers.find(sUser.AsLower());
if (it == m_msUsers.end()) {
PutModule("That user does not exist");
return;
}
delete it->second;
m_msUsers.erase(it);
PutModule("User [" + sUser + "] removed");
}
CnoticeUser* AddUser(const CString& sUser, const CString& sHosts) {
if (m_msUsers.find(sUser) != m_msUsers.end()) {
PutModule("That user already exists");
return nullptr;
}
CnoticeUser* pUser = new CnoticeUser(sUser, sHosts);
m_msUsers[sUser.AsLower()] = pUser;
PutModule("User [" + sUser + "] added with hostmask(s) [" + sHosts + "]");
return pUser;
}
private:
map<CString, CnoticeUser*> m_msUsers;
};
template <>
void TModInfo<CnoticeMod>(CModInfo& Info) {
// Info.SetWikiPage("notice");
}
NETWORKMODULEDEFS(CnoticeMod, "Convert NOTICE's into PRIVMSG's.")