aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_timedbans.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-07-29 12:13:45 +0100
committerGravatar Sadie Powell2020-07-29 12:13:45 +0100
commite059f822495b02f73f85a668c152c8233cb66f92 (patch)
tree3fc144657d6843f6b07caec69839921bdc962663 /src/modules/m_timedbans.cpp
parentAdd a method for creating a regex pattern with included flags. (diff)
parentReplace all erroneous space indentation with tab indentation. (diff)
Merge branch 'insp3' into master.
Diffstat (limited to 'src/modules/m_timedbans.cpp')
-rw-r--r--src/modules/m_timedbans.cpp37
1 files changed, 27 insertions, 10 deletions
diff --git a/src/modules/m_timedbans.cpp b/src/modules/m_timedbans.cpp
index b34854549..b67a1b95d 100644
--- a/src/modules/m_timedbans.cpp
+++ b/src/modules/m_timedbans.cpp
@@ -71,6 +71,8 @@ class CommandTban : public Command
}
public:
+ bool sendnotice;
+
CommandTban(Module* Creator)
: Command(Creator,"TBAN", 3)
, banmode(Creator, "ban")
@@ -131,13 +133,18 @@ class CommandTban : public Command
T.chan = channel;
TimedBanList.push_back(T);
- const std::string message = InspIRCd::Format("Timed ban %s added by %s on %s lasting for %s.",
+ if (sendnotice)
+ {
+ const std::string message = InspIRCd::Format("Timed ban %s added by %s on %s lasting for %s.",
mask.c_str(), user->nick.c_str(), channel->name.c_str(), InspIRCd::DurationString(duration).c_str());
- // If halfop is loaded, send notice to halfops and above, otherwise send to ops and above
- PrefixMode* mh = ServerInstance->Modes.FindPrefixMode('h');
- char pfxchar = (mh && mh->name == "halfop") ? mh->GetPrefix() : '@';
- channel->WriteRemoteNotice(message, pfxchar);
+ // If halfop is loaded, send notice to halfops and above, otherwise send to ops and above
+ PrefixMode* mh = ServerInstance->Modes.FindPrefixMode('h');
+ char pfxchar = (mh && mh->name == "halfop") ? mh->GetPrefix() : '@';
+
+ channel->WriteRemoteNotice(message, pfxchar);
+ }
+
return CMD_SUCCESS;
}
@@ -205,6 +212,12 @@ class ModuleTimedBans : public Module
{
}
+ void ReadConfig(ConfigStatus& status) override
+ {
+ ConfigTag* tag = ServerInstance->Config->ConfValue("timedbans");
+ cmd.sendnotice = tag->getBool("sendnotice", true);
+ }
+
void OnBackgroundTimer(time_t curtime) override
{
timedbans expired;
@@ -224,13 +237,17 @@ class ModuleTimedBans : public Module
const std::string mask = i->mask;
Channel* cr = i->chan;
- const std::string message = InspIRCd::Format("Timed ban %s set by %s on %s has expired.",
+ if (cmd.sendnotice)
+ {
+ const std::string message = InspIRCd::Format("Timed ban %s set by %s on %s has expired.",
mask.c_str(), i->setter.c_str(), cr->name.c_str());
- // If halfop is loaded, send notice to halfops and above, otherwise send to ops and above
- PrefixMode* mh = ServerInstance->Modes.FindPrefixMode('h');
- char pfxchar = (mh && mh->name == "halfop") ? mh->GetPrefix() : '@';
- cr->WriteRemoteNotice(message, pfxchar);
+ // If halfop is loaded, send notice to halfops and above, otherwise send to ops and above
+ PrefixMode* mh = ServerInstance->Modes.FindPrefixMode('h');
+ char pfxchar = (mh && mh->name == "halfop") ? mh->GetPrefix() : '@';
+
+ cr->WriteRemoteNotice(message, pfxchar);
+ }
Modes::ChangeList setban;
setban.push_remove(ServerInstance->Modes.FindMode('b', MODETYPE_CHANNEL), mask);