]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_namesx.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_namesx.cpp
index 37f5843314a72f7b4451b0d14a872503aebcaef8..c906322bf529967fba09f4413bc0e0fef0b8afb3 100644 (file)
@@ -1 +1,99 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\rstatic const char* dummy = "ON";\r\r/* $ModDesc: Provides aliases of commands. */\r\rclass ModuleNamesX : public Module\r{\r public:\r       \r       ModuleNamesX(InspIRCd* Me)\r             : Module(Me)\r   {\r      }\r\r     void Implements(char* List)\r    {\r              List[I_OnSyncUserMetaData] = List[I_OnPreCommand] = List[I_OnUserList] = List[I_On005Numeric] = 1;\r     }\r\r     virtual ~ModuleNamesX()\r        {\r      }\r\r     void OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname, bool displayable)\r       {\r              if ((displayable) && (extname == "NAMESX"))\r                    proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, "Enabled");\r }\r\r     virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r\r     virtual void On005Numeric(std::string &output)\r {\r              output.append(" NAMESX");\r      }\r\r     virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line)\r       {\r              irc::string c = command.c_str();\r               /* We don't actually create a proper command handler class for PROTOCTL,\r                * because other modules might want to have PROTOCTL hooks too.\r                 * Therefore, we just hook its as an unvalidated command therefore we\r           * can capture it even if it doesnt exist! :-)\r          */\r            if (c == "PROTOCTL")\r           {\r                      if ((pcnt) && (!strcasecmp(parameters[0],"NAMESX")))\r                   {\r                              user->Extend("NAMESX",dummy);\r                          return 1;\r                      }\r              }\r              return 0;\r      }\r\r     virtual int OnUserList(userrec* user, chanrec* Ptr, CUList* &ulist)\r    {\r              if (user->GetExt("NAMESX"))\r            {\r                      char list[MAXBUF];\r                     size_t dlen, curlen;\r                   dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);\r                  int numusers = 0;\r                      char* ptr = list + dlen;\r\r                      if (!ulist)\r                            ulist = Ptr->GetUsers();\r\r                      bool has_user = Ptr->HasUser(user);\r                    for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)\r                      {\r                              if ((!has_user) && (i->first->IsModeSet('i')))\r                                 continue;\r\r                             if (i->first->Visibility && !i->first->Visibility->VisibleTo(user))\r                                    continue;\r\r                             size_t ptrlen = snprintf(ptr, MAXBUF, "%s%s ", Ptr->GetAllPrefixChars(i->first), i->second.c_str());\r                           /* OnUserList can change this - reset it back to normal */\r                             i->second = i->first->nick;\r                            curlen += ptrlen;\r                              ptr += ptrlen;\r                         numusers++;\r                            if (curlen > (480-NICKMAX))\r                            {\r                                      /* list overflowed into multiple numerics */\r                                   user->WriteServ(std::string(list));\r                                    /* reset our lengths */\r                                        dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name);\r                                  ptr = list + dlen;\r                                     ptrlen = 0;\r                                    numusers = 0;\r                          }\r                      }\r                      /* if whats left in the list isnt empty, send it */\r                    if (numusers)\r                  {\r                              user->WriteServ(std::string(list));\r                    }\r                      user->WriteServ("366 %s %s :End of /NAMES list.", user->nick, Ptr->name);\r                      return 1;\r              }\r              return 0;               \r       }\r};\r\rMODULE_INIT(ModuleNamesX)\r
\ No newline at end of file
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "inspircd.h"
+#include "modules/cap.h"
+
+class ModuleNamesX : public Module
+{
+       Cap::Capability cap;
+ public:
+       ModuleNamesX() : cap(this, "multi-prefix")
+       {
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Provides the NAMESX (CAP multi-prefix) capability.",VF_VENDOR);
+       }
+
+       void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
+       {
+               tokens["NAMESX"];
+       }
+
+       ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser *user, bool validated, const std::string &original_line) CXX11_OVERRIDE
+       {
+               /* We don't actually create a proper command handler class for PROTOCTL,
+                * because other modules might want to have PROTOCTL hooks too.
+                * Therefore, we just hook its as an unvalidated command therefore we
+                * can capture it even if it doesnt exist! :-)
+                */
+               if (command == "PROTOCTL")
+               {
+                       if ((parameters.size()) && (!strcasecmp(parameters[0].c_str(),"NAMESX")))
+                       {
+                               cap.set(user, true);
+                               return MOD_RES_DENY;
+                       }
+               }
+               return MOD_RES_PASSTHRU;
+       }
+
+       ModResult OnNamesListItem(User* issuer, Membership* memb, std::string& prefixes, std::string& nick) CXX11_OVERRIDE
+       {
+               if (cap.get(issuer))
+                       prefixes = memb->GetAllPrefixChars();
+
+               return MOD_RES_PASSTHRU;
+       }
+
+       void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Membership* memb, std::string& line) CXX11_OVERRIDE
+       {
+               if ((!memb) || (!cap.get(source)))
+                       return;
+
+               // 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;
+               pos--;
+               // Don't do anything if the user has no prefixes
+               if ((line[pos] == 'H') || (line[pos] == 'G') || (line[pos] == '*'))
+                       return;
+
+               // 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;
+
+               line.erase(pos, 1);
+               line.insert(pos, prefixes);
+       }
+};
+
+MODULE_INIT(ModuleNamesX)