]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_blockcaps.cpp
Merge tag 'v2.0.27' into master.
[user/henk/code/inspircd.git] / src / modules / m_blockcaps.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
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>
8  *
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.
12  *
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
16  * details.
17  *
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/>.
20  */
21
22
23 #include "inspircd.h"
24 #include "modules/exemption.h"
25
26 class ModuleBlockCAPS : public Module
27 {
28         CheckExemption::EventProvider exemptionprov;
29         SimpleChannelModeHandler bc;
30         unsigned int percent;
31         unsigned int minlen;
32         std::bitset<UCHAR_MAX> lowercase;
33         std::bitset<UCHAR_MAX> uppercase;
34
35 public:
36         ModuleBlockCAPS()
37                 : exemptionprov(this)
38                 , bc(this, "blockcaps", 'B')
39         {
40         }
41
42         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
43         {
44                 tokens["EXTBAN"].push_back('B');
45         }
46
47         ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE
48         {
49                 if (target.type == MessageTarget::TYPE_CHANNEL)
50                 {
51                         if (!IS_LOCAL(user))
52                                 return MOD_RES_PASSTHRU;
53
54                         Channel* c = target.Get<Channel>();
55                         ModResult res = CheckExemption::Call(exemptionprov, user, c, "blockcaps");
56
57                         if (res == MOD_RES_ALLOW)
58                                 return MOD_RES_PASSTHRU;
59
60                         if (!c->GetExtBanStatus(user, 'B').check(!c->IsModeSet(bc)))
61                         {
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.
64                                 std::string ctcpname;
65                                 std::string message(details.text);
66                                 if (details.IsCTCP(ctcpname, message))
67                                 {
68                                         // If the CTCP is not an action then skip it.
69                                         if (!irc::equals(ctcpname, "ACTION"))
70                                                 return MOD_RES_PASSTHRU;
71                                 }
72
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();
76                                 if (length < minlen)
77                                         return MOD_RES_PASSTHRU;
78
79                                 // Count the characters to see how many upper case and
80                                 // ignored (non upper or lower) characters there are.
81                                 size_t upper = 0;
82                                 for (std::string::const_iterator iter = message.begin(); iter != message.end(); ++iter)
83                                 {
84                                         unsigned char chr = static_cast<unsigned char>(*iter);
85                                         if (uppercase.test(chr))
86                                                 upper += 1;
87                                         else if (!lowercase.test(chr))
88                                                 length -= 1;
89                                 }
90
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)
95                                 {
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));
97                                         return MOD_RES_DENY;
98                                 }
99                         }
100                 }
101                 return MOD_RES_PASSTHRU;
102         }
103
104         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
105         {
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);
109
110                 lowercase.reset();
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));
114
115                 uppercase.reset();
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));
119         }
120
121         Version GetVersion() CXX11_OVERRIDE
122         {
123                 return Version("Provides support to block all-CAPS channel messages and notices", VF_VENDOR);
124         }
125 };
126
127 MODULE_INIT(ModuleBlockCAPS)