X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_denychans.cpp;h=3646690fb853ca51bd29025f638cb063a590b5e1;hb=be36d92f3dcb0ac3772daebff43a5ecfe0a2d364;hp=300d13b4ab67d039949ca4cf6527ca2b3d5d4d47;hpb=fea1a27cb96a114f698eedcf90401b78406108fb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index 300d13b4a..3646690fb 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -2,12 +2,9 @@ * | 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. * @@ -18,7 +15,8 @@ #include "channels.h" #include "modules.h" #include "hashcomp.h" -#include "helperfuncs.h" +#include "inspircd.h" +#include "wildcard.h" /* $ModDesc: Implements config tags which allow blocking of joins to channels */ @@ -26,22 +24,22 @@ class ModuleDenyChannels : public Module { private: - Server *Srv; + ConfigReader *Conf; public: - ModuleDenyChannels(Server* Me) : Module::Module(Me) + ModuleDenyChannels(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; - Conf = new ConfigReader; + + Conf = new ConfigReader(ServerInstance); } - virtual void OnRehash(const std::string ¶m) + virtual void OnRehash(userrec* user, const std::string ¶m) { DELETE(Conf); - Conf = new ConfigReader; + Conf = new ConfigReader(ServerInstance); } - + virtual ~ModuleDenyChannels() { DELETE(Conf); @@ -49,7 +47,7 @@ class ModuleDenyChannels : public Module 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) @@ -57,13 +55,11 @@ class ModuleDenyChannels : public Module 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)) && *user->oper) { @@ -94,7 +90,7 @@ class ModuleDenyChannelsFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleDenyChannels(Me); }