diff options
author | Michael <michaelhazell@hotmail.com> | 2020-10-24 17:40:47 -0400 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-10-24 22:59:51 +0100 |
commit | bf162f683707a2774a60c3801ac4023231998bf5 (patch) | |
tree | d568c72962955fe1d8709bd5d6b86acaebd48fe7 | |
parent | f6d30f8fef02e9571628bd3cc6519c2b897ff496 (diff) |
Change glob matching to be configurable
-rw-r--r-- | docs/conf/modules.conf.example | 3 | ||||
-rw-r--r-- | src/modules/m_cban.cpp | 19 |
2 files changed, 20 insertions, 2 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 0ab0c7451..49c9d99f8 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -338,6 +338,9 @@ # This module is oper-only and provides /CBAN. # To use, CBAN must be in one of your oper class blocks. #<module name="cban"> +# CBAN does not allow glob channelmasks by default for compatibility +# reasons. You can enable glob support by uncommenting the next line. +#<cban glob="true"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Censor module: Adds channel and user mode +G which block phrases that diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp index dee844320..834498b58 100644 --- a/src/modules/m_cban.cpp +++ b/src/modules/m_cban.cpp @@ -36,6 +36,10 @@ enum ERR_BADCHANNEL = 926 }; +// Compatibility: Use glob matching? +// InspIRCd versions 3.7.0 and below use only exact matching +static bool glob = false; + /** Holds a CBAN item */ class CBan : public XLine @@ -58,7 +62,10 @@ public: bool Matches(const std::string& s) CXX11_OVERRIDE { - return InspIRCd::Match(s, matchtext); + if (glob) + return InspIRCd::Match(s, matchtext); + else + return irc::equals(matchtext, s); } const std::string& Displayable() CXX11_OVERRIDE @@ -184,6 +191,14 @@ class ModuleCBan : public Module, public Stats::EventListener ServerInstance->XLines->UnregisterFactory(&f); } + void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE + { + ConfigTag* tag = ServerInstance->Config->ConfValue("cban"); + + // XXX: Consider changing default behavior on the next major version + glob = tag->getBool("glob", false); + } + ModResult OnStats(Stats::Context& stats) CXX11_OVERRIDE { if (stats.GetSymbol() != 'C') @@ -211,7 +226,7 @@ class ModuleCBan : public Module, public Stats::EventListener Version GetVersion() CXX11_OVERRIDE { - return Version("Adds the /CBAN command which allows server operators to prevent channels matching a glob from being created.", VF_COMMON | VF_VENDOR); + return Version("Adds the /CBAN command which allows server operators to prevent channels matching a glob from being created.", VF_COMMON | VF_VENDOR, glob ? "glob" : ""); } }; |