X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_denychans.cpp;h=3b3cd50fa74bdcb26f3bc9ca0f7f1681941c5945;hb=cd7657bddc7a6dc2e7326077d173a874bf71f6bd;hp=1da4158d3caaaa6c2931790cf6ba2e90d5aca4b2;hpb=9e7c48c59f3ffda80eb979aed43f5491c80b7e75;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index 1da4158d3..3b3cd50fa 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -2,26 +2,21 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2004 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 "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" #include "hashcomp.h" -#include "helperfuncs.h" +#include "wildcard.h" /* $ModDesc: Implements config tags which allow blocking of joins to channels */ @@ -29,54 +24,57 @@ class ModuleDenyChannels : public Module { private: - Server *Srv; + ConfigReader *Conf; public: - ModuleDenyChannels(Server* Me) - : Module::Module(Me) + ModuleDenyChannels(InspIRCd* Me) : Module(Me) { - Srv = Me; - Conf = new ConfigReader; + + Conf = new ConfigReader(ServerInstance); } + virtual void OnRehash(userrec* user, const std::string ¶m) + { + DELETE(Conf); + Conf = new ConfigReader(ServerInstance); + } + virtual ~ModuleDenyChannels() { - delete Conf; + DELETE(Conf); } virtual Version GetVersion() { - return Version(1,0,0,1,VF_VENDOR); + return Version(1,1,0,1,VF_VENDOR,API_VERSION); } void Implements(char* List) { - List[I_OnUserPreJoin] = 1; + List[I_OnUserPreJoin] = List[I_OnRehash] = 1; } - virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) - { + virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname, std::string &privs) + { for (int j =0; j < Conf->Enumerate("badchan"); j++) { - irc::string cn = Conf->ReadValue("badchan","name",j).c_str(); - irc::string thischan = cname; - if (thischan == cn) + if (match(cname, Conf->ReadValue("badchan","name",j).c_str())) { - if ((Conf->ReadFlag("badchan","allowopers",j)) && (strchr(user->modes,'o'))) + if (IS_OPER(user) && Conf->ReadFlag("badchan","allowopers",j)) { return 0; } else { std::string reason = Conf->ReadValue("badchan","reason",j); - WriteServ(user->fd,"926 %s %s :Channel %s is forbidden: %s",user->nick,cname,cname,reason.c_str()); + user->WriteServ("926 %s %s :Channel %s is forbidden: %s",user->nick,cname,cname,reason.c_str()); return 1; } } } return 0; - } + } }; // stuff down here is the module-factory stuff. For basic modules you can ignore this. @@ -92,7 +90,7 @@ class ModuleDenyChannelsFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleDenyChannels(Me); } @@ -100,7 +98,7 @@ class ModuleDenyChannelsFactory : public ModuleFactory }; -extern "C" void * init_module( void ) +extern "C" DllExport void * init_module( void ) { return new ModuleDenyChannelsFactory; }