]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_channelban.cpp
Merge pull request #1162 from SaberUK/insp20+fix-deinstall
[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  private:
28  public:
29         void init()
30         {
31                 Implementation eventlist[] = { I_OnCheckBan, I_On005Numeric };
32                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
33         }
34
35         ~ModuleBadChannelExtban()
36         {
37         }
38
39         Version GetVersion()
40         {
41                 return Version("Extban 'j' - channel status/join ban", VF_OPTCOMMON|VF_VENDOR);
42         }
43
44         ModResult OnCheckBan(User *user, Channel *c, const std::string& mask)
45         {
46                 if ((mask.length() > 2) && (mask[0] == 'j') && (mask[1] == ':'))
47                 {
48                         std::string rm = mask.substr(2);
49                         char status = 0;
50                         ModeHandler* mh = ServerInstance->Modes->FindPrefix(rm[0]);
51                         if (mh)
52                         {
53                                 rm = mask.substr(3);
54                                 status = mh->GetModeChar();
55                         }
56                         for (UCListIter i = user->chans.begin(); i != user->chans.end(); i++)
57                         {
58                                 if (InspIRCd::Match((**i).name, rm))
59                                 {
60                                         if (status)
61                                         {
62                                                 Membership* memb = (**i).GetUser(user);
63                                                 if (memb && memb->hasMode(status))
64                                                         return MOD_RES_DENY;
65                                         }
66                                         else
67                                                 return MOD_RES_DENY;
68                                 }
69                         }
70                 }
71                 return MOD_RES_PASSTHRU;
72         }
73
74         void On005Numeric(std::string &output)
75         {
76                 ServerInstance->AddExtBanChar('j');
77         }
78 };
79
80
81 MODULE_INIT(ModuleBadChannelExtban)
82