]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_banexception.cpp
Add missing Server::AddMode()
[user/henk/code/inspircd.git] / src / modules / m_banexception.cpp
1 #include <stdio.h>
2 #include <string>
3 #include <vector>
4 #include "users.h"
5 #include "channels.h"
6 #include "modules.h"
7 #include "mode.h"
8 #include "helperfuncs.h"
9 #include "u_listmode.h"
10
11 /* $ModDesc: Provides support for the +e channel mode */
12
13 /* Written by Om<om@inspircd.org>, April 2005. */
14 /* Rewritten to use the listmode utility by Om, December 2005 */
15 /* Adapted from m_exception, which was originally based on m_chanprotect and m_silence */
16
17 // The +e channel mode takes a nick!ident@host, glob patterns allowed,
18 // and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them
19
20 class BanException : public ListModeBase
21 {
22  public:
23         BanException(Server* serv) : ListModeBase(serv, 'e', "End of Channel Exception List", "348", "349", true) { }
24 };
25
26
27 class ModuleBanException : public Module
28 {
29         BanException* be;
30         Server* Srv;
31
32 public:
33         ModuleBanException(Server* serv)
34         : Module::Module(serv)
35         {
36                 be = new BanException(serv);
37                 Srv = serv;
38                 Srv->AddMode(be, 'e');
39         }
40         
41         virtual void Implements(char* List)
42         {
43                 be->DoImplements(List);
44                 List[I_On005Numeric] = List[I_OnCheckBan] = 1;
45         }
46         
47         virtual void On005Numeric(std::string &output)
48         {
49                 output.append(" EXCEPTS=e");
50                 InsertMode(output, "e", 1);
51         }
52
53         virtual int OnCheckBan(userrec* user, chanrec* chan)
54         {
55                 if(chan != NULL)
56                 {
57                         modelist* list = (modelist*)chan->GetExt(be->GetInfoKey());
58                         Srv->Log(DEBUG, std::string(user->nick)+" is trying to join "+std::string(chan->name)+", checking for ban exceptions");
59                         
60                         if(list)
61                         {
62                                 for (modelist::iterator it = list->begin(); it != list->end(); it++)
63                                         if(Srv->MatchText(user->GetFullRealHost(), it->mask) || Srv->MatchText(user->GetFullHost(), it->mask))
64                                                 // They match an entry on the list, so let them in.
65                                                 return 1;
66                                 return 0;
67                         }
68                         // or if there wasn't a list, there can't be anyone on it, so we don't need to do anything.
69                 }
70                 return 0;       
71         }
72
73         virtual void OnCleanup(int target_type, void* item)
74         {
75                 be->DoCleanup(target_type, item);
76         }
77
78         virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque)
79         {
80                 be->DoSyncChannel(chan, proto, opaque);
81         }
82
83         virtual void OnChannelDelete(chanrec* chan)
84         {
85                 be->DoChannelDelete(chan);
86         }
87
88         virtual void OnRehash(const std::string &param)
89         {
90                 be->DoRehash();
91         }
92         
93         virtual Version GetVersion()
94         {
95                 return Version(1, 0, 0, 3, VF_STATIC | VF_VENDOR);
96         }
97         
98         virtual ~ModuleBanException()
99         {
100                 DELETE(be);     
101         }
102 };
103
104 class ModuleBanExceptionFactory : public ModuleFactory
105 {
106  public:
107         ModuleBanExceptionFactory()
108         {
109         }
110         
111         ~ModuleBanExceptionFactory()
112         {
113         }
114         
115         virtual Module* CreateModule(Server* serv)
116         {
117                 return new ModuleBanException(serv);
118         }
119         
120 };
121
122
123 extern "C" void * init_module( void )
124 {
125         return new ModuleBanExceptionFactory;
126 }