]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_muteban.cpp
72c4acd47ca12c57baf8f577880542dcab279f20
[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, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
32         {
33                 if (!IS_LOCAL(user) || target_type != TYPE_CHANNEL)
34                         return MOD_RES_PASSTHRU;
35
36                 Channel* chan = static_cast<Channel*>(dest);
37                 if (chan->GetExtBanStatus(user, 'm') == MOD_RES_DENY && chan->GetPrefixValue(user) < VOICE_VALUE)
38                 {
39                         user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Cannot send to channel (you're muted)", chan->name.c_str());
40                         return MOD_RES_DENY;
41                 }
42
43                 return MOD_RES_PASSTHRU;
44         }
45
46         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
47         {
48                 tokens["EXTBAN"].push_back('m');
49         }
50 };
51
52 MODULE_INIT(ModuleQuietBan)