2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
5 * Copyright (C) 2006-2007 Dennis Friis <peavey@inspircd.org>
6 * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7 * Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
9 * This file is part of InspIRCd. InspIRCd is free software: you can
10 * redistribute it and/or modify it under the terms of the GNU General Public
11 * License as published by the Free Software Foundation, version 2.
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "modules/exemption.h"
26 class ModuleBlockCAPS : public Module
28 CheckExemption::EventProvider exemptionprov;
29 SimpleChannelModeHandler bc;
32 std::bitset<UCHAR_MAX> lowercase;
33 std::bitset<UCHAR_MAX> uppercase;
38 , bc(this, "blockcaps", 'B')
42 void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
44 tokens["EXTBAN"].push_back('B');
47 ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE
49 if (target.type == MessageTarget::TYPE_CHANNEL)
52 return MOD_RES_PASSTHRU;
54 Channel* c = target.Get<Channel>();
55 ModResult res = CheckExemption::Call(exemptionprov, user, c, "blockcaps");
57 if (res == MOD_RES_ALLOW)
58 return MOD_RES_PASSTHRU;
60 if (!c->GetExtBanStatus(user, 'B').check(!c->IsModeSet(bc)))
62 // If the message is a CTCP then we skip it unless it is
63 // an ACTION in which case we just check against the body.
65 std::string message(details.text);
66 if (details.IsCTCP(ctcpname, message))
68 // If the CTCP is not an action then skip it.
69 if (!irc::equals(ctcpname, "ACTION"))
70 return MOD_RES_PASSTHRU;
73 // If the message is shorter than the minimum length
74 // then we don't need to do anything else.
75 size_t length = message.length();
77 return MOD_RES_PASSTHRU;
79 // Count the characters to see how many upper case and
80 // ignored (non upper or lower) characters there are.
82 for (std::string::const_iterator iter = message.begin(); iter != message.end(); ++iter)
84 unsigned char chr = static_cast<unsigned char>(*iter);
85 if (uppercase.test(chr))
87 else if (!lowercase.test(chr))
91 // Calculate the percentage which is upper case. If the
92 // message was entirely symbols then it can't contain
93 // any upper case letters.
94 if (length > 0 && round((upper * 100) / length) >= percent)
96 user->WriteNumeric(ERR_CANNOTSENDTOCHAN, c->name, InspIRCd::Format("Your message cannot contain %d%% or more capital letters if it's longer than %d characters", percent, minlen));
101 return MOD_RES_PASSTHRU;
104 void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
106 ConfigTag* tag = ServerInstance->Config->ConfValue("blockcaps");
107 percent = tag->getUInt("percent", 100, 1, 100);
108 minlen = tag->getUInt("minlen", 1, 1, ServerInstance->Config->Limits.MaxLine);
111 const std::string lower = tag->getString("lowercase", "abcdefghijklmnopqrstuvwxyz");
112 for (std::string::const_iterator iter = lower.begin(); iter != lower.end(); ++iter)
113 lowercase.set(static_cast<unsigned char>(*iter));
116 const std::string upper = tag->getString("uppercase", tag->getString("capsmap", "ABCDEFGHIJKLMNOPQRSTUVWXYZ"));
117 for (std::string::const_iterator iter = upper.begin(); iter != upper.end(); ++iter)
118 uppercase.set(static_cast<unsigned char>(*iter));
121 Version GetVersion() CXX11_OVERRIDE
123 return Version("Provides support to block all-CAPS channel messages and notices", VF_VENDOR);
127 MODULE_INIT(ModuleBlockCAPS)