]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_muteban.cpp
Modify the log message to contain the log type.
[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         void init() CXX11_OVERRIDE
27         {
28                 Implementation eventlist[] = { I_OnUserPreMessage, I_On005Numeric };
29                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
30         }
31
32         Version GetVersion() CXX11_OVERRIDE
33         {
34                 return Version("Implements extban +b m: - mute bans",VF_OPTCOMMON|VF_VENDOR);
35         }
36
37         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
38         {
39                 if (!IS_LOCAL(user) || target_type != TYPE_CHANNEL)
40                         return MOD_RES_PASSTHRU;
41
42                 Channel* chan = static_cast<Channel*>(dest);
43                 if (chan->GetExtBanStatus(user, 'm') == MOD_RES_DENY && chan->GetPrefixValue(user) < VOICE_VALUE)
44                 {
45                         user->WriteNumeric(404, "%s %s :Cannot send to channel (you're muted)", user->nick.c_str(), chan->name.c_str());
46                         return MOD_RES_DENY;
47                 }
48
49                 return MOD_RES_PASSTHRU;
50         }
51
52         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
53         {
54                 tokens["EXTBAN"].push_back('m');
55         }
56 };
57
58 MODULE_INIT(ModuleQuietBan)