]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_muteban.cpp
Update the cloaks of connected users when their IP address changes.
[user/henk/code/inspircd.git] / src / modules / m_muteban.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 class ModuleQuietBan : public Module
24 {
25  public:
26         Version GetVersion() CXX11_OVERRIDE
27         {
28                 return Version("Implements extban +b m: - mute bans",VF_OPTCOMMON|VF_VENDOR);
29         }
30
31         ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE
32         {
33                 if (!IS_LOCAL(user) || target.type != MessageTarget::TYPE_CHANNEL)
34                         return MOD_RES_PASSTHRU;
35
36                 Channel* chan = target.Get<Channel>();
37                 if (chan->GetExtBanStatus(user, 'm') == MOD_RES_DENY && chan->GetPrefixValue(user) < VOICE_VALUE)
38                 {
39                         bool notifyuser = ServerInstance->Config->ConfValue("muteban")->getBool("notifyuser", true);
40                         if (!notifyuser)
41                         {
42                                 details.echo_original = true;
43                                 return MOD_RES_DENY;
44                         }
45
46                         user->WriteNumeric(ERR_CANNOTSENDTOCHAN, chan->name, "Cannot send to channel (you're muted)");
47                         return MOD_RES_DENY;
48                 }
49
50                 return MOD_RES_PASSTHRU;
51         }
52
53         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
54         {
55                 tokens["EXTBAN"].push_back('m');
56         }
57 };
58
59 MODULE_INIT(ModuleQuietBan)