]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_banexception.cpp
ad42449451c665dff817278a166af03e597bc226
[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 /* Written by Om<om@inspircd.org>, April 2005. */
28 /* Rewritten to use the listmode utility by Om, December 2005 */
29 /* Adapted from m_exception, which was originally based on m_chanprotect and m_silence */
30
31 // The +e channel mode takes a nick!ident@host, glob patterns allowed,
32 // and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them
33 // Now supports CIDR and IP addresses -- Brain
34
35
36 /** Handles +e channel mode
37  */
38 class BanException : public ListModeBase
39 {
40  public:
41         BanException(Module* Creator) : ListModeBase(Creator, "banexception", 'e', "End of Channel Exception List", 348, 349, true) { }
42 };
43
44
45 class ModuleBanException : public Module
46 {
47         BanException be;
48
49  public:
50         ModuleBanException() : be(this)
51         {
52         }
53
54         void init() CXX11_OVERRIDE
55         {
56                 ServerInstance->Modules->AddService(be);
57
58                 be.DoImplements(this);
59         }
60
61         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
62         {
63                 tokens["EXCEPTS"] = "e";
64         }
65
66         ModResult OnExtBanCheck(User *user, Channel *chan, char type) CXX11_OVERRIDE
67         {
68                 if (chan != NULL)
69                 {
70                         ListModeBase::ModeList *list = be.GetList(chan);
71
72                         if (!list)
73                                 return MOD_RES_PASSTHRU;
74
75                         for (ListModeBase::ModeList::iterator it = list->begin(); it != list->end(); it++)
76                         {
77                                 if (it->mask[0] != type || it->mask[1] != ':')
78                                         continue;
79
80                                 if (chan->CheckBan(user, it->mask.substr(2)))
81                                 {
82                                         // They match an entry on the list, so let them pass this.
83                                         return MOD_RES_ALLOW;
84                                 }
85                         }
86                 }
87
88                 return MOD_RES_PASSTHRU;
89         }
90
91         ModResult OnCheckChannelBan(User* user, Channel* chan) CXX11_OVERRIDE
92         {
93                 if (chan)
94                 {
95                         ListModeBase::ModeList *list = be.GetList(chan);
96
97                         if (!list)
98                         {
99                                 // No list, proceed normally
100                                 return MOD_RES_PASSTHRU;
101                         }
102
103                         for (ListModeBase::ModeList::iterator it = list->begin(); it != list->end(); it++)
104                         {
105                                 if (chan->CheckBan(user, it->mask))
106                                 {
107                                         // They match an entry on the list, so let them in.
108                                         return MOD_RES_ALLOW;
109                                 }
110                         }
111                 }
112                 return MOD_RES_PASSTHRU;
113         }
114
115         void OnSyncChannel(Channel* chan, Module* proto, void* opaque) CXX11_OVERRIDE
116         {
117                 be.DoSyncChannel(chan, proto, opaque);
118         }
119
120         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
121         {
122                 be.DoRehash();
123         }
124
125         Version GetVersion() CXX11_OVERRIDE
126         {
127                 return Version("Provides support for the +e channel mode", VF_VENDOR);
128         }
129 };
130
131 MODULE_INIT(ModuleBanException)