]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_antibear.cpp
Run configure -update on all svn/git changes
[user/henk/code/inspircd.git] / src / modules / m_antibear.cpp
index 266cc34749d05d78bf0b444c72f61a86268b94e3..e429f5c569bd21ab5b9352c578baef11f0bd848b 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
 
 class ModuleAntiBear : public Module
 {
- private:
-
+       LocalIntExt bearExt;
  public:
-       ModuleAntiBear(InspIRCd* Me) : Module(Me)
+       ModuleAntiBear(InspIRCd* Me) : Module(Me), bearExt("antibear_timewait", this)
        {
-
+               Extensible::Register(&bearExt);
                Implementation eventlist[] = { I_OnUserRegister, I_OnPreCommand };
                ServerInstance->Modules->Attach(eventlist, this, 2);
        }
@@ -34,12 +33,12 @@ class ModuleAntiBear : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$",VF_VENDOR,API_VERSION);
+               return Version("Sends a numeric on connect which cripples a common type of trojan/spambot",VF_VENDOR,API_VERSION);
        }
 
-       virtual int OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
+       virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
        {
-               if (command == "NOTICE" && !validated && parameters.size() > 1 && user->GetExt("antibear_timewait"))
+               if (command == "NOTICE" && !validated && parameters.size() > 1 && bearExt.get(user))
                {
                        if (!strncmp(parameters[1].c_str(), "\1TIME Mon May 01 18:54:20 2006", 30))
                        {
@@ -52,24 +51,24 @@ class ModuleAntiBear : public Module
                                else
                                        delete zl;
 
-                               return 1;
+                               return MOD_RES_DENY;
                        }
 
-                       user->Shrink("antibear_timewait");
+                       bearExt.set(user, 0);
                        // Block the command, so the user doesn't receive a no such nick notice
-                       return 1;
+                       return MOD_RES_DENY;
                }
 
-               return 0;
+               return MOD_RES_PASSTHRU;
        }
 
-       virtual int OnUserRegister(User* user)
+       virtual ModResult OnUserRegister(User* user)
        {
                user->WriteNumeric(439, "%s :This server has anti-spambot mechanisms enabled.", user->nick.c_str());
                user->WriteNumeric(931, "%s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick.c_str());
                user->WriteServ("PRIVMSG %s :\1TIME\1", user->nick.c_str());
-               user->Extend("antibear_timewait");
-               return 0;
+               bearExt.set(user, 1);
+               return MOD_RES_PASSTHRU;
        }
 };