X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_antibear.cpp;h=5690572ce7d0de53a1d340d5a32eba8cf84b9f79;hb=2ab88037d8d7d6df3fb9686216a0b36f5ece2313;hp=f0affea7e427e4f773574ac2323377d9c7e80064;hpb=9cf56d917d92959701694477f7944d45ad2c38ed;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_antibear.cpp b/src/modules/m_antibear.cpp index f0affea7e..5690572ce 100644 --- a/src/modules/m_antibear.cpp +++ b/src/modules/m_antibear.cpp @@ -11,9 +11,6 @@ * --------------------------------------------------- */ -#include "users.h" -#include "channels.h" -#include "modules.h" #include "inspircd.h" #include "xline.h" @@ -43,9 +40,9 @@ class ModuleAntiBear : public Module List[I_OnUserRegister] = List[I_OnPreCommand] = 1; } - virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line) + virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, User *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,50 +53,23 @@ 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; } - virtual int OnUserRegister(userrec* user) + virtual int OnUserRegister(User* user) { 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)