X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_inviteexception.cpp;h=8cca13b1e95f72573d21af91bf29f4520e20fd9c;hb=aec772bdc98bdcfe35c2fc8e74942403c9efcc4d;hp=4ae2ec703399040fe8f3ff4af78d6eb1d792c193;hpb=7f9c6c5118261eac40d9bae22ac2c0ede670512d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_inviteexception.cpp b/src/modules/m_inviteexception.cpp index 4ae2ec703..8cca13b1e 100644 --- a/src/modules/m_inviteexception.cpp +++ b/src/modules/m_inviteexception.cpp @@ -1,15 +1,12 @@ -/* +------------------------------------+ - * | 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. * * --------------------------------------------------- */ @@ -23,6 +20,7 @@ #include "u_listmode.h" /* $ModDesc: Provides support for the +I channel mode */ +/* $ModDep: ../../include/u_listmode.h */ /* * Written by Om , April 2005. @@ -51,13 +49,15 @@ public: ModuleInviteException(InspIRCd* Me) : Module(Me) { ie = new InviteException(ServerInstance); - ServerInstance->AddMode(ie, 'I'); + if (!ServerInstance->AddMode(ie, 'I')) + throw ModuleException("Could not add new modes!"); + ServerInstance->PublishInterface("ChannelBanList", this); } - + virtual void Implements(char* List) { ie->DoImplements(List); - List[I_On005Numeric] = List[I_OnCheckInvite] = 1; + List[I_OnRequest] = List[I_On005Numeric] = List[I_OnCheckInvite] = 1; } virtual void On005Numeric(std::string &output) @@ -90,6 +90,31 @@ public: return 0; } + virtual char* OnRequest(Request* request) + { + ListModeRequest* LM = (ListModeRequest*)request; + if (strcmp("LM_CHECKLIST", request->GetId()) == 0) + { + modelist* list; + LM->chan->GetExt(ie->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; + } + virtual void OnCleanup(int target_type, void* item) { ie->DoCleanup(target_type, item); @@ -105,7 +130,7 @@ public: ie->DoChannelDelete(chan); } - virtual void OnRehash(const std::string ¶m) + virtual void OnRehash(userrec* user, const std::string ¶m) { ie->DoRehash(); } @@ -119,6 +144,7 @@ public: { ServerInstance->Modes->DelMode(ie); DELETE(ie); + ServerInstance->UnpublishInterface("ChannelBanList", this); } };