]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Change glob matching to be configurable
authorMichael <michaelhazell@hotmail.com>
Sat, 24 Oct 2020 21:40:47 +0000 (17:40 -0400)
committerSadie Powell <sadie@witchery.services>
Sat, 24 Oct 2020 21:59:51 +0000 (22:59 +0100)
docs/conf/modules.conf.example
src/modules/m_cban.cpp

index 0ab0c7451585855d51093d79cc47890a5852d875..49c9d99f8eff95ba7521a20bd06f4df63e003959 100644 (file)
 # 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
index dee8443207f5047e81406f3db58f0bde5e715165..834498b58300aa81123b971e7decd4f5ccf11b73 100644 (file)
@@ -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" : "");
        }
 };