]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_services_account.cpp
Update wiki links to use HTTPS and point to the correct pages.
[user/henk/code/inspircd.git] / src / modules / m_services_account.cpp
index cb3f089c6c6c7376a957135021172f3b885be262..154968e9ec274b38ca22bd9820d47aaa8d61f6d0 100644 (file)
@@ -112,9 +112,29 @@ class ModuleServicesAccount : public Module
        Channel_r m4;
        User_r m5;
        AccountExtItem accountname;
+       bool checking_ban;
+
+       static bool ReadCGIIRCExt(const char* extname, User* user, const std::string*& out)
+       {
+               ExtensionItem* wiext = ServerInstance->Extensions.GetItem(extname);
+               if (!wiext)
+                       return false;
+
+               if (wiext->creator->ModuleSourceFile != "m_cgiirc.so")
+                       return false;
+
+               StringExtItem* stringext = static_cast<StringExtItem*>(wiext);
+               std::string* addr = stringext->get(user);
+               if (!addr)
+                       return false;
+
+               out = addr;
+               return true;
+       }
+
  public:
        ModuleServicesAccount() : m1(this), m2(this), m3(this), m4(this), m5(this),
-               accountname("accountname", this)
+               accountname("accountname", this), checking_ban(false)
        {
        }
 
@@ -199,8 +219,7 @@ class ModuleServicesAccount : public Module
 
        ModResult OnCheckBan(User* user, Channel* chan, const std::string& mask)
        {
-               static bool checking = false;
-               if (checking)
+               if (checking_ban)
                        return MOD_RES_PASSTHRU;
 
                if ((mask.length() > 2) && (mask[1] == ':'))
@@ -220,9 +239,9 @@ class ModuleServicesAccount : public Module
 
                                /* If we made it this far we know the user isn't registered
                                        so just deny if it matches */
-                               checking = true;
+                               checking_ban = true;
                                bool result = chan->CheckBan(user, mask.substr(2));
-                               checking = false;
+                               checking_ban = false;
 
                                if (result)
                                        return MOD_RES_DENY;
@@ -281,8 +300,19 @@ class ModuleServicesAccount : public Module
                                trim(*account);
 
                                if (IS_LOCAL(dest))
-                                       dest->WriteNumeric(900, "%s %s %s :You are now logged in as %s",
-                                               dest->nick.c_str(), dest->GetFullHost().c_str(), account->c_str(), account->c_str());
+                               {
+                                       const std::string* host = &dest->dhost;
+                                       if (dest->registered != REG_ALL)
+                                       {
+                                               if (!ReadCGIIRCExt("cgiirc_webirc_hostname", dest, host))
+                                               {
+                                                       ReadCGIIRCExt("cgiirc_webirc_ip", dest, host);
+                                               }
+                                       }
+
+                                       dest->WriteNumeric(900, "%s %s!%s@%s %s :You are now logged in as %s",
+                                               dest->nick.c_str(), dest->nick.c_str(), dest->ident.c_str(), host->c_str(), account->c_str(), account->c_str());
+                               }
 
                                AccountEvent(this, dest, *account).Send();
                        }