]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_passforward.cpp
Change allocation of UserManager::clientlist to be physically part of the object...
[user/henk/code/inspircd.git] / src / modules / m_passforward.cpp
index 47f71bbe08f1b9ae050fac54e7f569332cb496b4..b5696c8f4361da33488a67ada344f24cb66e3fa0 100644 (file)
 
 class ModulePassForward : public Module
 {
- private:
        std::string nickrequired, forwardmsg, forwardcmd;
 
  public:
-       ModulePassForward()
-       {
-               OnRehash(NULL);
-               Implementation eventlist[] = { I_OnPostConnect, I_OnRehash };
-               ServerInstance->Modules->Attach(eventlist, this, 2);
-       }
-
-       Version GetVersion()
+       Version GetVersion() CXX11_OVERRIDE
        {
                return Version("Sends server password to NickServ", VF_VENDOR);
        }
 
-       void OnRehash(User* user)
+       void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
        {
-               ConfigReader Conf;
-               nickrequired = Conf.ReadValue("passforward", "nick", "NickServ", 0);
-               forwardmsg = Conf.ReadValue("passforward", "forwardmsg", "NOTICE $nick :*** Forwarding PASS to $nickrequired", 0);
-               forwardcmd = Conf.ReadValue("passforward", "cmd", "PRIVMSG $nickrequired :IDENTIFY $pass", 0);
+               ConfigTag* tag = ServerInstance->Config->ConfValue("passforward");
+               nickrequired = tag->getString("nick", "NickServ");
+               forwardmsg = tag->getString("forwardmsg", "NOTICE $nick :*** Forwarding PASS to $nickrequired");
+               forwardcmd = tag->getString("cmd", "PRIVMSG $nickrequired :IDENTIFY $pass");
        }
 
-       void FormatStr(std::string& result, const std::string& format, const std::string &nick, const std::string &pass)
+       void FormatStr(std::string& result, const std::string& format, const LocalUser* user)
        {
                for (unsigned int i = 0; i < format.length(); i++)
                {
@@ -59,12 +51,17 @@ class ModulePassForward : public Module
                                }
                                else if (format.substr(i, 5) == "$nick")
                                {
-                                       result.append(nick);
+                                       result.append(user->nick);
+                                       i += 4;
+                               }
+                               else if (format.substr(i, 5) == "$user")
+                               {
+                                       result.append(user->ident);
                                        i += 4;
                                }
                                else if (format.substr(i,5) == "$pass")
                                {
-                                       result.append(pass);
+                                       result.append(user->password);
                                        i += 4;
                                }
                                else
@@ -75,7 +72,7 @@ class ModulePassForward : public Module
                }
        }
 
-       virtual void OnPostConnect(User* ruser)
+       void OnPostConnect(User* ruser) CXX11_OVERRIDE
        {
                LocalUser* user = IS_LOCAL(ruser);
                if (!user || user->password.empty())
@@ -84,20 +81,19 @@ class ModulePassForward : public Module
                if (!nickrequired.empty())
                {
                        /* Check if nick exists and its server is ulined */
-                       User* u = ServerInstance->FindNick(nickrequired.c_str());
-                       if (!u || !ServerInstance->ULine(u->server))
+                       User* u = ServerInstance->FindNick(nickrequired);
+                       if (!u || !u->server->IsULine())
                                return;
                }
 
                std::string tmp;
-               FormatStr(tmp,forwardmsg, user->nick, user->password);
+               FormatStr(tmp,forwardmsg, user);
                user->WriteServ(tmp);
 
                tmp.clear();
-               FormatStr(tmp,forwardcmd, user->nick, user->password);
+               FormatStr(tmp,forwardcmd, user);
                ServerInstance->Parser->ProcessBuffer(tmp,user);
        }
 };
 
 MODULE_INIT(ModulePassForward)
-