]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_silence_ext.cpp
8b40c90bbcc7b6d888bce5cdc08a6fd7f7e29da5
[user/henk/code/inspircd.git] / src / modules / m_silence_ext.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include <stdio.h>
15 #include <string>
16 #include <vector>
17 #include <stdarg.h>
18 #include "users.h"
19 #include "channels.h"
20 #include "modules.h"
21 #include "hashcomp.h"
22 #include "inspircd.h"
23 #include "wildcard.h"
24
25 /* $ModDesc: Provides support for the /SILENCE command */
26
27 /* Improved drop-in replacement for the /SILENCE command
28  * syntax: /SILENCE [+|-]<mask> <p|c|i|n|t|a|x> as in <privatemessage|channelmessage|invites|privatenotice|channelnotice|all|exclude>
29  *
30  * example that blocks all except private messages
31  *  /SILENCE +*!*@* a
32  *  /SILENCE +*!*@* px
33  *
34  * example that blocks all invites except from channel services
35  *  /SILENCE +*!*@* i
36  *  /SILENCE +chanserv!services@chatters.net ix
37  *
38  * example that blocks some bad dude from private, notice and inviting you
39  *  /SILENCE +*!kiddie@lamerz.net pin
40  *
41  * TODO: possibly have add and remove check for existing host and only modify flags according to
42  *       what's been changed instead of having to remove first, then add if you want to change
43  *       an entry.
44  */
45
46 // pair of hostmask and flags
47 typedef std::pair<std::string, int> silenceset;
48
49 // deque list of pairs
50 typedef std::deque<silenceset> silencelist;
51
52 // intmasks for flags
53 static int SILENCE_PRIVATE      = 0x0001; /* p  private messages      */
54 static int SILENCE_CHANNEL      = 0x0002; /* c  channel messages      */
55 static int SILENCE_INVITE       = 0x0004; /* i  invites               */
56 static int SILENCE_NOTICE       = 0x0008; /* n  notices               */
57 static int SILENCE_CNOTICE      = 0x0010; /* t  channel notices       */
58 static int SILENCE_ALL          = 0x0020; /* a  all, (pcint)          */
59 static int SILENCE_EXCLUDE      = 0x0040; /* x  exclude this pattern  */
60
61
62 class cmd_silence : public command_t
63 {
64  public:
65         cmd_silence (InspIRCd* Instance) : command_t(Instance,"SILENCE", 0, 0)
66         {
67                 this->source = "m_silence_ext.so";
68                 syntax = "{[+|-]<mask> <p|c|i|n|t|a|x>}";
69         }
70
71         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
72         {
73                 if (!pcnt)
74                 {
75                         // no parameters, show the current silence list.
76                         // Use Extensible::GetExt to fetch the silence list
77                         silencelist* sl;
78                         user->GetExt("silence_list", sl);
79                         // if the user has a silence list associated with their user record, show it
80                         if (sl)
81                         {
82                                 for (silencelist::const_iterator c = sl->begin(); c != sl->end(); c++)
83                                 {
84                                         user->WriteServ("271 %s %s %s %s",user->nick, user->nick,c->first.c_str(), DecompPattern(c->second).c_str());
85                                 }
86                         }
87                         user->WriteServ("272 %s :End of Silence List",user->nick);
88
89                         return CMD_SUCCESS;
90                 }
91                 else if (pcnt > 0)
92                 {
93                         // one or more parameters, add or delete entry from the list (only the first parameter is used)
94                         std::string mask = parameters[0] + 1;
95                         char action = *parameters[0];
96                         // Default is private and notice so clients do not break
97                         int pattern = CompilePattern("pn");
98
99                         // if pattern supplied, use it
100                         if (pcnt > 1) {
101                                 pattern = CompilePattern(parameters[1]);
102                         }
103                         
104                         if (!mask.length())
105                         {
106                                 // 'SILENCE +' or 'SILENCE -', assume *!*@*
107                                 mask = "*!*@*";
108                         }
109                         
110                         ModeParser::CleanMask(mask);
111
112                         if (action == '-')
113                         {
114                                 // fetch their silence list
115                                 silencelist* sl;
116                                 user->GetExt("silence_list", sl);
117                                 // does it contain any entries and does it exist?
118                                 if (sl)
119                                 {
120                                         for (silencelist::iterator i = sl->begin(); i != sl->end(); i++)
121                                         {
122                                                 // search through for the item
123                                                 irc::string listitem = i->first.c_str();
124                                                 if (listitem == mask && i->second == pattern)
125                                                 {
126                                                         sl->erase(i);
127                                                         user->WriteServ("950 %s %s :Removed %s %s from silence list",user->nick, user->nick, mask.c_str(), DecompPattern(pattern).c_str());
128                                                         if (!sl->size())
129                                                         {
130                                                                 DELETE(sl);
131                                                                 user->Shrink("silence_list");
132                                                         }
133                                                         break;
134                                                 }
135                                         }
136                                 }
137                         }
138                         else if (action == '+')
139                         {
140                                 // fetch the user's current silence list
141                                 silencelist* sl;
142                                 user->GetExt("silence_list", sl);
143                                 // what, they dont have one??? WE'RE ALL GONNA DIE! ...no, we just create an empty one.
144                                 if (!sl)
145                                 {
146                                         sl = new silencelist;
147                                         user->Extend("silence_list", sl);
148                                 }
149                                 for (silencelist::iterator n = sl->begin(); n != sl->end();  n++)
150                                 {
151                                         irc::string listitem = n->first.c_str();
152                                         if (listitem == mask && n->second == pattern)
153                                         {
154                                                 user->WriteServ("952 %s %s :%s %s is already on your silence list",user->nick, user->nick, mask.c_str(), DecompPattern(pattern).c_str());
155                                                 return CMD_SUCCESS;
156                                         }
157                                 }
158                                 if (((pattern & SILENCE_EXCLUDE) > 0))
159                                 {
160                                         sl->push_front(silenceset(mask,pattern));
161                                 }
162                                 else
163                                 {
164                                         sl->push_back(silenceset(mask,pattern));
165                                 }
166                                 user->WriteServ("951 %s %s :Added %s %s to silence list",user->nick, user->nick, mask.c_str(), DecompPattern(pattern).c_str());
167                                 return CMD_SUCCESS;
168                         }
169                 }
170                 return CMD_SUCCESS;
171         }
172
173         /* turn the nice human readable pattern into a mask */
174         int CompilePattern(const char* pattern)
175         {
176                 int p = 0;
177                 for (const char* n = pattern; *n; n++)
178                 {
179                         switch (*n)
180                         {
181                                 case 'p':
182                                         p |= SILENCE_PRIVATE;
183                                         break;
184                                 case 'c':
185                                         p |= SILENCE_CHANNEL;
186                                         break;
187                                 case 'i': 
188                                         p |= SILENCE_INVITE;
189                                         break;
190                                 case 'n':
191                                         p |= SILENCE_NOTICE;
192                                         break;
193                                 case 't':
194                                         p |= SILENCE_CNOTICE;
195                                         break;
196                                 case 'a':
197                                         p |= SILENCE_ALL;
198                                         break;
199                                 case 'x':
200                                         p |= SILENCE_EXCLUDE;
201                                         break;
202                                 default:
203                                         break;
204                         }
205                 }
206                 return p;
207         }
208
209         /* turn the mask into a nice human readable format */
210         std::string DecompPattern (const int pattern)
211         {
212                 std::string out;
213                 if ((pattern & SILENCE_PRIVATE) > 0)
214                         out += ",privatemessages";
215                 if ((pattern & SILENCE_CHANNEL) > 0)
216                         out += ",channelmessages";
217                 if ((pattern & SILENCE_INVITE) > 0)
218                         out += ",invites";
219                 if ((pattern & SILENCE_NOTICE) > 0)
220                         out += ",privatenotices";
221                 if ((pattern & SILENCE_CNOTICE) > 0)
222                         out += ",channelnotices";
223                 if ((pattern & SILENCE_ALL) > 0)
224                         out = ",all";
225                 if ((pattern & SILENCE_EXCLUDE) > 0)
226                         out += ",exclude";
227                 return "<" + out.substr(1) + ">";
228         }
229
230 };
231
232 class ModuleSilence : public Module
233 {
234         
235         cmd_silence* mycommand;
236  public:
237  
238         ModuleSilence(InspIRCd* Me)
239                 : Module::Module(Me)
240         {
241                 
242                 mycommand = new cmd_silence(ServerInstance);
243                 ServerInstance->AddCommand(mycommand);
244         }
245
246         void Implements(char* List)
247         {
248                 List[I_OnBuildExemptList] = List[I_OnUserQuit] = List[I_On005Numeric] = List[I_OnUserPreNotice] = List[I_OnUserPreMessage] = List[I_OnUserPreInvite] = 1;
249         }
250
251         virtual void OnUserQuit(userrec* user, const std::string &reason, const std::string &oper_message)
252         {
253                 // when the user quits tidy up any silence list they might have just to keep things tidy
254                 silencelist* sl;
255                 user->GetExt("silence_list", sl);
256                 if (sl)
257                 {
258                         DELETE(sl);
259                         user->Shrink("silence_list");
260                 }
261         }
262
263         virtual void On005Numeric(std::string &output)
264         {
265                 // we don't really have a limit...
266                 output = output + " ESILENCE SILENCE=999";
267         }
268
269         virtual void OnBuildExemptList(MessageType message_type, chanrec* chan, userrec* sender, char status, CUList &exempt_list)
270         {
271                 int public_silence = (message_type == MSG_PRIVMSG ? SILENCE_CHANNEL : SILENCE_CNOTICE);
272                 CUList *ulist;
273                 switch (status)
274                 {
275                         case '@':
276                                 ulist = chan->GetOppedUsers();
277                                 break;
278                         case '%':
279                                 ulist = chan->GetHalfoppedUsers();
280                                 break;
281                         case '+':
282                                 ulist = chan->GetVoicedUsers();
283                                 break;
284                         default:
285                                 ulist = chan->GetUsers();
286                                 break;
287                 }
288
289                 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
290                 {
291                         if (IS_LOCAL(i->second))
292                         {
293                                 if (MatchPattern(i->second, sender, public_silence) == 1)
294                                 {
295                                         exempt_list[i->second] = i->second;
296                                 }
297                         }
298                 }
299         }
300
301         virtual int PreText(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list, int silence_type)
302         {
303                 if (!IS_LOCAL(user))
304                         return 0;
305
306                 if (target_type == TYPE_USER)
307                 {
308                         return MatchPattern((userrec*)dest, user, silence_type);
309                 }
310                 else if (target_type == TYPE_CHANNEL)
311                 {
312                         chanrec* chan = (chanrec*)dest;
313                         if (chan)
314                         {
315                                 this->OnBuildExemptList((silence_type == SILENCE_PRIVATE ? MSG_PRIVMSG : MSG_NOTICE), chan, user, status, exempt_list);
316                         }
317                 }
318                 return 0;
319         }
320
321         virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
322         {
323                 return PreText(user, dest, target_type, text, status, exempt_list, SILENCE_PRIVATE);
324         }
325
326         virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
327         {
328                 return PreText(user, dest, target_type, text, status, exempt_list, SILENCE_NOTICE);
329         }
330
331         virtual int OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel)
332         {
333                 return MatchPattern(dest, source, SILENCE_INVITE);
334         }
335
336         int MatchPattern(userrec* dest, userrec* source, int pattern)
337         {
338                 silencelist* sl;
339                 dest->GetExt("silence_list", sl);
340                 if (sl)
341                 {
342                         for (silencelist::const_iterator c = sl->begin(); c != sl->end(); c++)
343                         {
344                                 if (((((c->second & pattern) > 0)) || ((c->second & SILENCE_ALL) > 0)) && (ServerInstance->MatchText(source->GetFullHost(), c->first)))
345                                         return !(((c->second & SILENCE_EXCLUDE) > 0));
346                         }
347                 }
348                 return 0;
349         }
350
351         virtual ~ModuleSilence()
352         {
353         }
354         
355         virtual Version GetVersion()
356         {
357                 return Version(1,1,0,1,VF_VENDOR,API_VERSION);
358         }
359 };
360
361
362 class ModuleSilenceFactory : public ModuleFactory
363 {
364  public:
365         ModuleSilenceFactory()
366         {
367         }
368         
369         ~ModuleSilenceFactory()
370         {
371         }
372         
373         virtual Module * CreateModule(InspIRCd* Me)
374         {
375                 return new ModuleSilence(Me);
376         }
377         
378 };
379
380
381 extern "C" void * init_module( void )
382 {
383         return new ModuleSilenceFactory;
384 }
385