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