]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_antibear.cpp
OOPS! We try again, since I'm smoking craq. LF is 0x0a NOT CR.
[user/henk/code/inspircd.git] / src / modules / m_antibear.cpp
index f0affea7e427e4f773574ac2323377d9c7e80064..2718cbb4ce6b4db2a005259697aab864492830b4 100644 (file)
  * ---------------------------------------------------
  */
 
+#include "inspircd.h"
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "inspircd.h"
 #include "xline.h"
 
 /* $ModDesc: Sends a numeric on connect which cripples a common type of trojan/spambot */
@@ -45,7 +45,7 @@ class ModuleAntiBear : public Module
 
        virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)
        {
-               if (command == "NOTICE" && !validated && pcnt > 1)
+               if (command == "NOTICE" && !validated && pcnt > 1 && user->GetExt("antibear_timewait"))
                {
                        if (!strncmp(parameters[1], "\1TIME Mon May 01 18:54:20 2006", 30))
                        {
@@ -56,13 +56,12 @@ class ModuleAntiBear : public Module
                                        return 1;
                                }
                        }
-                       else
-                       {
-                               /* Theyre not registered and the notice is targetted at a server. */
-                               if ((user->registered != REG_ALL) && (strchr(parameters[0], '.')))
-                                       return 1;
-                       }
+                       
+                       user->Shrink("antibear_timewait");
+                       // Block the command, so the user doesn't receive a no such nick notice
+                       return 1;
                }
+               
                return 0;
        }
 
@@ -71,35 +70,9 @@ class ModuleAntiBear : public Module
                user->WriteServ("439 %s :This server has anti-spambot mechanisms enabled.", user->nick);
                user->WriteServ("931 %s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick);
                user->WriteServ("PRIVMSG %s :\1TIME\1", user->nick);
+               user->Extend("antibear_timewait");
                return 0;
        }
 };
 
-class ModuleAntiBearFactory : public ModuleFactory
-{
- public:
-       ModuleAntiBearFactory()
-       {
-       }
-       
-       ~ModuleAntiBearFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleAntiBear(Me);
-       }
-       
-};
-
-
-//
-// The "C" linkage factory0() function creates the ModuleAntiBearFactory
-// class for this library
-//
-
-extern "C" DllExport void * init_module( void )
-{
-       return new ModuleAntiBearFactory;
-}
+MODULE_INIT(ModuleAntiBear)