]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_namesx.cpp
Fix the ctctags module being marked as a draft.
[user/henk/code/inspircd.git] / src / modules / m_namesx.cpp
index defb66b7848d029ccd441537e734d2ebbbaa53d4..2b4fd87b4daf50c87b209a9832500a122cc77509 100644 (file)
 
 #include "inspircd.h"
 #include "modules/cap.h"
+#include "modules/names.h"
 #include "modules/who.h"
 
 class ModuleNamesX
        : public Module
+       , public Names::EventListener
        , public Who::EventListener
 {
  private:
@@ -33,14 +35,15 @@ class ModuleNamesX
 
  public:
        ModuleNamesX()
-               : Who::EventListener(this)
+               : 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
@@ -66,7 +69,7 @@ class ModuleNamesX
                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();
@@ -84,22 +87,9 @@ class ModuleNamesX
                if (prefixes.length() <= 1)
                        return MOD_RES_PASSTHRU;
 
-               size_t flag_index = 5;
-               if (request.whox)
-               {
-                       // We only need to fiddle with the flags if they are present.
-                       if (!request.whox_fields['f'])
-                               return MOD_RES_PASSTHRU;
-
-                       // WHOX makes this a bit tricky as we need to work out the parameter which the flags are in.
-                       flag_index = 0;
-                       static const char* flags = "tcuihsn";
-                       for (size_t i = 0; i < strlen(flags); ++i)
-                       {
-                               if (request.whox_fields[flags[i]])
-                                       flag_index += 1;
-                       }
-               }
+               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)