]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_namesx.cpp
Add {To,From}{Human,Internal,Network} to ExtensionItem.
[user/henk/code/inspircd.git] / src / modules / m_namesx.cpp
index 14f89807fc14af5042b6eddf0388967efe6f4e2a..d91b6b050224fcdbebbbc3a2ef5c7ec69820d42e 100644 (file)
 
 #include "inspircd.h"
 #include "modules/cap.h"
+#include "modules/names.h"
+#include "modules/who.h"
 
-class ModuleNamesX : public Module
+class ModuleNamesX
+       : public Module
+       , public Names::EventListener
+       , public Who::EventListener
 {
+ private:
        Cap::Capability cap;
+
  public:
-       ModuleNamesX() : cap(this, "multi-prefix")
+       ModuleNamesX()
+               : Names::EventListener(this)
+               , Who::EventListener(this)
+               , cap(this, "multi-prefix")
        {
        }
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides the NAMESX (CAP multi-prefix) capability.",VF_VENDOR);
+               return Version("Provides the NAMESX (CAP multi-prefix) capability", VF_VENDOR);
        }
 
        void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
        {
-               tokens["NAMESX"];
+               // The legacy PROTOCTL system is a wrapper around the cap.
+               dynamic_reference_nocheck<Cap::Manager> capmanager(this, "capmanager");
+               if (capmanager)
+                       tokens["NAMESX"];
        }
 
-       ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser *user, bool validated, const std::string &original_line) CXX11_OVERRIDE
+       ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE
        {
                /* We don't actually create a proper command handler class for PROTOCTL,
                 * because other modules might want to have PROTOCTL hooks too.
@@ -59,7 +72,7 @@ class ModuleNamesX : public Module
                return MOD_RES_PASSTHRU;
        }
 
-       ModResult OnNamesListItem(User* issuer, Membership* memb, std::string& prefixes, std::string& nick) CXX11_OVERRIDE
+       ModResult OnNamesListItem(LocalUser* issuer, Membership* memb, std::string& prefixes, std::string& nick) CXX11_OVERRIDE
        {
                if (cap.get(issuer))
                        prefixes = memb->GetAllPrefixChars();
@@ -67,32 +80,25 @@ class ModuleNamesX : public Module
                return MOD_RES_PASSTHRU;
        }
 
-       ModResult OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Membership* memb, std::string& line) CXX11_OVERRIDE
+       ModResult OnWhoLine(const Who::Request& request, LocalUser* source, User* user, Membership* memb, Numeric::Numeric& numeric) CXX11_OVERRIDE
        {
                if ((!memb) || (!cap.get(source)))
                        return MOD_RES_PASSTHRU;
 
-               // Channel names can contain ":", and ":" as a 'start-of-token' delimiter is
-               // only ever valid after whitespace, so... find the actual delimiter first!
-               // Thanks to FxChiP for pointing this out.
-               std::string::size_type pos = line.find(" :");
-               if (pos == std::string::npos || pos == 0)
-                       return MOD_RES_PASSTHRU;
-               pos--;
-               // Don't do anything if the user has no prefixes
-               if ((line[pos] == 'H') || (line[pos] == 'G') || (line[pos] == '*'))
-                       return MOD_RES_PASSTHRU;
-
-               // 352 21DAAAAAB #chan ident localhost insp21.test 21DAAAAAB H@ :0 a
-               //                                                            pos
-
                // Don't do anything if the user has only one prefix
                std::string prefixes = memb->GetAllPrefixChars();
                if (prefixes.length() <= 1)
                        return MOD_RES_PASSTHRU;
 
-               line.erase(pos, 1);
-               line.insert(pos, prefixes);
+               size_t flag_index;
+               if (!request.GetFieldIndex('f', flag_index))
+                       return MOD_RES_PASSTHRU;
+
+               // #chan ident localhost insp22.test nick H@ :0 Attila
+               if (numeric.GetParams().size() <= flag_index)
+                       return MOD_RES_PASSTHRU;
+
+               numeric.GetParams()[flag_index].append(prefixes, 1, std::string::npos);
                return MOD_RES_PASSTHRU;
        }
 };