X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_operjoin.cpp;h=67512815d356a0ef8ddfef8ecfada63c567a8979;hb=3a7dd5b129450b94e0a87b8ad5009da70905b8e5;hp=cba931257b559e60296c532f35009325f22019c5;hpb=981ca37d6641404548a13623b90438f8f1c87ded;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp index cba931257..67512815d 100644 --- a/src/modules/m_operjoin.cpp +++ b/src/modules/m_operjoin.cpp @@ -5,23 +5,45 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" -#include "helperfuncs.h" -/* $ModDesc: Forces opers to join a specified channel on oper-up */ +#include "inspircd.h" + +/* $ModDesc: Forces opers to join the specified channel(s) on oper-up */ + + class ModuleOperjoin : public Module { private: std::string operChan; 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) + ModuleOperjoin(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; - conf = new ConfigReader; + + conf = new ConfigReader(ServerInstance); operChan = conf->ReadValue("operjoin", "channel", 0); } @@ -32,13 +54,13 @@ class ModuleOperjoin : public Module virtual void OnRehash(const std::string ¶meter) { - delete conf; - conf = new ConfigReader; + DELETE(conf); + conf = new ConfigReader(ServerInstance); } virtual ~ModuleOperjoin() { - delete conf; + DELETE(conf); } virtual Version GetVersion() @@ -50,7 +72,10 @@ 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++) + chanrec::JoinUser(ServerInstance, user, it->c_str(), false); } } @@ -60,22 +85,21 @@ class ModuleOperjoin : public Module class ModuleOperjoinFactory : public ModuleFactory { public: - ModuleOperjoinFactory() - { - } - - ~ModuleOperjoinFactory() - { - } - - virtual Module * CreateModule(Server* Me) - { - return new ModuleOperjoin(Me); - } + ModuleOperjoinFactory() + { + } + + ~ModuleOperjoinFactory() + { + } + + virtual Module * CreateModule(InspIRCd* Me) + { + return new ModuleOperjoin(Me); + } }; extern "C" void * init_module( void ) { - return new ModuleOperjoinFactory; + return new ModuleOperjoinFactory; } -