summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorMichael <michaelhazell@hotmail.com>2020-10-24 17:40:47 -0400
committerSadie Powell <sadie@witchery.services>2020-10-24 22:59:51 +0100
commitbf162f683707a2774a60c3801ac4023231998bf5 (patch)
treed568c72962955fe1d8709bd5d6b86acaebd48fe7 /src/modules
parentf6d30f8fef02e9571628bd3cc6519c2b897ff496 (diff)
Change glob matching to be configurable
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_cban.cpp19
1 files changed, 17 insertions, 2 deletions
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" : "");
}
};