X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_operjoin.cpp;h=4308068e3e83aaa57b2a36744282d183fbfc9bc4;hb=7f00015727fab50e37de46aa90d218b31c852c87;hp=864325cdafb7e58587058288021234cde4386823;hpb=9fc9227cf51585dd2e44c2fcd0014c8da8f8739f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp index 864325cda..4308068e3 100644 --- a/src/modules/m_operjoin.cpp +++ b/src/modules/m_operjoin.cpp @@ -1,76 +1,117 @@ -// operjoin module by typobox43 +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * 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. + * + * --------------------------------------------------- + */ #include "users.h" #include "channels.h" #include "modules.h" +#include "inspircd.h" -/* $ModDesc: Forces opers to join a specified channel on oper-up */ - -Server *Srv; - -class ModuleOperjoin : public Module { +/* $ModDesc: Forces opers to join the specified channel(s) on oper-up */ +class ModuleOperjoin : public Module +{ private: - std::string operChan; + std::vector operChans; ConfigReader* conf; + + + int tokenize(const string &str, std::vector &tokens) + { + // skip delimiters at beginning. + string::size_type lastPos = str.find_first_not_of(",", 0); + // find first "non-delimiter". + string::size_type pos = str.find_first_of(",", lastPos); + + while (string::npos != pos || string::npos != lastPos) + { + // found a token, add it to the vector. + tokens.push_back(str.substr(lastPos, pos - lastPos)); + // skip delimiters. Note the "not_of" + lastPos = str.find_first_not_of(",", pos); + // find next "non-delimiter" + pos = str.find_first_of(",", lastPos); + } + return tokens.size(); + } public: - - ModuleOperjoin() { - - Srv = new Server; - conf = new ConfigReader; - + ModuleOperjoin(InspIRCd* Me) + : Module::Module(Me) + { + + conf = new ConfigReader(ServerInstance); operChan = conf->ReadValue("operjoin", "channel", 0); - + operChans.clear(); + if (!operChan.empty()) + tokenize(operChan,operChans); } - virtual ~ModuleOperjoin() { - - delete Srv; - delete conf; - + void Implements(char* List) + { + List[I_OnPostOper] = List[I_OnRehash] = 1; } - virtual Version GetVersion() { - - return Version(1,0,0,1,0); - + virtual void OnRehash(userrec* user, const std::string ¶meter) + { + DELETE(conf); + conf = new ConfigReader(ServerInstance); + operChan = conf->ReadValue("operjoin", "channel", 0); + operChans.clear(); + if (!operChan.empty()) + tokenize(operChan,operChans); } - virtual void OnOper(userrec* user) { - - if(operChan != "") { + virtual ~ModuleOperjoin() + { + DELETE(conf); + } - Srv->JoinUserToChannel(user,operChan,""); + virtual Version GetVersion() + { + return Version(1,1,0,1,VF_VENDOR,API_VERSION); + } - } + virtual void OnPostOper(userrec* user, const std::string &opertype) + { + if (!IS_LOCAL(user)) + return; + for(std::vector::iterator it = operChans.begin(); it != operChans.end(); it++) + if (ServerInstance->IsChannel(it->c_str())) + chanrec::JoinUser(ServerInstance, user, it->c_str(), false, ""); } }; class ModuleOperjoinFactory : public ModuleFactory { - public: - ModuleOperjoinFactory() - { - } - - ~ModuleOperjoinFactory() - { - } + public: + ModuleOperjoinFactory() + { + } - virtual Module * CreateModule() - { - return new ModuleOperjoin; - } + ~ModuleOperjoinFactory() + { + } + virtual Module * CreateModule(InspIRCd* Me) + { + return new ModuleOperjoin(Me); + } }; extern "C" void * init_module( void ) { - return new ModuleOperjoinFactory; + return new ModuleOperjoinFactory; } -