summaryrefslogtreecommitdiff
path: root/src/modules/m_censor.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-10-25 13:34:26 +0100
committerPeter Powell <petpow@saberuk.com>2018-10-25 13:34:26 +0100
commitda96cf374de819399136023f6bc30dc30affd156 (patch)
tree5f1510d468494820d87fd63e7916b3d844c18f70 /src/modules/m_censor.cpp
parent0e6b18ff9180fc7794cea53d0566411b9afb0d7e (diff)
Fix the censor module sending the wrong numeric in some cases.
The appropriate numeric response when a user has the censor mode enabled is ERR_CANTSENDTOUSER not ERR_CANTSENDTOUSER.
Diffstat (limited to 'src/modules/m_censor.cpp')
-rw-r--r--src/modules/m_censor.cpp43
1 files changed, 30 insertions, 13 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp
index fedc0f713..a9c55386c 100644
--- a/src/modules/m_censor.cpp
+++ b/src/modules/m_censor.cpp
@@ -46,23 +46,41 @@ class ModuleCensor : public Module
if (!IS_LOCAL(user))
return MOD_RES_PASSTHRU;
- bool active = false;
+ int numeric = 0;
+ const char* targetname = NULL;
- if (target.type == MessageTarget::TYPE_USER)
- active = target.Get<User>()->IsModeSet(cu);
- else if (target.type == MessageTarget::TYPE_CHANNEL)
+ switch (target.type)
{
- Channel* c = target.Get<Channel>();
- active = c->IsModeSet(cc);
- ModResult res = CheckExemption::Call(exemptionprov, user, c, "censor");
+ case MessageTarget::TYPE_USER:
+ {
+ User* targuser = target.Get<User>();
+ if (!targuser->IsModeSet(cu))
+ return MOD_RES_PASSTHRU;
+
+ numeric = ERR_CANTSENDTOUSER;
+ targetname = targuser->nick.c_str();
+ break;
+ }
+
+ case MessageTarget::TYPE_CHANNEL:
+ {
+ Channel* targchan = target.Get<Channel>();
+ if (!targchan->IsModeSet(cc))
+ return MOD_RES_PASSTHRU;
- if (res == MOD_RES_ALLOW)
+ ModResult result = CheckExemption::Call(exemptionprov, user, targchan, "censor");
+ if (result == MOD_RES_ALLOW)
+ return MOD_RES_PASSTHRU;
+
+ numeric = ERR_CANNOTSENDTOCHAN;
+ targetname = targchan->name.c_str();
+ break;
+ }
+
+ default:
return MOD_RES_PASSTHRU;
}
- if (!active)
- return MOD_RES_PASSTHRU;
-
for (censor_t::iterator index = censors.begin(); index != censors.end(); index++)
{
size_t censorpos;
@@ -70,8 +88,7 @@ class ModuleCensor : public Module
{
if (index->second.empty())
{
- const std::string targname = target.type == MessageTarget::TYPE_CHANNEL ? target.Get<Channel>()->name : target.Get<User>()->nick;
- user->WriteNumeric(ERR_CANNOTSENDTOCHAN, targname, "Your message contained a censored word (" + index->first + "), and was blocked");
+ user->WriteNumeric(numeric, targetname, "Your message contained a censored word (" + index->first + "), and was blocked");
return MOD_RES_DENY;
}