X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_banexception.cpp;h=0cd03a08b801c832321227b5e8c380b9c621cd22;hb=b7e299c2e10d915d5e59df4cb3f54951c8daa999;hp=1e7e933263806cd6f6beaa4549b18fedce1994f5;hpb=4b0f6c610f755e0cb93843d5a2a6c70336eafe39;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp index 1e7e93326..0cd03a08b 100644 --- a/src/modules/m_banexception.cpp +++ b/src/modules/m_banexception.cpp @@ -1,30 +1,26 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits * - * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see - * the file COPYING for details. + * the file COPYING for details. * * --------------------------------------------------- */ -#include -#include +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" #include "mode.h" -#include "inspircd.h" #include "u_listmode.h" #include "wildcard.h" /* $ModDesc: Provides support for the +e channel mode */ +/* $ModDep: ../../include/u_listmode.h */ /* Written by Om, April 2005. */ /* Rewritten to use the listmode utility by Om, December 2005 */ @@ -51,16 +47,18 @@ class ModuleBanException : public Module public: ModuleBanException(InspIRCd* Me) - : Module::Module(Me) + : Module(Me) { be = new BanException(ServerInstance); - ServerInstance->AddMode(be, 'e'); + if (!ServerInstance->AddMode(be, 'e')) + throw ModuleException("Could not add new modes!"); + ServerInstance->PublishInterface("ChannelBanList", this); } virtual void Implements(char* List) { be->DoImplements(List); - List[I_On005Numeric] = List[I_OnCheckBan] = 1; + List[I_OnRehash] = List[I_OnRequest] = List[I_On005Numeric] = List[I_OnCheckBan] = 1; } virtual void On005Numeric(std::string &output) @@ -81,7 +79,7 @@ public: snprintf(mask, MAXBUF, "%s!%s@%s", user->nick, user->ident, user->GetIPString()); for (modelist::iterator it = list->begin(); it != list->end(); it++) { - if (ServerInstance->MatchText(user->GetFullRealHost(), it->mask) || ServerInstance->MatchText(user->GetFullHost(), it->mask) || (match(mask, it->mask.c_str(), true))) + if (match(user->GetFullRealHost(), it->mask.c_str()) || match(user->GetFullHost(), it->mask.c_str()) || (match(mask, it->mask.c_str(), true))) { // They match an entry on the list, so let them in. return 1; @@ -109,42 +107,47 @@ public: be->DoChannelDelete(chan); } - virtual void OnRehash(const std::string ¶m) + virtual void OnRehash(userrec* user, const std::string ¶m) { be->DoRehash(); } - - virtual Version GetVersion() - { - return Version(1, 0, 0, 3, VF_COMMON | VF_VENDOR, API_VERSION); - } - - virtual ~ModuleBanException() - { - ServerInstance->Modes->DelMode(be); - DELETE(be); - } -}; -class ModuleBanExceptionFactory : public ModuleFactory -{ - public: - ModuleBanExceptionFactory() + virtual char* OnRequest(Request* request) { + ListModeRequest* LM = (ListModeRequest*)request; + if (strcmp("LM_CHECKLIST", request->GetId()) == 0) + { + modelist* list; + LM->chan->GetExt(be->GetInfoKey(), list); + if (list) + { + char mask[MAXBUF]; + snprintf(mask, MAXBUF, "%s!%s@%s", LM->user->nick, LM->user->ident, LM->user->GetIPString()); + for (modelist::iterator it = list->begin(); it != list->end(); it++) + { + if (match(LM->user->GetFullRealHost(), it->mask.c_str()) || match(LM->user->GetFullHost(), it->mask.c_str()) || (match(mask, it->mask.c_str(), true))) + { + // They match an entry + return (char*)it->mask.c_str(); + } + } + return NULL; + } + } + return NULL; } - - ~ModuleBanExceptionFactory() + + virtual Version GetVersion() { + return Version(1, 1, 0, 3, VF_COMMON | VF_VENDOR, API_VERSION); } - virtual Module* CreateModule(InspIRCd* Me) + virtual ~ModuleBanException() { - return new ModuleBanException(Me); + ServerInstance->Modes->DelMode(be); + DELETE(be); + ServerInstance->UnpublishInterface("ChannelBanList", this); } }; - -extern "C" void * init_module( void ) -{ - return new ModuleBanExceptionFactory; -} +MODULE_INIT(ModuleBanException)