]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_conn_join.cpp
Prevent using invalid UIDs and enforce UID/SID matching
[user/henk/code/inspircd.git] / src / modules / m_conn_join.cpp
index caf964567e114849ab7d0706e2cd46467ddb0526..7c6e06e5dd8017518500a7dee18aa43c99f16e44 100644 (file)
 
 class ModuleConnJoin : public Module
 {
-       private:
-               std::string JoinChan;
-               std::vector<std::string> Joinchans;
-
-
-               int tokenize(const std::string &str, std::vector<std::string> &tokens)
-               {
-                       // skip delimiters at beginning.
-                       std::string::size_type lastPos = str.find_first_not_of(",", 0);
-                       // find first "non-delimiter".
-                       std::string::size_type pos = str.find_first_of(",", lastPos);
-
-                       while (std::string::npos != pos || std::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:
-               ModuleConnJoin()
-                                       {
-                       OnRehash(NULL);
-                       Implementation eventlist[] = { I_OnPostConnect, I_OnRehash };
-                       ServerInstance->Modules->Attach(eventlist, this, 2);
+               void init()
+               {
+                       Implementation eventlist[] = { I_OnPostConnect };
+                       ServerInstance->Modules->Attach(eventlist, this, 1);
                }
 
                void Prioritize()
@@ -54,21 +29,7 @@ class ModuleConnJoin : public Module
                        ServerInstance->Modules->SetPriority(this, I_OnPostConnect, PRIORITY_LAST);
                }
 
-
-               virtual void OnRehash(User* user)
-               {
-                       ConfigReader conf;
-                       JoinChan = conf.ReadValue("autojoin", "channel", 0);
-                       Joinchans.clear();
-                       if (!JoinChan.empty())
-                               tokenize(JoinChan,Joinchans);
-               }
-
-               virtual ~ModuleConnJoin()
-               {
-               }
-
-               virtual Version GetVersion()
+               Version GetVersion()
                {
                        return Version("Forces users to join the specified channel(s) on connect", VF_VENDOR);
                }
@@ -77,11 +38,19 @@ class ModuleConnJoin : public Module
                {
                        if (!IS_LOCAL(user))
                                return;
-                       for(std::vector<std::string>::iterator it = Joinchans.begin(); it != Joinchans.end(); it++)
-                               if (ServerInstance->IsChannel(it->c_str(), ServerInstance->Config->Limits.ChanMax))
-                                       Channel::JoinUser(user, it->c_str(), false, "", false, ServerInstance->Time());
-               }
 
+                       std::string chanlist = ServerInstance->Config->ConfValue("autojoin")->getString("channel");
+                       chanlist = user->GetClass()->config->getString("autojoin", chanlist);
+
+                       irc::commasepstream chans(chanlist);
+                       std::string chan;
+
+                       while (chans.GetToken(chan))
+                       {
+                               if (ServerInstance->IsChannel(chan.c_str(), ServerInstance->Config->Limits.ChanMax))
+                                       Channel::JoinUser(user, chan.c_str(), false, "", false, ServerInstance->Time());
+                       }
+               }
 };