-
Notifications
You must be signed in to change notification settings - Fork 2
/
autoaccept.cpp
349 lines (280 loc) · 10.9 KB
/
autoaccept.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
// autoaccept.cpp
// Modified version of autoop module.
// TODO:
// What about telling the user the module sent "You have been /accept'ed."?
// OnJoin()
// Figure out how to make it only execute once. It will trigger multiple times
// if someone joins multiple channels.
/*
* 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>
#define MESSAGE "You have been /accept'ed. Please send again."
using std::map;
using std::set;
using std::vector;
class CAutoAcceptMod;
class CAutoAcceptUser {
public:
CAutoAcceptUser() {}
CAutoAcceptUser(const CString& sLine) { FromString(sLine); }
CAutoAcceptUser(const CString& sUsername, const CString& sHostmasks)
: m_sUsername(sUsername) {
AddHostmasks(sHostmasks);
}
virtual ~CAutoAcceptUser() {}
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");
// Trim because there was a bug which caused spaces in the hostname
sLine.Token(1, false, "\t").Trim_n().Split(",", m_ssHostmasks);
return true;
}
private:
protected:
CString m_sUsername;
set<CString> m_ssHostmasks;
};
class CAutoAcceptMod : public CModule {
public:
MODCONSTRUCTOR(CAutoAcceptMod) {
AddHelpCommand();
AddCommand("ListUsers", static_cast<CModCommand::ModCmdFunc>( &CAutoAcceptMod::OnListUsersCommand), "", "List all users");
AddCommand("AddMasks", static_cast<CModCommand::ModCmdFunc>( &CAutoAcceptMod::OnAddMasksCommand), "<user> <mask>,[mask] ...", "Adds masks to a user");
AddCommand("DelMasks", static_cast<CModCommand::ModCmdFunc>( &CAutoAcceptMod::OnDelMasksCommand), "<user> <mask>,[mask] ...", "Removes masks from a user");
AddCommand("AddUser", static_cast<CModCommand::ModCmdFunc>( &CAutoAcceptMod::OnAddUserCommand), "<user> <hostmask>[,<hostmasks>...]", "Adds a user");
AddCommand("DelUser", static_cast<CModCommand::ModCmdFunc>( &CAutoAcceptMod::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;
CAutoAcceptUser* pUser = new CAutoAcceptUser;
if (!pUser->FromString(sLine) ||
FindUser(pUser->GetUsername().AsLower())) {
delete pUser;
} else {
m_msUsers[pUser->GetUsername().AsLower()] = pUser;
}
}
return true;
}
~CAutoAcceptMod() override {
for (const auto& it : m_msUsers) {
delete it.second;
}
m_msUsers.clear();
}
EModRet OnNumericMessage(CNumericMessage& numeric) {
if (numeric.GetCode() == 718) {
for (const auto& it : m_msUsers) {
// Replace that space between "KindOne kindone@..." with a !.
// This makes the module work like auto(op|voice).cpp.
if (it.second->HostMatches(numeric.GetParam(1) + "!" + numeric.GetParam(2))) {
// Inspircd + ratbox (efnet) do not automatically put users on the /accept list when you msg them.
// Charybdis has done this since July 3rd / 4th 2010 with the two commits below.
// 0770c9936ef1fc404f04fb4004adc8546abeba7a
// f5455d2cd5e6dd5169ce8006167fffa8475bc493
PutIRC("ACCEPT " + numeric.GetParam(1));
PutIRC("PRIVMSG " + numeric.GetParam(1) + " :" MESSAGE);
break;
}
}
}
// RPL_MONONLINE
// :irc.freenode.net 730 KindOne :EvilOne!KindOne@1.2.3.4
if (numeric.GetCode() == 730) {
for (const auto& it : m_msUsers) {
if (it.second->HostMatches(numeric.GetParam(1))) {
// Borrowed from test/Nicktest.cpp
CNick Nick1( numeric.GetParam(1) );
PutIRC("ACCEPT " + Nick1.GetNick() );
break;
}
}
}
return CONTINUE;
}
// If someone switches nicks add the new one.
void OnNick(const CNick& OldNick, const CString& sNewNick, const vector<CChan*>& vChans) override {
// Don't /accept our new nick if we change.
if (sNewNick == m_pNetwork->GetIRCNick().GetNick()) { return; }
for (const auto& it : m_msUsers) {
if (it.second->HostMatches(sNewNick + "!" + OldNick.GetIdent() + "@" + OldNick.GetHost())) {
PutIRC("ACCEPT " + sNewNick );
break;
}
}
}
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 {
CAutoAcceptUser* 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);
if (sHostmasks.empty()) {
PutModule("Usage: AddMasks <user> <mask>,[mask] ...");
return;
}
CAutoAcceptUser* 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);
if (sHostmasks.empty()) {
PutModule("Usage: DelMasks <user> <mask>,[mask] ...");
return;
}
CAutoAcceptUser* 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());
}
}
CAutoAcceptUser* FindUser(const CString& sUser) {
map<CString, CAutoAcceptUser*>::iterator it =
m_msUsers.find(sUser.AsLower());
return (it != m_msUsers.end()) ? it->second : nullptr;
}
CAutoAcceptUser* FindUserByHost(const CString& sHostmask) {
for (const auto& it : m_msUsers) {
CAutoAcceptUser* pUser = it.second;
if (pUser->HostMatches(sHostmask)) {
return pUser;
}
}
return nullptr;
}
void DelUser(const CString& sUser) {
map<CString, CAutoAcceptUser*>::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");
}
CAutoAcceptUser* AddUser(const CString& sUser, const CString& sHosts) {
if (m_msUsers.find(sUser) != m_msUsers.end()) {
PutModule("That user already exists");
return nullptr;
}
CAutoAcceptUser* pUser = new CAutoAcceptUser(sUser, sHosts);
m_msUsers[sUser.AsLower()] = pUser;
PutModule("User [" + sUser + "] added with hostmask(s) [" + sHosts + "]");
return pUser;
}
private:
map<CString, CAutoAcceptUser*> m_msUsers;
};
template <>
void TModInfo<CAutoAcceptMod>(CModInfo& Info) {
// Info.SetWikiPage("AutoAccept");
}
NETWORKMODULEDEFS(CAutoAcceptMod, "Auto /accept users in the list while umode +g.")