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