summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_operjoin.cpp26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp
index c33400954..056b9e181 100644
--- a/src/modules/m_operjoin.cpp
+++ b/src/modules/m_operjoin.cpp
@@ -16,6 +16,25 @@ class ModuleOperjoin : public Module
ConfigReader* conf;
Server* Srv;
+ int tokenize(const string &str, std::vector<std::string> &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)
@@ -50,7 +69,12 @@ class ModuleOperjoin : public Module
{
if(operChan != "")
{
- Srv->JoinUserToChannel(user,operChan,"");
+ std::vector<std::string> operChans;
+ tokenize(operChan,operChans);
+ for(std::vector<std::string>::iterator it = operChans.begin(); it != operChans.end(); it++)
+ {
+ Srv->JoinUserToChannel(user,(*it),"");
+ }
}
}