-
Notifications
You must be signed in to change notification settings - Fork 6
/
os_notify.cpp
1226 lines (1027 loc) · 34.7 KB
/
os_notify.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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* OperServ Notify
*
* (C) 2017-2019 - genius3000 ([email protected])
* Please refer to the GPL License in use by Anope at:
* https://github.com/anope/anope/blob/master/docs/COPYING
*
* Allows Opers to be notified of flagged events done by Users matching a mask.
* Masks are the same as AKILL: nick!user@host#real (only needing user@host) and allowing
* regex matching if enabled. Channel masks can be used to track users that join them.
* Notification is done via the log method and is therefore configurable.
* Flags control which events are logged and are listed in the Command Help or as a
* code comment in the DoAdd function.
*
* Syntax: NOTIFY ADD +expiry flags|* mask [:]reason
* DEL mask | entry-num | list
* LIST | VIEW | SHOW [mask | entry-num | list]
* CLEAR
* REMOVE nick
*
* Configuration to put into your operserv config:
module { name = "os_notify" }
command { service = "OperServ"; name = "NOTIFY"; command = "operserv/notify"; permission = "operserv/notify"; }
*
* Don't forget to add 'operserv/notify' to your oper permissions
* Create a channel logging tag similar to:
log { target = "#services-notify"; bot = "OperServ"; other = "notify/..."; }
* The logging is split into 3 categories:
* notify/user
* notify/channel
* notify/commands
* Expiring entries follow the log format of: expire/notify
*/
#include "module.h"
/* Dataset for each Notify mask (entry) */
struct NotifyEntry : Serializable
{
public:
Anope::string mask; /* Mask to match */
Anope::string reason; /* Reason for this Notify */
std::set<char> flags; /* Flags of what to track */
Anope::string creator; /* Nick of creator */
time_t created; /* Time of creation */
time_t expires; /* Time of expiry */
NotifyEntry() : Serializable("Notify") { }
~NotifyEntry();
void Serialize(Serialize::Data &data) const anope_override
{
data["mask"] << this->mask;
data["reason"] << this->reason;
data["flags"] << Anope::string(this->flags.begin(), this->flags.end());
data["creator"] << this->creator;
data["created"] << this->created;
data["expires"] << this->expires;
}
static Serializable* Unserialize(Serializable *obj, Serialize::Data &data);
};
/* Maps to track matched Notify Entries and Users */
typedef std::multimap<const NotifyEntry *, const User *> PerEntryMap;
typedef std::multimap<const User *, const NotifyEntry *> PerUserMap;
/* List of Notify Entries and currently Matched users */
class NotifyList
{
protected:
Serialize::Checker<std::vector<NotifyEntry *> > notifies;
PerEntryMap match_entry; /* Multiple Users mapped to one Notify Entry */
PerUserMap match_user; /* Multiple Notify Entires mapped to one User */
public:
NotifyList() : notifies("Notify") { }
~NotifyList()
{
for (unsigned i = notifies->size(); i > 0; --i)
delete (*notifies).at(i - 1);
match_entry.clear();
match_user.clear();
}
void AddNotify(NotifyEntry *ne)
{
notifies->push_back(ne);
}
void DelNotify(NotifyEntry *ne)
{
/* Erase all Map items matching to this Notify Entry */
match_entry.erase(ne);
for (PerUserMap::reverse_iterator rit = match_user.rbegin(); rit != match_user.rend(); )
{
if (rit->second == ne)
match_user.erase(--rit.base());
else
++rit;
}
/* Erase this Notify Entry from the Notify vector */
std::vector<NotifyEntry *>::iterator it = std::find(notifies->begin(), notifies->end(), ne);
if (it != notifies->end())
notifies->erase(it);
}
void ClearNotifies()
{
for (unsigned i = notifies->size(); i > 0; --i)
delete (*notifies).at(i - 1);
match_entry.clear();
match_user.clear();
}
void Expire(const NotifyEntry *ne)
{
Log(Config->GetClient("OperServ"), "expire/notify") << "Expiring notify entry " << ne->mask;
delete ne;
}
const NotifyEntry *GetNotify(const unsigned number)
{
if (number >= notifies->size())
return NULL;
const NotifyEntry *ne = notifies->at(number);
if (ne->expires && ne->expires <= Anope::CurTime)
{
Expire(ne);
return NULL;
}
return ne;
}
const NotifyEntry *GetNotify(const Anope::string &mask)
{
for (unsigned i = notifies->size(); i > 0; --i)
{
const NotifyEntry *ne = notifies->at(i - 1);
if (ne->expires && ne->expires <= Anope::CurTime)
Expire(ne);
else if (ne->mask.equals_ci(mask))
return ne;
}
return NULL;
}
/* Check if a User matches to a mask */
bool Check(const User *u, const Anope::string &mask)
{
/* Regex mask: Matches against u@h and n!u@h#r only */
if (mask.length() >= 2 && mask[0] == '/' && mask[mask.length() - 1] == '/')
{
const Anope::string uh = u->GetIdent() + '@' + u->host;
const Anope::string nuhr = u->nick + '!' + uh + '#' + u->realname;
return (Anope::Match(uh, mask, false, true) || Anope::Match(nuhr, mask, false, true));
}
/* Use 'modes' Entry to perform matching per item (nick, user, host, real) */
Entry notify_mask("", mask);
return notify_mask.Matches(const_cast<User *>(u), true);
}
/* Check if a Channel matches a mask */
bool Check(const Channel *c, const Anope::string &mask)
{
/* Regex mask */
if (mask.length() >= 2 && mask[0] == '/' && mask[mask.length() - 1] == '/')
{
return Anope::Match(c->name, mask, false, true);
}
return mask.equals_ci(c->name);
}
const std::vector<NotifyEntry *> &GetNotifies()
{
for (unsigned i = notifies->size(); i > 0; --i)
{
const NotifyEntry *ne = notifies->at(i - 1);
if (ne->expires && ne->expires <= Anope::CurTime)
Expire(ne);
}
return *notifies;
}
const unsigned GetNotifiesCount()
{
return notifies->size();
}
/* Check if a User is already mapped to a specific Notify Entry */
bool ExistsAlready(const User *u, const NotifyEntry *ne)
{
std::pair<PerUserMap::const_iterator, PerUserMap::const_iterator> itpair = match_user.equal_range(u);
for (PerUserMap::const_iterator it = itpair.first; it != itpair.second; ++it)
{
if (it->second == ne)
return true;
}
return false;
}
/* Map a User as matched to a specific Notify Entry */
void AddMatch(const User *u, const NotifyEntry *ne)
{
match_entry.insert(std::make_pair(ne, u));
match_user.insert(std::make_pair(u, ne));
}
/* Remove a User from the matched Maps */
void DelMatch(const User *u)
{
match_user.erase(u);
for (PerEntryMap::reverse_iterator it = match_entry.rbegin(); it != match_entry.rend(); )
{
if (it->second == u)
match_entry.erase(--it.base());
else
++it;
}
}
/* Check if a User is matched to any Notify Entries already */
bool IsMatch(const User *u)
{
return (match_user.count(u) > 0);
}
/* Check if a User is matched to a Notify Entry with a specific flag */
bool HasFlag(const User *u, char flag)
{
std::pair<PerUserMap::const_iterator, PerUserMap::const_iterator> itpair = match_user.equal_range(u);
for (PerUserMap::const_iterator it = itpair.first; it != itpair.second; ++it)
{
if (it->second->flags.count(flag) > 0)
return true;
}
return false;
}
const PerEntryMap &GetEntryMap()
{
return match_entry;
}
const PerUserMap &GetUserMap()
{
return match_user;
}
}
NotifyList;
NotifyEntry::~NotifyEntry()
{
NotifyList.DelNotify(this);
}
Serializable* NotifyEntry::Unserialize(Serializable *obj, Serialize::Data &data)
{
NotifyEntry *ne;
if (obj)
ne = anope_dynamic_static_cast<NotifyEntry *>(obj);
else
ne = new NotifyEntry();
Anope::string flags;
data["mask"] >> ne->mask;
data["reason"] >> ne->reason;
data["flags"] >> flags;
data["creator"] >> ne->creator;
data["created"] >> ne->created;
data["expires"] >> ne->expires;
for (unsigned f = 0; f != flags.length(); ++f)
ne->flags.insert(flags[f]);
if (!obj)
NotifyList.AddNotify(ne);
return ne;
}
/* Handle numbered (list) deletions */
class NotifyDelCallback : public NumberList
{
CommandSource &source;
unsigned deleted;
Command *cmd;
public:
NotifyDelCallback(CommandSource &_source, const Anope::string &numlist, Command *c) : NumberList(numlist, true), source(_source), deleted(0), cmd(c) { }
~NotifyDelCallback()
{
if (!deleted)
{
source.Reply("No matching entries on the notify list.");
return;
}
if (Anope::ReadOnly)
source.Reply(READ_ONLY_MODE);
if (deleted == 1)
source.Reply("Deleted 1 entry from the notify list.");
else
source.Reply("Deleted %d entries from the notify list.", deleted);
}
void HandleNumber(unsigned number) anope_override
{
if (!number)
return;
const NotifyEntry *ne = NotifyList.GetNotify(number - 1);
if (!ne)
return;
Log(LOG_ADMIN, source, cmd) << "to remove " << ne->mask << " from the list";
delete ne;
++deleted;
}
};
class CommandOSNotify : public Command
{
private:
void DoAdd(CommandSource &source, const std::vector<Anope::string> ¶ms)
{
Anope::string expiry, str_flags, mask, reason;
/* Expecting: ADD +expiry flags|* mask [:]reason
* Ex: ADD +30d cdjp [email protected] Annoying spammer
* Ex: ADD +30d * helper!help@*.isp.com#Here to help :Impersonating staff and spamming
*/
if (params.size() < 4)
{
this->OnSyntaxError(source, "ADD");
return;
}
expiry = params[1];
time_t expires = Anope::DoTime(expiry);
/* Like AKILL, default to days if not specified */
if (isdigit(expiry[expiry.length() - 1]))
expires *= 86400;
if (expires > 0)
expires += Anope::CurTime;
/* Acceptable flags are:
* c = Connects
* d = Disconnects
* i = channel Invites
* j = channel Joins
* k = channel Kicks
* m = channel Modes
* n = Nick changes
* p = channel Parts
* s = Services commands (-SET)
* S = Services SET commands
* t = Topics
* u = Usermodes
*/
const Anope::string all_flags = "Scdijkmnpstu";
str_flags = params[2];
if (str_flags == "*")
{
str_flags = all_flags;
}
else if (str_flags.find_first_not_of(all_flags) != Anope::string::npos)
{
source.Reply("Incorrect flags character(s) given.");
return;
}
std::set<char> flags;
for (unsigned f = 0; f < str_flags.length(); ++f)
flags.insert(str_flags[f]);
spacesepstream sep(params[3]);
sep.GetToken(mask);
if (sep.StreamEnd())
{
this->OnSyntaxError(source, "ADD");
return;
}
size_t pound = mask.find('#');
size_t at = mask.find('@');
/* If '#' is after '@', we've got a real name */
if ((pound != Anope::string::npos && at != Anope::string::npos) && pound > at)
{
const Anope::string remaining = sep.GetRemaining();
size_t co = remaining[0] == ':' ? 0 : remaining.rfind(" :");
if (co == Anope::string::npos)
{
this->OnSyntaxError(source, "ADD");
return;
}
if (co != 0)
++co;
reason = remaining.substr(co + 1);
mask += " " + remaining.substr(0, co);
mask.trim();
}
else
{
reason = sep.GetRemaining();
}
if (mask.length() >= 2 && mask[0] == '/' && mask[mask.length() - 1] == '/')
{
const Anope::string ®exengine = Config->GetBlock("options")->Get<const Anope::string>("regexengine");
if (regexengine.empty())
{
source.Reply("Regex is disabled.");
return;
}
ServiceReference<RegexProvider> provider("Regex", regexengine);
if (!provider)
{
source.Reply("Unable to find regex engine %s.", regexengine.c_str());
return;
}
try
{
Anope::string stripped_mask = mask.substr(1, mask.length() - 2);
delete provider->Compile(stripped_mask);
}
catch (const RegexException &ex)
{
source.Reply("%s", ex.GetReason().c_str());
return;
}
}
if (mask.find_first_not_of("/~@.*?#") == Anope::string::npos)
{
source.Reply(USERHOST_MASK_TOO_WIDE, mask.c_str());
return;
}
/* Valid masks either include a '@' or have '#' first (non-regex)
* Regex chan matches just require '#' in the mask
*/
else if ((mask.find('@') == Anope::string::npos) &&
(mask[0] != '#') &&
(mask.length() < 2 || mask[0] != '/' || mask.find('#') == Anope::string::npos))
{
source.Reply("Mask must be at least \037user\037@\037host\037 or have a \037#\037 for channel masks.");
return;
}
NotifyEntry *ne = const_cast<NotifyEntry *>(NotifyList.GetNotify(mask));
bool created = true;
if (ne)
{
created = false;
delete ne;
}
ne = new NotifyEntry();
ne->mask = mask;
ne->reason = reason;
ne->flags = flags;
ne->creator = source.GetNick();
ne->created = Anope::CurTime;
ne->expires = expires;
NotifyList.AddNotify(ne);
if (Anope::ReadOnly)
source.Reply(READ_ONLY_MODE);
unsigned matches = 0;
/* If mask contains '#' but not '@', it's a channel mask */
if (pound != Anope::string::npos && at == Anope::string::npos)
{
for (channel_map::const_iterator it = ChannelList.begin(); it != ChannelList.end(); ++it)
{
const Channel *c = it->second;
if (!NotifyList.Check(c, ne->mask))
continue;
for (Channel::ChanUserList::const_iterator i = c->users.begin(); i != c->users.end(); ++i)
{
const User *u = i->first;
if (NotifyList.ExistsAlready(u, ne))
continue;
NotifyList.AddMatch(u, ne);
matches++;
}
}
}
else
{
for (user_map::const_iterator it = UserListByNick.begin(); it != UserListByNick.end(); ++it)
{
const User *u = it->second;
if (NotifyList.Check(u, ne->mask))
{
NotifyList.AddMatch(u, ne);
matches++;
}
}
}
Log(LOG_ADMIN, source, this) << "to " << (created ? "add" : "modify") << " a notify on " << mask << " for reason: " << reason << " (matches: " << matches << " user(s))";
source.Reply("%s a notify on %s which matched %d user(s).", (created ? "Added" : "Modified"), mask.c_str(), matches);
}
void DoDel(CommandSource &source, const std::vector<Anope::string> ¶ms)
{
const Anope::string &match = params.size() > 1 ? params[1] : "";
if (match.empty())
{
this->OnSyntaxError(source, "DEL");
return;
}
if (NotifyList.GetNotifiesCount() == 0)
{
source.Reply("The notify list is empty.");
return;
}
if (isdigit(match[0]) && match.find_first_not_of("1234567890,-") == Anope::string::npos)
{
NotifyDelCallback list(source, match, this);
list.Process();
}
else
{
const NotifyEntry *ne = NotifyList.GetNotify(match);
if (!ne)
{
source.Reply("\002%s\002 not found on the notify list.", match.c_str());
return;
}
if (Anope::ReadOnly)
source.Reply(READ_ONLY_MODE);
Log(LOG_ADMIN, source, this) << "to remove " << ne->mask << " from the list";
source.Reply("\002%s\002 deleted from the notify list.", ne->mask.c_str());
delete ne;
}
}
void ProcessList(CommandSource &source, const std::vector<Anope::string> ¶ms, ListFormatter &list)
{
const Anope::string &match = params.size() > 1 ? params[1] : "";
if (!match.empty() && isdigit(match[0]) && match.find_first_not_of("1234567890,-") == Anope::string::npos)
{
class ListCallback : public NumberList
{
CommandSource &source;
ListFormatter &list;
public:
ListCallback(CommandSource &_source, ListFormatter &_list, const Anope::string &numstr) : NumberList(numstr, false), source(_source), list(_list) { }
void HandleNumber(unsigned number) anope_override
{
if (!number)
return;
const NotifyEntry *ne = NotifyList.GetNotify(number - 1);
if (!ne)
return;
ListFormatter::ListEntry entry;
entry["Number"] = stringify(number);
entry["Mask"] = ne->mask;
entry["Flags"] = Anope::string(ne->flags.begin(), ne->flags.end());
entry["Reason"] = ne->reason;
entry["Created"] = Anope::strftime(ne->created, source.nc, true);
entry["By"] = ne->creator;
entry["Expires"] = Anope::Expires(ne->expires, source.nc);
list.AddEntry(entry);
}
}
nl_list(source, list, match);
nl_list.Process();
}
else
{
const std::vector<NotifyEntry *> ¬ifies = NotifyList.GetNotifies();
for (unsigned i = 0; i < notifies.size(); ++i)
{
const NotifyEntry *ne = notifies.at(i);
if (!ne)
continue;
if (match.empty() || match.equals_ci(ne->mask) || Anope::Match(ne->mask, match, false, true))
{
ListFormatter::ListEntry entry;
entry["Number"] = stringify(i + 1);
entry["Mask"] = ne->mask;
entry["Flags"] = Anope::string(ne->flags.begin(), ne->flags.end());
entry["Reason"] = ne->reason;
entry["Created"] = Anope::strftime(ne->created, source.nc, true);
entry["By"] = ne->creator;
entry["Expires"] = Anope::Expires(ne->expires, source.nc);
list.AddEntry(entry);
}
}
}
if (list.IsEmpty())
source.Reply("No matching entries on the notify list.");
else
{
source.Reply("Current notify list:");
std::vector<Anope::string> replies;
list.Process(replies);
for (unsigned i = 0; i < replies.size(); ++i)
source.Reply(replies[i]);
source.Reply("End of notify list.");
}
}
void DoList(CommandSource &source, const std::vector<Anope::string> ¶ms)
{
if (NotifyList.GetNotifiesCount() == 0)
{
source.Reply("The notify list is empty.");
return;
}
ListFormatter list(source.GetAccount());
list.AddColumn("Number").AddColumn("Mask").AddColumn("Reason");
this->ProcessList(source, params, list);
}
void DoView(CommandSource &source, const std::vector<Anope::string> ¶ms)
{
if (NotifyList.GetNotifiesCount() == 0)
{
source.Reply("The notify list is empty.");
return;
}
ListFormatter list(source.GetAccount());
list.AddColumn("Number").AddColumn("Mask").AddColumn("Flags").AddColumn("Reason");
list.AddColumn("Created").AddColumn("By").AddColumn("Expires");
this->ProcessList(source, params, list);
}
void DoClear(CommandSource &source, const std::vector<Anope::string> ¶ms)
{
if (NotifyList.GetNotifiesCount() == 0)
{
source.Reply("The notify list is empty.");
return;
}
if (Anope::ReadOnly)
source.Reply(READ_ONLY_MODE);
NotifyList.ClearNotifies();
Log(LOG_ADMIN, source, this) << "to clear the list";
source.Reply("The notify list has been cleared.");
}
void DoShow(CommandSource &source, const std::vector<Anope::string> ¶ms)
{
const PerEntryMap ¤t = NotifyList.GetEntryMap();
if (current.empty())
{
source.Reply("No matching Users are currently online.");
return;
}
ListFormatter list(source.GetAccount());
list.AddColumn("Flags/Nick").AddColumn("Mask").AddColumn("Reason/Online Since");
Anope::string last_mask;
for (PerEntryMap::const_iterator it = current.begin(); it != current.end(); ++it)
{
const NotifyEntry *ne = it->first;
const User *u = it->second;
if (!ne || !u)
continue;
if (last_mask != ne->mask)
{
ListFormatter::ListEntry entry;
entry["Flags/Nick"] = Anope::string(ne->flags.begin(), ne->flags.end());
entry["Mask"] = ne->mask;
entry["Reason/Online Since"] = ne->reason;
list.AddEntry(entry);
last_mask = ne->mask;
}
ListFormatter::ListEntry subentry;
subentry["Flags/Nick"] = u->nick;
subentry["Mask"] = u->GetIdent() + "@" + u->host + "#" + u->realname;
subentry["Reason/Online Since"] = Anope::strftime(u->signon, source.nc, true);
list.AddEntry(subentry);
}
if (list.IsEmpty())
source.Reply("No matching entries currently online.");
else
{
source.Reply("Currently matched online users:");
std::vector<Anope::string> replies;
list.Process(replies);
for (unsigned i = 0; i < replies.size(); ++i)
source.Reply(replies[i]);
source.Reply("End of matched online users.");
}
}
void DoRemove(CommandSource &source, const std::vector<Anope::string> ¶ms)
{
if (NotifyList.GetNotifiesCount() == 0)
{
source.Reply("The notify list is empty.");
return;
}
if (params.size() < 2 || params.size() > 2)
{
this->OnSyntaxError(source, "REMOVE");
return;
}
const PerUserMap ¤t = NotifyList.GetUserMap();
if (current.empty())
{
source.Reply("No matching Users are currently online.");
return;
}
const User *u = User::Find(params[1], true);
if (!u)
{
source.Reply("No user found by the nick of %s", params[1].c_str());
return;
}
if (!NotifyList.IsMatch(u))
{
source.Reply("%s is not currently a matched User.", u->nick.c_str());
return;
}
NotifyList.DelMatch(u);
Log(LOG_ADMIN, source, this) << "to remove " << u->nick << " from the matched Users list for Notify";
source.Reply("%s has been removed the matched Users list.", u->nick.c_str());
}
public:
CommandOSNotify(Module *creator) : Command(creator, "operserv/notify", 1, 4)
{
this->SetDesc("Manipulate the Notify (watch) list");
this->SetSyntax("ADD +\037expiry\037 \037flags\037 \037mask\037 [:]\037reason\037");
this->SetSyntax("DEL [\037mask\037 | \037entry-num\037 | \037list\037]");
this->SetSyntax("LIST [\037mask\037 | \037entry-num\037 | \037list\037]");
this->SetSyntax("VIEW [\037mask\037 | \037entry-num\037 | \037list\037]");
this->SetSyntax("CLEAR");
this->SetSyntax("SHOW [\037mask\037 | \037entry-num\037 | \037list\037]");
this->SetSyntax("REMOVE \037nick\037");
}
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override
{
const Anope::string &subcmd = params[0];
if (subcmd.equals_ci("ADD"))
this->DoAdd(source, params);
else if (subcmd.equals_ci("DEL"))
this->DoDel(source, params);
else if (subcmd.equals_ci("LIST"))
this->DoList(source, params);
else if (subcmd.equals_ci("VIEW"))
this->DoView(source, params);
else if (subcmd.equals_ci("CLEAR"))
this->DoClear(source, params);
else if (subcmd.equals_ci("SHOW"))
this->DoShow(source, params);
else if (subcmd.equals_ci("REMOVE"))
this->DoRemove(source, params);
else
this->OnSyntaxError(source, "");
}
bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override
{
this->SendSyntax(source);
source.Reply(" ");
source.Reply("Notify allows Opers to create a list of masks that Users are matched against.\n"
"Matching Users have many of their 'events' tracked and logged\n"
"(typically to a log channel) for Opers to monitor.");
source.Reply(" ");
source.Reply("The \002ADD\002 command adds the given mask to the Notify list.\n"
"Reason \002must\002 be given and the mask should be in the format of\n"
"nick!user@host#real name (though all that is required is user@host) or\n"
"#channel to track users that join a matching channel.\n"
"If a real name is specified, the reason must be prepended with a :.\n"
"Flags are used to decide what to track, for all use \037*\037.\n"
"The available flags are:\n"
"c - User Connections\nd - User Disconnections\n"
"i - Channel Invites\nj - Channel Joins\n"
"k - Channel Kicks\nm - Channel Modes\n"
"n - User Nick changes\np - Channel Parts\n"
"s - Most Services commands\nS - More Services commands\n"
"t - Channel Topics\nu - User Modes\n"
"\037expiry\037 is specified as an integer followed by one of \037d\37 (days),\n"
" \037h\037 (hours), or \037m\037 (minutes). Combinations (such as \0371h30m\037)\n"
"are not permitted. If a unit specifier is not included, the default is days\n"
"(so \037+30\037 by itself means 30 days).\n"
"To add a Notify which does not expire, use \037+0\037.");
const Anope::string ®exengine = Config->GetBlock("options")->Get<const Anope::string>("regexengine");
if (!regexengine.empty())
{
source.Reply(" ");
source.Reply("Regex matches are also supported using the %s engine.\n"
"Note that for a user mask, this will ONLY match against\n"
"either \037user@host\037 or \037nick!user@host#real\037\n"
"Enclose your pattern in // if this is desired.", regexengine.c_str());
}
source.Reply(" ");
source.Reply("The \002DEL\002 command requires a parameter, one of a mask to match,\n"
"an entry number, or a list of entry numbers (1-5 or 1-3,5 format).\n"
"The \002LIST\002 and \002VIEW\002 commands can be used with no\n"
"parameters or with one of the above parameters, for DEL.\n");
source.Reply("The \002CLEAR\002 command clears all entries of the Notify list.");
source.Reply(" ");
source.Reply("The \002SHOW\002 command lists Notify masks with currently matched Users\n"
"It can accept the same parameters as the \002LIST\002 and\n"
"\002VIEW\002 commands, including no parameters at all.");
source.Reply("The \002REMOVE\002 command removes a user from the matched Users list.\n"
"This can be useful if a user gets matched by a playful/silly nick change\n"
"or as a temporary removal of tracking of the user.");
return true;
}
void OnSyntaxError(CommandSource &source, const Anope::string &subcommand)
{
if (subcommand.equals_ci("ADD"))
source.Reply("ADD +\037expiry\037 \037flags\037 \037mask\037 [:]\037reason\037");
else if (subcommand.equals_ci("DEL"))
source.Reply("DEL [\037mask\037 | \037entry-num\037 | \037list\037]");
else if (subcommand.equals_ci("REMOVE"))
source.Reply("REMOVE \037nick\037");
else
this->SendSyntax(source);
}
};
class OSNotify : public Module
{
Serialize::Type notifyentry_type;
CommandOSNotify commandosnotify;
BotInfo *OperServ;
const Anope::string BuildNUHR(const User *u)
{
if (!u)
return "unknown";
return Anope::string(u->nick + "!" + u->GetIdent() + "@" + u->host + "#" + u->realname);
}
void NLog(const Anope::string &t, const char *m, ...)
{
char buf[4096];
va_list args;
va_start(args, m);
vsnprintf(buf, sizeof(buf), m, args);
Log(LOG_NORMAL, "notify/"+t, OperServ) << "NOTIFY: " << buf;
va_end(args);
}
void Init()
{
const std::vector<NotifyEntry *> ¬ifies = NotifyList.GetNotifies();
if (notifies.empty())
return;
unsigned matches = 0;
for (user_map::const_iterator uit = UserListByNick.begin(); uit != UserListByNick.end(); ++uit)
{
const User *u = uit->second;
if (!u || (u && u->server && u->server->IsULined()))
continue;
bool matched = false;
for (unsigned i = notifies.size(); i > 0; --i)
{
const NotifyEntry *ne = notifies.at(i - 1);
if (!ne)
continue;
if (NotifyList.Check(u, ne->mask))
{
NotifyList.AddMatch(u, ne);
matched = true;
}
}
if (matched)
matches++;
}
if (matches > 0)
NLog("user", "Matched %d user(s) against the Notify list", matches);
}
unsigned CheckUserOrChannel(User *u, Channel *c = NULL, bool wantChan = false)
{
const std::vector<NotifyEntry *> ¬ifies = NotifyList.GetNotifies();
if (!u || (wantChan && !c) || notifies.empty() || (u->server && u->server->IsULined()))
return 0;
unsigned matches = 0;
for (unsigned i = notifies.size(); i > 0; --i)
{
const NotifyEntry *ne = notifies.at(i - 1);
if (!ne)
continue;
bool matched = false;
if (wantChan && c)
matched = NotifyList.Check(c, ne->mask);
else if (!wantChan)
matched = NotifyList.Check(u, ne->mask);
if (matched)
{
if (NotifyList.ExistsAlready(u, ne))
continue;
NotifyList.AddMatch(u, ne);
matches++;
}
}
return matches;
}
public:
OSNotify(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, THIRD),
notifyentry_type("Notify", NotifyEntry::Unserialize), commandosnotify(this), OperServ(NULL)
{
if (Anope::VersionMajor() != 2 || Anope::VersionMinor() != 0)
throw ModuleException("Requires version 2.0.x of Anope.");
this->SetAuthor("genius3000");
this->SetVersion("1.2.1");
if (Me && Me->IsSynced())
this->Init();
}