]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_silence.cpp
72dbc6a7370fa1267f6c8d7222095626cc92539a
[user/henk/code/inspircd.git] / src / modules / m_silence.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 "users.h"
18 #include "channels.h"
19 #include "modules.h"
20 #include "hashcomp.h"
21 #include "inspircd.h"
22 #include "wildcard.h"
23
24 /* $ModDesc: Provides support for the /SILENCE command */
25
26 // This typedef holds a silence list. Each user may or may not have a
27 // silencelist, if a silence list is empty for a user, he/she does not
28 // have one of these structures associated with their user record.
29 typedef std::map<irc::string, time_t> silencelist;
30
31 class cmd_silence : public command_t
32 {
33  public:
34         cmd_silence (InspIRCd* Instance) : command_t(Instance,"SILENCE", 0, 0)
35         {
36                 this->source = "m_silence.so";
37                 syntax = "{[+|-]<mask>}";
38         }
39
40         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
41         {
42                 if (!pcnt)
43                 {
44                         // no parameters, show the current silence list.
45                         // Use Extensible::GetExt to fetch the silence list
46                         silencelist* sl;
47                         user->GetExt("silence_list", sl);
48                         // if the user has a silence list associated with their user record, show it
49                         if (sl)
50                         {
51                                 for (silencelist::const_iterator c = sl->begin(); c != sl->end(); c++)
52                                 {
53                                         user->WriteServ("271 %s %s %s :%lu",user->nick, user->nick, c->first.c_str(), (unsigned long)c->second);
54                                 }
55                         }
56                         user->WriteServ("272 %s :End of Silence List",user->nick);
57
58                         return CMD_SUCCESS;
59                 }
60                 else if (pcnt > 0)
61                 {
62                         // one or more parameters, add or delete entry from the list (only the first parameter is used)
63                         std::string mask = parameters[0] + 1;
64                         char action = *parameters[0];
65                         
66                         if (!mask.length())
67                         {
68                                 // 'SILENCE +' or 'SILENCE -', assume *!*@*
69                                 mask = "*!*@*";
70                         }
71                         
72                         ModeParser::CleanMask(mask);
73
74                         if (action == '-')
75                         {
76                                 // fetch their silence list
77                                 silencelist* sl;
78                                 user->GetExt("silence_list", sl);
79                                 // does it contain any entries and does it exist?
80                                 if (sl)
81                                 {
82                                         silencelist::iterator i = sl->find(mask.c_str());
83                                         if (i != sl->end())
84                                         {
85                                                 sl->erase(i);
86                                                 user->WriteServ("950 %s %s :Removed %s from silence list",user->nick, user->nick, mask.c_str());
87                                                 if (!sl->size())
88                                                 {
89                                                         // tidy up -- if a user's list is empty, theres no use having it
90                                                         // hanging around in the user record.
91                                                         DELETE(sl);
92                                                         user->Shrink("silence_list");
93                                                 }
94                                         }
95                                         else
96                                                 user->WriteServ("952 %s %s :%s does not exist on your silence list",user->nick, user->nick, mask.c_str());
97                                 }
98                         }
99                         else if (action == '+')
100                         {
101                                 // fetch the user's current silence list
102                                 silencelist* sl;
103                                 user->GetExt("silence_list", sl);
104                                 // what, they dont have one??? WE'RE ALL GONNA DIE! ...no, we just create an empty one.
105                                 if (!sl)
106                                 {
107                                         sl = new silencelist;
108                                         user->Extend("silence_list", sl);
109                                 }
110                                 silencelist::iterator n = sl->find(mask.c_str());
111                                 if (n != sl->end())
112                                 {
113                                         user->WriteServ("952 %s %s :%s is already on your silence list",user->nick, user->nick, mask.c_str());
114                                         return CMD_FAILURE;
115                                 }
116                                 sl->insert(std::make_pair<irc::string, time_t>(mask.c_str(), ServerInstance->Time()));
117                                 user->WriteServ("951 %s %s :Added %s to silence list",user->nick, user->nick, mask.c_str());
118                                 return CMD_SUCCESS;
119                         }
120                 }
121                 return CMD_SUCCESS;
122         }
123 };
124
125 class ModuleSilence : public Module
126 {
127         
128         cmd_silence* mycommand;
129  public:
130  
131         ModuleSilence(InspIRCd* Me)
132                 : Module::Module(Me)
133         {
134                 
135                 mycommand = new cmd_silence(ServerInstance);
136                 ServerInstance->AddCommand(mycommand);
137         }
138
139         void Implements(char* List)
140         {
141                 List[I_OnUserQuit] = List[I_On005Numeric] = List[I_OnUserPreNotice] = List[I_OnUserPreMessage] = 1;
142         }
143
144         virtual void OnUserQuit(userrec* user, const std::string &reason, const std::string &oper_message)
145         {
146                 // when the user quits tidy up any silence list they might have just to keep things tidy
147                 // and to prevent a HONKING BIG MEMORY LEAK!
148                 silencelist* sl;
149                 user->GetExt("silence_list", sl);
150                 if (sl)
151                 {
152                         DELETE(sl);
153                         user->Shrink("silence_list");
154                 }
155         }
156
157         virtual void On005Numeric(std::string &output)
158         {
159                 // we don't really have a limit...
160                 output = output + " SILENCE=999";
161         }
162         
163         virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
164         {
165                 // im not sure how unreal's silence operates but ours is sensible. It blocks notices and
166                 // privmsgs from people on the silence list, directed privately at the user.
167                 // channel messages are unaffected (ever tried to follow the flow of conversation in
168                 // a channel when you've set an ignore on the two most talkative people?)
169                 if ((target_type == TYPE_USER) && (IS_LOCAL(user)))
170                 {
171                         userrec* u = (userrec*)dest;
172                         silencelist* sl;
173                         u->GetExt("silence_list", sl);
174                         if (sl)
175                         {
176                                 for (silencelist::const_iterator c = sl->begin(); c != sl->end(); c++)
177                                 {
178                                         if (match(user->GetFullHost(), c->first.c_str()))
179                                         {
180                                                 return 1;
181                                         }
182                                 }
183                         }
184                 }
185                 return 0;
186         }
187
188         virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
189         {
190                 return OnUserPreNotice(user,dest,target_type,text,status,exempt_list);
191         }
192
193         virtual ~ModuleSilence()
194         {
195         }
196         
197         virtual Version GetVersion()
198         {
199                 return Version(1,1,0,1,VF_VENDOR,API_VERSION);
200         }
201 };
202
203
204 class ModuleSilenceFactory : public ModuleFactory
205 {
206  public:
207         ModuleSilenceFactory()
208         {
209         }
210         
211         ~ModuleSilenceFactory()
212         {
213         }
214         
215         virtual Module * CreateModule(InspIRCd* Me)
216         {
217                 return new ModuleSilence(Me);
218         }
219         
220 };
221
222
223 extern "C" void * init_module( void )
224 {
225         return new ModuleSilenceFactory;
226 }
227