X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_operjoin.cpp;h=a0a81f7ed8c5e78b87dfc49999e47e6d5078e6fd;hb=1484a054870bdfe94346057053d5c8e48a708232;hp=2517b385f8fa6b0a51e956bce16d33330bc55677;hpb=a7b0c26a4c56440e4bc5ddc6d3ecfeb36089dbb2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp index 2517b385f..a0a81f7ed 100644 --- a/src/modules/m_operjoin.cpp +++ b/src/modules/m_operjoin.cpp @@ -7,7 +7,7 @@ using namespace std; #include "modules.h" #include "helperfuncs.h" -/* $ModDesc: Forces opers to join a specified channel on oper-up */ +/* $ModDesc: Forces opers to join the specified channel(s) on oper-up */ class ModuleOperjoin : public Module { @@ -16,6 +16,25 @@ class ModuleOperjoin : public Module ConfigReader* conf; Server* Srv; + 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(Server* Me) : Module::Module(Me) @@ -32,13 +51,13 @@ class ModuleOperjoin : public Module virtual void OnRehash(const std::string ¶meter) { - delete conf; + DELETE(conf); conf = new ConfigReader; } virtual ~ModuleOperjoin() { - delete conf; + DELETE(conf); } virtual Version GetVersion() @@ -50,7 +69,12 @@ class ModuleOperjoin : public Module { if(operChan != "") { - Srv->JoinUserToChannel(user,operChan,""); + std::vector operChans; + tokenize(operChan,operChans); + for(std::vector::iterator it = operChans.begin(); it != operChans.end(); it++) + { + Srv->JoinUserToChannel(user,(*it),""); + } } } @@ -78,4 +102,3 @@ extern "C" void * init_module( void ) { return new ModuleOperjoinFactory; } -