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/>.
26 /** Handles the +B channel mode
28 class BlockCaps : public SimpleChannelModeHandler
31 BlockCaps(Module* Creator) : SimpleChannelModeHandler(Creator, "blockcaps", 'B') { }
34 class ModuleBlockCAPS : public Module
42 ModuleBlockCAPS() : bc(this)
46 void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
48 tokens["EXTBAN"].push_back('B');
51 ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
53 if (target_type == TYPE_CHANNEL)
55 if ((!IS_LOCAL(user)) || (text.length() < minlen))
56 return MOD_RES_PASSTHRU;
58 Channel* c = (Channel*)dest;
59 ModResult res = ServerInstance->OnCheckExemption(user,c,"blockcaps");
61 if (res == MOD_RES_ALLOW)
62 return MOD_RES_PASSTHRU;
64 if (!c->GetExtBanStatus(user, 'B').check(!c->IsModeSet(bc)))
66 std::string::size_type caps = 0;
67 unsigned int offset = 0;
68 // Ignore the beginning of the text if it's a CTCP ACTION (/me)
69 if (!text.compare(0, 8, "\1ACTION ", 8))
72 for (std::string::const_iterator i = text.begin() + offset; i != text.end(); ++i)
73 caps += capsmap[(unsigned char)*i];
75 if (((caps * 100) / text.length()) >= percent)
77 user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Your message cannot contain more than %d%% capital letters if it's longer than %d characters", c->name.c_str(), percent, minlen);
82 return MOD_RES_PASSTHRU;
85 void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
87 ConfigTag* tag = ServerInstance->Config->ConfValue("blockcaps");
88 percent = tag->getInt("percent", 100, 1, 100);
89 minlen = tag->getInt("minlen", 1, 1, ServerInstance->Config->Limits.MaxLine);
90 std::string hmap = tag->getString("capsmap", "ABCDEFGHIJKLMNOPQRSTUVWXYZ");
91 memset(capsmap, 0, sizeof(capsmap));
92 for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++)
93 capsmap[(unsigned char)*n] = 1;
96 Version GetVersion() CXX11_OVERRIDE
98 return Version("Provides support to block all-CAPS channel messages and notices", VF_VENDOR);
102 MODULE_INIT(ModuleBlockCAPS)