X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_restrictchans.cpp;h=bc66afce5577bd14bb714662ada1484f0aa05849;hb=6d03943426dcce76ba66567a9b18425a5ebb4c0c;hp=a56df61776821819164269242f333e586cc77d88;hpb=eb4229deed0281ae566ef7e55a144e5d3183a4b2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_restrictchans.cpp b/src/modules/m_restrictchans.cpp index a56df6177..bc66afce5 100644 --- a/src/modules/m_restrictchans.cpp +++ b/src/modules/m_restrictchans.cpp @@ -2,84 +2,81 @@ * | 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-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits + * * This program is free but copyrighted software; see - * the file COPYING for details. + * the file COPYING for details. * * --------------------------------------------------- */ -#include -#include "users.h" -#include "channels.h" -#include "modules.h" -#include "helperfuncs.h" +#include "inspircd.h" /* $ModDesc: Only opers may create new channels if this module is loaded */ -Server *Srv; - class ModuleRestrictChans : public Module { - public: - ModuleRestrictChans() - { - Srv = new Server; - } - - virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) + + + std::map allowchans; + + void ReadConfig() { - // user is not an oper - if (!strchr(user->modes,'o')) + ConfigReader* MyConf = new ConfigReader; + allowchans.clear(); + for (int i = 0; i < MyConf->Enumerate("allowchannel"); i++) { - // channel does not yet exist (record is null, about to be created IF we were to allow it) - if (!chan) - { - WriteServ(user->fd,"530 %s %s :Only IRC operators may create new channels",user->nick,cname,cname); - return 1; - } + std::string txt; + txt = MyConf->ReadValue("allowchannel", "name", i); + irc::string channel = txt.c_str(); + allowchans[channel] = 1; } - return 0; + delete MyConf; } - - virtual ~ModuleRestrictChans() - { - delete Srv; + + public: + ModuleRestrictChans() + { + + ReadConfig(); + Implementation eventlist[] = { I_OnUserPreJoin, I_OnRehash }; + ServerInstance->Modules->Attach(eventlist, this, 2); } - - virtual Version GetVersion() + + virtual void OnRehash(User* user) { - return Version(1,0,0,1,VF_VENDOR); + ReadConfig(); } -}; -class ModuleRestrictChansFactory : public ModuleFactory -{ - public: - ModuleRestrictChansFactory() + virtual ModResult OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs, const std::string &keygiven) { + irc::string x = cname; + if (!IS_LOCAL(user)) + return MOD_RES_PASSTHRU; + + // channel does not yet exist (record is null, about to be created IF we were to allow it) + if (!chan) + { + // user is not an oper and its not in the allow list + if ((!IS_OPER(user)) && (allowchans.find(x) == allowchans.end())) + { + user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Only IRC operators may create new channels",user->nick.c_str(),cname); + return MOD_RES_DENY; + } + } + return MOD_RES_PASSTHRU; } - - ~ModuleRestrictChansFactory() + + virtual ~ModuleRestrictChans() { } - - virtual Module * CreateModule() + + virtual Version GetVersion() { - return new ModuleRestrictChans; + return Version("Only opers may create new channels if this module is loaded",VF_VENDOR,API_VERSION); } - }; - -extern "C" void * init_module( void ) -{ - return new ModuleRestrictChansFactory; -} - +MODULE_INIT(ModuleRestrictChans)