]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chanprotect.cpp
035658f8e8c2cc41e3fca391c119c35e3f85e708
[user/henk/code/inspircd.git] / src / modules / m_chanprotect.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include <stdio.h>
18 #include "users.h"
19 #include "channels.h"
20 #include "modules.h"
21
22 /* $ModDesc: Provides channel modes +a and +q */
23
24 char dummyvalue[] = "on";
25
26 class ModuleChanProtect : public Module
27 {
28         Server *Srv;
29         bool FirstInGetsFounder;
30         ConfigReader *Conf;
31         
32  public:
33  
34         ModuleChanProtect()
35         {
36         
37                 // here we initialise our module. Use new to create new instances of the required
38                 // classes.
39                 
40                 Srv = new Server;
41                 Conf = new ConfigReader;
42                 
43                 // set up our modes. We're using listmodes and not normal extmodes here.
44                 // listmodes only need one parameter as everything else is assumed by the
45                 // nature of the mode thats being created.
46                 Srv->AddExtendedListMode('a');
47                 Srv->AddExtendedListMode('q');
48                 
49                 // read our config options (main config file)
50                 FirstInGetsFounder = Conf->ReadFlag("options","noservices",0);
51         }
52         
53         virtual void On005Numeric(std::string &output)
54         {
55                 std::stringstream line(output);
56                 std::string temp1, temp2;
57                 while (!line.eof())
58                 {
59                         line >> temp1;
60                         if (temp1.substr(0,10) == "CHANMODES=")
61                         {
62                                 // append the chanmode to the end
63                                 temp1 = temp1.substr(10,temp1.length());
64                                 temp1 = "CHANMODES=qa" + temp1;
65                         }
66                         temp2 = temp2 + temp1 + " ";
67                 }
68                 if (temp2.length())
69                         output = temp2.substr(0,temp2.length()-1);
70         }
71
72         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason)
73         {
74                 // FIX: when someone gets kicked from a channel we must remove their Extensibles!
75                 user->Shrink("cm_founder_"+std::string(chan->name));
76                 user->Shrink("cm_protect_"+std::string(chan->name));
77         }
78
79         virtual void OnUserPart(userrec* user, chanrec* channel)
80         {
81                 // FIX: when someone parts a channel we must remove their Extensibles!
82                 user->Shrink("cm_founder_"+std::string(channel->name));
83                 user->Shrink("cm_protect_"+std::string(channel->name));
84         }
85
86         virtual void OnRehash()
87         {
88                 // on a rehash we delete our classes for good measure and create them again.
89                 delete Conf;
90                 Conf = new ConfigReader;
91                 // re-read our config options on a rehash
92                 FirstInGetsFounder = Conf->ReadFlag("options","noservices",0);
93         }
94         
95         virtual void OnUserJoin(userrec* user, chanrec* channel)
96         {
97                 // if the user is the first user into the channel, mark them as the founder, but only if
98                 // the config option for it is set
99                 if (FirstInGetsFounder)
100                 {
101                         if (Srv->CountUsers(channel) == 1)
102                         {
103                                 // we're using Extensible::Extend to add data into user objects.
104                                 // this way is best as it adds data thats accessible to other modules
105                                 // (so long as you document your code properly) without breaking anything
106                                 // because its encapsulated neatly in a map.
107                                 if (user->Extend("cm_founder_"+std::string(channel->name),dummyvalue))
108                                 {
109                                         Srv->Log(DEBUG,"Marked user "+std::string(user->nick)+" as founder for "+std::string(channel->name));
110                                 }
111                         }
112                 }
113         }
114         
115         virtual int OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type)
116         {
117                 // here we perform access checks, this is the important bit that actually stops kicking/deopping
118                 // etc of protected users. There are many types of access check, we're going to handle
119                 // a relatively small number of them relevent to our module using a switch statement.
120         
121                 // don't allow action if:
122                 // (A) Theyre founder (no matter what)
123                 // (B) Theyre protected, and you're not
124                 // always allow the action if:
125                 // (A) The source is ulined
126                 
127                 
128                 // firstly, if a ulined nick, or a server, is setting the mode, then allow them to set the mode
129                 // without any access checks, we're not worthy :p
130                 if ((Srv->IsUlined(source->nick)) || (Srv->IsUlined(source->server)) || (!strcmp(source->server,"")))
131                 {
132                         return ACR_ALLOW;
133                 }
134
135                 switch (access_type)
136                 {
137                         // a user has been deopped. Do we let them? hmmm...
138                         case AC_DEOP:
139                                 if (dest->GetExt("cm_founder_"+std::string(channel->name)))
140                                 {
141                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as the're a channel founder");
142                                         return ACR_DENY;
143                                 }
144                                 if ((dest->GetExt("cm_protect_"+std::string(channel->name))) && (!source->GetExt("cm_protect_"+std::string(channel->name))))
145                                 {
146                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as the're protected (+a)");
147                                         return ACR_DENY;
148                                 }
149                         break;
150
151                         // a user is being kicked. do we chop off the end of the army boot?
152                         case AC_KICK:
153                                 if (dest->GetExt("cm_founder_"+std::string(channel->name)))
154                                 {
155                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't kick "+std::string(dest->nick)+" as the're a channel founder");
156                                         return ACR_DENY;
157                                 }
158                                 if ((dest->GetExt("cm_protect_"+std::string(channel->name))) && (!source->GetExt("cm_protect_"+std::string(channel->name))))
159                                 {
160                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't kick "+std::string(dest->nick)+" as the're protected (+a)");
161                                         return ACR_DENY;
162                                 }
163                         break;
164
165                         // a user is being dehalfopped. Yes, we do disallow -h of a +ha user
166                         case AC_DEHALFOP:
167                                 if (dest->GetExt("cm_founder_"+std::string(channel->name)))
168                                 {
169                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't de-halfop "+std::string(dest->nick)+" as the're a channel founder");
170                                         return ACR_DENY;
171                                 }
172                                 if ((dest->GetExt("cm_protect_"+std::string(channel->name))) && (!source->GetExt("cm_protect_"+std::string(channel->name))))
173                                 {
174                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't de-halfop "+std::string(dest->nick)+" as the're protected (+a)");
175                                         return ACR_DENY;
176                                 }
177                         break;
178
179                         // same with devoice.
180                         case AC_DEVOICE:
181                                 if (dest->GetExt("cm_founder_"+std::string(channel->name)))
182                                 {
183                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't devoice "+std::string(dest->nick)+" as the're a channel founder");
184                                         return ACR_DENY;
185                                 }
186                                 if ((dest->GetExt("cm_protect_"+std::string(channel->name))) && (!source->GetExt("cm_protect_"+std::string(channel->name))))
187                                 {
188                                         Srv->SendServ(source->fd,"484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't devoice "+std::string(dest->nick)+" as the're protected (+a)");
189                                         return ACR_DENY;
190                                 }
191                         break;
192                 }
193                 
194                 // we dont know what this access check is, or dont care. just carry on, nothing to see here.
195                 return ACR_DEFAULT;
196         }
197         
198         virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
199         {
200                 // not out mode, bail
201                 if ((modechar == 'q') && (type == MT_CHANNEL))
202                 {
203                         // set up parameters
204                         chanrec* chan = (chanrec*)target;
205                         userrec* theuser = Srv->FindNick(params[0]);
206                 
207                         // cant find the user given as the parameter, eat the mode change.
208                         if (!theuser)
209                                 return -1;
210                         
211                         // given user isnt even on the channel, eat the mode change
212                         if (!Srv->IsOnChannel(theuser,chan))
213                                 return -1;
214                         
215                         // source is a server, or ulined, we'll let them +-q the user.
216                         if ((Srv->IsUlined(user->nick)) || (Srv->IsUlined(user->server)) || (!strcmp(user->server,"")))
217                         {
218                                 if (mode_on)
219                                 {
220                                         if (!theuser->GetExt("cm_founder_"+std::string(chan->name)))
221                                         {
222                                                 theuser->Extend("cm_founder_"+std::string(chan->name),dummyvalue);
223                                                 return 1;
224                                         }
225                                 }
226                                 else
227                                 {
228                                         if (theuser->GetExt("cm_founder_"+std::string(chan->name)))
229                                         {
230                                                 theuser->Shrink("cm_founder_"+std::string(chan->name));
231                                                 return 1;
232                                         }
233                                 }       
234
235                                 return -1;
236                         }
237                         else
238                         {
239                                 // whoops, someones being naughty!
240                                 WriteServ(user->fd,"468 %s %s :Only servers may set channel mode +q",user->nick, chan->name);
241                                 return -1;
242                         }
243                 }
244                 if ((modechar == 'a') && (type == MT_CHANNEL))
245                 {
246                         // set up parameters
247                         chanrec* chan = (chanrec*)target;
248                         userrec* theuser = Srv->FindNick(params[0]);
249                 
250                         // cant find the user given as the parameter, eat the mode change.
251                         if (!theuser)
252                                 return -1;
253                         
254                         // given user isnt even on the channel, eat the mode change
255                         if (!Srv->IsOnChannel(theuser,chan))
256                                 return -1;
257
258                         // source has +q, is a server, or ulined, we'll let them +-a the user.
259                         if ((Srv->IsUlined(user->nick)) || (Srv->IsUlined(user->server)) || (!strcmp(user->server,"")) || (user->GetExt("cm_founder_"+std::string(chan->name))))
260                         {
261                                 if (mode_on)
262                                 {
263                                         if (!theuser->GetExt("cm_protect_"+std::string(chan->name)))
264                                         {
265                                                 theuser->Extend("cm_protect_"+std::string(chan->name),dummyvalue);
266                                                 return 1;
267                                         }
268                                 }
269                                 else
270                                 {
271                                         if (theuser->GetExt("cm_protect_"+std::string(chan->name)))
272                                         {
273                                                 theuser->Shrink("cm_protect_"+std::string(chan->name));
274                                                 return 1;
275                                         }
276                                 }       
277
278                                 return -1;
279                         }
280                         else
281                         {
282                                 // bzzzt, wrong answer!
283                                 WriteServ(user->fd,"482 %s %s :You are not a channel founder",user->nick, chan->name);
284                                 return -1;
285                         }
286                 }
287                 return 0;
288         }
289
290         virtual void OnSendList(userrec* user, chanrec* channel, char mode)
291         {
292                 if (mode == 'q')
293                 {
294                         chanuserlist cl = Srv->GetUsers(channel);
295                         for (int i = 0; i < cl.size(); i++)
296                         {
297                                 if (cl[i]->GetExt("cm_founder_"+std::string(channel->name)))
298                                 {
299                                         WriteServ(user->fd,"386 %s %s %s",user->nick, channel->name,cl[i]->nick);
300                                 }
301                         }
302                         WriteServ(user->fd,"387 %s %s :End of channel founder list",user->nick, channel->name);
303                 }
304                 if (mode == 'a')
305                 {
306                         chanuserlist cl = Srv->GetUsers(channel);
307                         for (int i = 0; i < cl.size(); i++)
308                         {
309                                 if (cl[i]->GetExt("cm_protect_"+std::string(channel->name)))
310                                 {
311                                         WriteServ(user->fd,"388 %s %s %s",user->nick, channel->name,cl[i]->nick);
312                                 }
313                         }
314                         WriteServ(user->fd,"389 %s %s :End of channel protected user list",user->nick, channel->name);
315                 }
316
317         }
318         
319         virtual ~ModuleChanProtect()
320         {
321                 delete Conf;
322                 delete Srv;
323         }
324         
325         virtual Version GetVersion()
326         {
327                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
328         }
329         
330         virtual string_list OnChannelSync(chanrec* chan)
331         {
332                 // this is called when the server is linking into a net and wants to sync channel data.
333                 // we should send our mode changes for the channel here to ensure that other servers
334                 // know whos +q/+a on the channel.
335                 chanuserlist cl = Srv->GetUsers(chan);
336                 string_list commands;
337                 for (int i = 0; i < cl.size(); i++)
338                 {
339                         if (cl[i]->GetExt("cm_founder_"+std::string(chan->name)))
340                         {
341                                 commands.push_back("M "+std::string(chan->name)+" +q "+std::string(cl[i]->nick));
342                         }
343                         if (cl[i]->GetExt("cm_protect_"+std::string(chan->name)))
344                         {
345                                 commands.push_back("M "+std::string(chan->name)+" +a "+std::string(cl[i]->nick));
346                         }
347                 }
348                 return commands;
349         }
350
351 };
352
353
354 class ModuleChanProtectFactory : public ModuleFactory
355 {
356  public:
357         ModuleChanProtectFactory()
358         {
359         }
360         
361         ~ModuleChanProtectFactory()
362         {
363         }
364         
365         virtual Module * CreateModule()
366         {
367                 return new ModuleChanProtect;
368         }
369         
370 };
371
372
373 extern "C" void * init_module( void )
374 {
375         return new ModuleChanProtectFactory;
376 }
377