]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_banexception.cpp
cf4144935998decc0e47c49c71df5bfca662a802
[user/henk/code/inspircd.git] / src / modules / m_banexception.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
8  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25 #include "listmode.h"
26
27 /* $ModDesc: Provides support for the +e channel mode */
28 /* $ModDep: ../../include/listmode.h */
29
30 /* Written by Om<om@inspircd.org>, April 2005. */
31 /* Rewritten to use the listmode utility by Om, December 2005 */
32 /* Adapted from m_exception, which was originally based on m_chanprotect and m_silence */
33
34 // The +e channel mode takes a nick!ident@host, glob patterns allowed,
35 // and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them
36 // Now supports CIDR and IP addresses -- Brain
37
38
39 /** Handles +e channel mode
40  */
41 class BanException : public ListModeBase
42 {
43  public:
44         BanException(Module* Creator) : ListModeBase(Creator, "banexception", 'e', "End of Channel Exception List", 348, 349, true) { }
45 };
46
47
48 class ModuleBanException : public Module
49 {
50         BanException be;
51
52  public:
53         ModuleBanException() : be(this)
54         {
55         }
56
57         void init()
58         {
59                 ServerInstance->Modules->AddService(be);
60
61                 be.DoImplements(this);
62                 Implementation list[] = { I_OnRehash, I_On005Numeric, I_OnExtBanCheck, I_OnCheckChannelBan };
63                 ServerInstance->Modules->Attach(list, this, sizeof(list)/sizeof(Implementation));
64         }
65
66         void On005Numeric(std::map<std::string, std::string>& tokens)
67         {
68                 tokens["EXCEPTS"] = "e";
69         }
70
71         ModResult OnExtBanCheck(User *user, Channel *chan, char type)
72         {
73                 if (chan != NULL)
74                 {
75                         ListModeBase::ModeList *list = be.GetList(chan);
76
77                         if (!list)
78                                 return MOD_RES_PASSTHRU;
79
80                         for (ListModeBase::ModeList::iterator it = list->begin(); it != list->end(); it++)
81                         {
82                                 if (it->mask[0] != type || it->mask[1] != ':')
83                                         continue;
84
85                                 if (chan->CheckBan(user, it->mask.substr(2)))
86                                 {
87                                         // They match an entry on the list, so let them pass this.
88                                         return MOD_RES_ALLOW;
89                                 }
90                         }
91                 }
92
93                 return MOD_RES_PASSTHRU;
94         }
95
96         ModResult OnCheckChannelBan(User* user, Channel* chan)
97         {
98                 if (chan)
99                 {
100                         ListModeBase::ModeList *list = be.GetList(chan);
101
102                         if (!list)
103                         {
104                                 // No list, proceed normally
105                                 return MOD_RES_PASSTHRU;
106                         }
107
108                         for (ListModeBase::ModeList::iterator it = list->begin(); it != list->end(); it++)
109                         {
110                                 if (chan->CheckBan(user, it->mask))
111                                 {
112                                         // They match an entry on the list, so let them in.
113                                         return MOD_RES_ALLOW;
114                                 }
115                         }
116                 }
117                 return MOD_RES_PASSTHRU;
118         }
119
120         void OnSyncChannel(Channel* chan, Module* proto, void* opaque)
121         {
122                 be.DoSyncChannel(chan, proto, opaque);
123         }
124
125         void OnRehash(User* user)
126         {
127                 be.DoRehash();
128         }
129
130         Version GetVersion()
131         {
132                 return Version("Provides support for the +e channel mode", VF_VENDOR);
133         }
134 };
135
136 MODULE_INIT(ModuleBanException)