]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operjoin.cpp
Untested! New m_watch that should be hundreds of times faster (im not joking either)
[user/henk/code/inspircd.git] / src / modules / m_operjoin.cpp
index d1d9ef3b066d87c491c32e493d77160738367ba5..5df02da1ef172fd606043b896b412cc6053eca65 100644 (file)
@@ -5,42 +5,77 @@ 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 */
+
 
-Server *Srv;
 
 class ModuleOperjoin : public Module
 {
        private:
                std::string operChan;
                ConfigReader* conf;
+               
+
+               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()
+               ModuleOperjoin(InspIRCd* Me)
+                       : Module::Module(Me)
                {
-                       Srv = new Server;
-                       conf = new ConfigReader;
+                       
+                       conf = new ConfigReader(ServerInstance);
                        operChan = conf->ReadValue("operjoin", "channel", 0);
                }
 
+               void Implements(char* List)
+               {
+                       List[I_OnPostOper] = List[I_OnRehash] = 1;
+               }
+
+               virtual void OnRehash(const std::string &parameter)
+               {
+                       DELETE(conf);
+                       conf = new ConfigReader(ServerInstance);
+               }
+
                virtual ~ModuleOperjoin()
                {
-                       delete Srv;
-                       delete conf;
+                       DELETE(conf);
                }
 
                virtual Version GetVersion()
                {
-                       return Version(1,0,0,1,VF_VENDOR);
+                       return Version(1,1,0,1,VF_VENDOR,API_VERSION);
                }
 
-               virtual void OnOper(userrec* user, std::string opertype)
+               virtual void OnPostOper(userrec* user, const std::string &opertype)
                {
                        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++)
+                                       chanrec::JoinUser(ServerInstance, user, it->c_str(), false);
                        }
 
                }
@@ -50,22 +85,21 @@ class ModuleOperjoin : public Module
 class ModuleOperjoinFactory : public ModuleFactory
 {
        public:
-               ModuleOperjoinFactory()
-               {
-               }
-
-               ~ModuleOperjoinFactory()
-               {
-               }
-
-               virtual Module * CreateModule()
-               {
-                       return new ModuleOperjoin;
-               }
+               ModuleOperjoinFactory()
+               {
+               }
+
+               ~ModuleOperjoinFactory()
+               {
+               }
+
+               virtual Module * CreateModule(InspIRCd* Me)
+               {
+                       return new ModuleOperjoin(Me);
+               }
 };
 
 extern "C" void * init_module( void )
 {
-        return new ModuleOperjoinFactory;
+       return new ModuleOperjoinFactory;
 }
-