diff options
| author | 2020-07-07 01:42:38 +0100 | |
|---|---|---|
| committer | 2020-07-07 01:49:03 +0100 | |
| commit | 7823761cf3bbdd58ff9c33bcc1cc72c6a36a4c25 (patch) | |
| tree | 40c12753f1df949b97837539c1f4b47950da77a2 /src/modules/m_botmode.cpp | |
| parent | Fix a grammar error created by misspell-fixer. (diff) | |
| download | inspircd++-7823761cf3bbdd58ff9c33bcc1cc72c6a36a4c25.tar.gz inspircd++-7823761cf3bbdd58ff9c33bcc1cc72c6a36a4c25.tar.bz2 inspircd++-7823761cf3bbdd58ff9c33bcc1cc72c6a36a4c25.zip | |
Add a config option that forces bots to use NOTICEs.
Diffstat (limited to 'src/modules/m_botmode.cpp')
| -rw-r--r-- | src/modules/m_botmode.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/modules/m_botmode.cpp b/src/modules/m_botmode.cpp index 7abf6f749..a31d51d3d 100644 --- a/src/modules/m_botmode.cpp +++ b/src/modules/m_botmode.cpp @@ -69,6 +69,7 @@ class ModuleBotMode private: SimpleUserModeHandler bm; BotTag tag; + bool forcenotice; public: ModuleBotMode() @@ -79,11 +80,31 @@ class ModuleBotMode { } + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE + { + forcenotice = ServerInstance->Config->ConfValue("botmode")->getBool("forcenotice"); + } + void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE { tokens["BOT"] = ConvToStr(bm.GetModeChar()); } + ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE + { + // Allow sending if forcenotice is off, the user is not a bot, or if the message is a notice. + if (!forcenotice || !user->IsModeSet(bm) || details.type == MSG_NOTICE) + return MOD_RES_PASSTHRU; + + // Allow sending PRIVMSGs to services pseudoclients. + if (target.type == MessageTarget::TYPE_USER && target.Get<User>()->server->IsULine()) + return MOD_RES_PASSTHRU; + + // Force the message to be broadcast as a NOTICE. + details.type = MSG_NOTICE; + return MOD_RES_PASSTHRU; + } + ModResult OnWhoLine(const Who::Request& request, LocalUser* source, User* user, Membership* memb, Numeric::Numeric& numeric) CXX11_OVERRIDE { size_t flag_index; |
