-
Notifications
You must be signed in to change notification settings - Fork 6
/
m_expirenotice.cpp
316 lines (263 loc) · 11.7 KB
/
m_expirenotice.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
/*
* Notification of pending expiry or expired nicks and channels
*
* (C) 2016 - genius3000 ([email protected])
* Please refer to the GPL License in use by Anope at:
* https://github.com/anope/anope/blob/master/docs/COPYING
*
* Runs when NickServ and ChanServ check for expired
* entries. Is capable of sending Notices via email or memo
* for soon to expire or expired nicknames and channels.
*
* The Nick and Channel Expiry defaults are the same as Anope's defaults
* in the case that the config values aren't read.
* Configuration to put into your modules config:
module
{
name = "m_expirenotice"
ns_notice_expiring = yes
ns_notice_expired = yes
ns_notice_time = 7d
ns_notice_mail = yes
ns_notice_memo = no
cs_notice_expiring = yes
cs_notice_expired = yes
cs_notice_time = 3d
cs_notice_mail = yes
cs_notice_memo = no
ns_expiring_subject = "Nickname expiring"
ns_expiring_message = "Your nickname %n will expire %t.
%N IRC Administration"
ns_expiring_memo = "Your nickname %n will expire %t."
ns_expired_subject = "Nickname expired"
ns_expired_message = "Your nickname %n has expired.
%N IRC Administration"
ns_expired_memo = "Your nickname %n has expired."
cs_expiring_subject = "Channel expiring"
cs_expiring_message = "Your channel %c will expire %t.
%N IRC Administration"
cs_expiring_memo = "Your channel %c will expire %t."
cs_expired_subject = "Channel expired"
cs_expired_message = "Your channel %c has expired.
%N IRC Administration"
cs_expired_memo = "Your channel %c has expired."
}
*
* Logging of "soon to expire" nicks or channels can be enabled by using
* "nickserv/preexpire" and "chanserv/preexpire" in the "other" category
*/
#include "module.h"
static ServiceReference<MemoServService> memoserv("MemoServService", "MemoServ");
class ExpireNotice : public Module
{
bool ns_notice_expiring, ns_notice_expired, ns_notice_mail, ns_notice_memo;
bool cs_notice_expiring, cs_notice_expired, cs_notice_mail, cs_notice_memo;
time_t ns_expire_time, ns_notice_time;
time_t cs_expire_time, cs_notice_time;
time_t expiretimeout;
Anope::string networkname;
/* We check this to prevent a race condition of sending
* a memo to a currently expiring NickCore. It seems
* we mess up MemoServ when we do that.
*/
bool AllAliasesExpiring(NickCore *nc)
{
for (unsigned i = 0; i < nc->aliases->size(); ++i)
{
NickAlias *na = nc->aliases->at(i);
if (Anope::CurTime - na->last_seen < ns_expire_time)
return false;
}
return true;
}
public:
ExpireNotice(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, THIRD)
{
if (Anope::VersionMajor() != 2 || Anope::VersionMinor() != 0)
throw ModuleException("Requires version 2.0.x of Anope.");
if (!ModuleManager::FindModule("nickserv") && !ModuleManager::FindModule("chanserv"))
throw ModuleException("Neither NickServ nor ChanServ are loaded, this module is useless!");
this->SetAuthor("genius3000");
this->SetVersion("1.0.4");
}
void OnPreNickExpire(NickAlias *na, bool &expire) anope_override
{
/* If expired, not enabled or neither notice method is enabled, we do nothing */
if (expire || !ns_notice_expiring || (!ns_notice_mail && !ns_notice_memo))
return;
/* We don't do anything with unconfirmed or no_expire nicks */
if (na->nc->HasExt("UNCONFIRMED") || na->HasExt("NS_NO_EXPIRE"))
return;
/* If notice_time is set too high, make it a quarter of the expire time */
if (ns_notice_time >= ns_expire_time)
ns_notice_time = ns_expire_time / 4;
time_t expire_at = na->last_seen + ns_expire_time;
time_t notice_at = expire_at - ns_notice_time;
/* Send notice when time is between the notice_at and the next ExpireTick
* This should keep from sending multiple notices
*/
if (Anope::CurTime >= notice_at && Anope::CurTime <= notice_at + expiretimeout - 2)
{
Log(LOG_NORMAL, "nickserv/preexpire", Config->GetClient("NickServ")) << "Soon to expire nickname " << na->nick << " (group: " << na->nc->display << "). Expires: " << Anope::strftime(expire_at);
if (ns_notice_mail && !na->nc->email.empty())
{
Anope::string subject = Config->GetModule(this)->Get<const Anope::string>("ns_expiring_subject"),
message = Config->GetModule(this)->Get<const Anope::string>("ns_expiring_message");
message = message.replace_all_cs("%n", na->nick);
message = message.replace_all_cs("%t", Anope::strftime(expire_at, na->nc));
message = message.replace_all_cs("%N", networkname);
Mail::Send(na->nc, subject, message);
}
/* If the NickCore has more than one NickAlias (not all expiring right now), send a memo */
if (ns_notice_memo && na->nc->aliases->size() > 1 && !AllAliasesExpiring(na->nc))
{
Anope::string message = Config->GetModule(this)->Get<const Anope::string>("ns_expiring_memo");
message = message.replace_all_cs("%n", na->nick);
message = message.replace_all_cs("%t", Anope::strftime(expire_at, na->nc));
memoserv->Send(Config->GetClient("NickServ")->nick, na->nc->display, message, true);
}
}
}
void OnNickExpire(NickAlias *na) anope_override
{
/* Do nothing if not enabled or neither notice method is enabled */
if (!ns_notice_expired || (!ns_notice_mail && ! ns_notice_memo))
return;
if (ns_notice_mail && !na->nc->email.empty())
{
Anope::string subject = Config->GetModule(this)->Get<const Anope::string>("ns_expired_subject"),
message = Config->GetModule(this)->Get<const Anope::string>("ns_expired_message");
message = message.replace_all_cs("%n", na->nick);
message = message.replace_all_cs("%N", networkname);
Mail::Send(na->nc, subject, message);
}
/* If the NickCore has more than one NickAlias (not all expiring right now), send a memo */
if (ns_notice_memo && na->nc->aliases->size() > 1 && !AllAliasesExpiring(na->nc))
{
Anope::string message = Config->GetModule(this)->Get<const Anope::string>("ns_expired_memo");
message = message.replace_all_cs("%n", na->nick);
memoserv->Send(Config->GetClient("NickServ")->nick, na->nc->display, message, true);
}
}
void OnPreChanExpire(ChannelInfo *ci, bool &expire) anope_override
{
/* Do nothing if expired, not enabled or neither notice method is enabled */
if (expire || !cs_notice_expiring || (!cs_notice_mail && !cs_notice_memo))
return;
/* We don't do anything with no_expire chans */
if (ci->HasExt("CS_NO_EXPIRE"))
return;
/* If notice_time is set too high, make it a quarter of the expire time */
if (cs_notice_time >= cs_expire_time)
cs_notice_time = cs_expire_time / 4;
time_t expire_at = ci->last_used + cs_expire_time;
time_t notice_at = expire_at - cs_notice_time;
/* Send notice when time is between the notice_at and the next ExpireTick
* This should keep from sending multiple notices
*/
if (Anope::CurTime >= notice_at && Anope::CurTime <= notice_at + expiretimeout - 2)
{
/* Anope only checks for Access of Users in the channel if said channel
* is slated to expire right now. We need to run this check here to skip
* sending a false notice. We don't update ci->last_used time though.
*/
if (ci->c)
{
AccessGroup ag;
for (Channel::ChanUserList::const_iterator cit = ci->c->users.begin(), cit_end = ci->c->users.end(); cit != cit_end; ++cit)
{
ag = ci->AccessFor(cit->second->user, false);
/* If this user has Channel Access, we stop now */
if (!ag.empty() || ag.founder)
return;
}
}
NickCore *founder = ci->GetFounder(),
*successor = ci->GetSuccessor();
Log(LOG_NORMAL, "chanserv/preexpire", Config->GetClient("ChanServ")) << "Soon to expire channel " << ci->name << " (founder: " << (founder ? founder->display : "(none)") << ") (successor: " << (successor ? successor->display : "(none)") << "). Expires: " << Anope::strftime(expire_at);
if (cs_notice_mail)
{
Anope::string subject = Config->GetModule(this)->Get<const Anope::string>("cs_expiring_subject"),
message = Config->GetModule(this)->Get<const Anope::string>("cs_expiring_message");
message = message.replace_all_cs("%c", ci->name);
message = message.replace_all_cs("%N", networkname);
if (founder && !founder->email.empty())
{
message = message.replace_all_cs("%t", Anope::strftime(expire_at, founder));
Mail::Send(founder, subject, message);
}
if (successor && !successor->email.empty())
{
message = message.replace_all_cs("%t", Anope::strftime(expire_at, successor));
Mail::Send(successor, subject, message);
}
}
if (cs_notice_memo)
{
Anope::string message = Config->GetModule(this)->Get<const Anope::string>("cs_expiring_memo");
message = message.replace_all_cs("%c", ci->name);
if (founder && !AllAliasesExpiring(founder))
{
message = message.replace_all_cs("%t", Anope::strftime(expire_at, founder));
memoserv->Send(Config->GetClient("ChanServ")->nick, founder->display, message, true);
}
if (successor && !AllAliasesExpiring(successor))
{
message = message.replace_all_cs("%t", Anope::strftime(expire_at, successor));
memoserv->Send(Config->GetClient("ChanServ")->nick, successor->display, message, true);
}
}
}
}
void OnChanExpire(ChannelInfo *ci) anope_override
{
/* Do nothing if not enabled or neither notice method is enabled */
if (!cs_notice_expired || (!cs_notice_mail && !cs_notice_memo))
return;
NickCore *founder = ci->GetFounder(),
*successor = ci->GetSuccessor();
if (cs_notice_mail)
{
Anope::string subject = Config->GetModule(this)->Get<const Anope::string>("cs_expired_subject"),
message = Config->GetModule(this)->Get<const Anope::string>("cs_expired_message");
message = message.replace_all_cs("%c", ci->name);
message = message.replace_all_cs("%N", networkname);
if (founder && !founder->email.empty())
Mail::Send(founder, subject, message);
if (successor && !successor->email.empty())
Mail::Send(successor, subject, message);
}
if (cs_notice_memo)
{
Anope::string message = Config->GetModule(this)->Get<const Anope::string>("cs_expired_memo");
message = message.replace_all_cs("%c", ci->name);
if (founder && !AllAliasesExpiring(founder))
memoserv->Send(Config->GetClient("ChanServ")->nick, founder->display, message, true);
if (successor && !AllAliasesExpiring(successor))
memoserv->Send(Config->GetClient("ChanServ")->nick, successor->display, message, true);
}
}
void OnReload(Configuration::Conf *conf) anope_override
{
/* Load configuration values at Config read */
ns_notice_expiring = Config->GetModule(this)->Get<bool>("ns_notice_expiring", "no");
ns_notice_expired = Config->GetModule(this)->Get<bool>("ns_notice_expired", "no");
ns_notice_mail = Config->GetModule(this)->Get<bool>("ns_notice_mail", "no");
ns_notice_memo = Config->GetModule(this)->Get<bool>("ns_notice_memo", "no");
ns_notice_time = Config->GetModule(this)->Get<time_t>("ns_notice_time", "7d");
ns_expire_time = Config->GetModule("nickserv")->Get<time_t>("expire", "21d");
cs_notice_expiring = Config->GetModule(this)->Get<bool>("cs_notice_expiring", "no");
cs_notice_expired = Config->GetModule(this)->Get<bool>("cs_notice_expired", "no");
cs_notice_mail = Config->GetModule(this)->Get<bool>("cs_notice_mail", "no");
cs_notice_memo = Config->GetModule(this)->Get<bool>("cs_notice_memo", "no");
cs_notice_time = Config->GetModule(this)->Get<time_t>("cs_notice_time", "3d");
cs_expire_time = Config->GetModule("chanserv")->Get<time_t>("expire", "14d");
expiretimeout = Config->GetBlock("options")->Get<time_t>("expiretimeout", "30m");
networkname = Config->GetBlock("networkinfo")->Get<const Anope::string>("networkname");
if (!Config->GetBlock("mail")->Get<bool>("usemail"))
ns_notice_mail = cs_notice_mail = false;
if (!memoserv)
ns_notice_memo = cs_notice_memo = false;
}
};
MODULE_INIT(ExpireNotice)