]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_channelban.cpp
Convert ISUPPORT to use a map instead of a string.
[user/henk/code/inspircd.git] / src / modules / m_channelban.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22
23 /* $ModDesc: Implements extban +b j: - matching channel bans */
24
25 class ModuleBadChannelExtban : public Module
26 {
27  public:
28         void init()
29         {
30                 Implementation eventlist[] = { I_OnCheckBan, I_On005Numeric };
31                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
32         }
33
34         Version GetVersion()
35         {
36                 return Version("Extban 'j' - channel status/join ban", VF_OPTCOMMON|VF_VENDOR);
37         }
38
39         ModResult OnCheckBan(User *user, Channel *c, const std::string& mask)
40         {
41                 if ((mask.length() > 2) && (mask[0] == 'j') && (mask[1] == ':'))
42                 {
43                         std::string rm = mask.substr(2);
44                         char status = 0;
45                         ModeHandler* mh = ServerInstance->Modes->FindPrefix(rm[0]);
46                         if (mh)
47                         {
48                                 rm = mask.substr(3);
49                                 status = mh->GetModeChar();
50                         }
51                         for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++)
52                         {
53                                 if (InspIRCd::Match((**i).name, rm))
54                                 {
55                                         if (status)
56                                         {
57                                                 Membership* memb = (**i).GetUser(user);
58                                                 if (memb && memb->hasMode(status))
59                                                         return MOD_RES_DENY;
60                                         }
61                                         else
62                                                 return MOD_RES_DENY;
63                                 }
64                         }
65                 }
66                 return MOD_RES_PASSTHRU;
67         }
68
69         void On005Numeric(std::map<std::string, std::string>& tokens)
70         {
71                 tokens["EXTBAN"].push_back('j');
72         }
73 };
74
75 MODULE_INIT(ModuleBadChannelExtban)