X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_nokicks.cpp;h=c5ad179e8a64fdcd21d19b05c1c043d2144c78e3;hb=7c197db72eab03321e4f3e847054e13126520504;hp=c1cc9670f7572566bcaacc71e9e9d6474a16eaf3;hpb=09afa5085614e0224a296abd082fce205003c3fe;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_nokicks.cpp b/src/modules/m_nokicks.cpp index c1cc9670f..c5ad179e8 100644 --- a/src/modules/m_nokicks.cpp +++ b/src/modules/m_nokicks.cpp @@ -2,33 +2,29 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - #include #include "users.h" #include "channels.h" #include "modules.h" -#include "helperfuncs.h" #include "inspircd.h" /* $ModDesc: Provides support for unreal-style channel mode +Q */ + + class NoKicks : public ModeHandler { public: - NoKicks() : ModeHandler('Q', 0, 0, false, MODETYPE_CHANNEL, false) { } + NoKicks(InspIRCd* Instance) : ModeHandler(Instance, 'Q', 0, 0, false, MODETYPE_CHANNEL, false) { } ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) { @@ -55,27 +51,23 @@ class NoKicks : public ModeHandler class ModuleNoKicks : public Module { - Server *Srv; + NoKicks* nk; public: - ModuleNoKicks(Server* Me) + ModuleNoKicks(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; - nk = new NoKicks(); - Srv->AddMode(nk, 'Q'); + + nk = new NoKicks(ServerInstance); + if (!ServerInstance->AddMode(nk, 'Q')) + throw ModuleException("Could not add new modes!"); } void Implements(char* List) { - List[I_On005Numeric] = List[I_OnAccessCheck] = 1; - } - - virtual void On005Numeric(std::string &output) - { - InsertMode(output,"Q",4); + List[I_OnAccessCheck] = 1; } virtual int OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) @@ -84,7 +76,7 @@ class ModuleNoKicks : public Module { if (channel->IsModeSet('Q')) { - if ((Srv->IsUlined(source->nick)) || (Srv->IsUlined(source->server)) || (!strcmp(source->server,""))) + if ((ServerInstance->ULine(source->nick)) || (ServerInstance->ULine(source->server)) || (!*source->server)) { // ulines can still kick with +Q in place return ACR_ALLOW; @@ -102,12 +94,13 @@ class ModuleNoKicks : public Module virtual ~ModuleNoKicks() { + ServerInstance->Modes->DelMode(nk); DELETE(nk); } virtual Version GetVersion() { - return Version(1,0,0,0,VF_STATIC|VF_VENDOR); + return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION); } }; @@ -123,7 +116,7 @@ class ModuleNoKicksFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleNoKicks(Me); }