]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_uhnames.cpp
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / src / modules / m_uhnames.cpp
index 61b58f302c87fae08e909c51c243b6aacaa96d37..790a9acbcb8b5012716c54bb53bbbc5309496a7e 100644 (file)
@@ -1 +1,84 @@
-/*       +------------------------------------+\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 ModuleUHNames : public Module\r{\r       CUList nl;\r public:\r    \r       ModuleUHNames(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 ~ModuleUHNames()\r       {\r      }\r\r     void OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname, bool displayable)\r       {\r              if ((displayable) && (extname == "UHNAMES"))\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(" UHNAMES");\r     }\r\r     Priority Prioritize()\r  {\r              return (Priority)ServerInstance->PriorityBefore("m_namesx.so");\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],"UHNAMES")))\r                  {\r                              user->Extend("UHNAMES",dummy);\r                         return 1;\r                      }\r              }\r              return 0;\r      }\r\r     /* IMPORTANT: This must be prioritized above NAMESX! */\r        virtual int OnUserList(userrec* user, chanrec* Ptr, CUList* &ulist)\r    {\r              if (user->GetExt("UHNAMES"))\r           {\r                      if (!ulist)\r                            ulist = Ptr->GetUsers();\r\r                      for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)\r                              i->second = i->first->GetFullHost();\r           }\r              return 0;               \r       }\r};\r\rMODULE_INIT(ModuleUHNames)\r\r
\ No newline at end of file
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2013, 2018-2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2012, 2014-2015 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Craig Edwards <brain@inspircd.org>
+ *
+ * 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"
+#include "modules/names.h"
+
+class ModuleUHNames
+       : public Module
+       , public Names::EventListener
+{
+ private:
+       Cap::Capability cap;
+
+ public:
+       ModuleUHNames()
+               : Names::EventListener(this)
+               , cap(this, "userhost-in-names")
+       {
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Provides the IRCv3 userhost-in-names client capability.", VF_VENDOR);
+       }
+
+       void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
+       {
+               // The legacy PROTOCTL system is a wrapper around the cap.
+               dynamic_reference_nocheck<Cap::Manager> capmanager(this, "capmanager");
+               if (capmanager)
+                       tokens["UHNAMES"];
+       }
+
+       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.
+                * Therefore, we just hook its as an unvalidated command therefore we
+                * can capture it even if it doesnt exist! :-)
+                */
+               if (command == "PROTOCTL")
+               {
+                       if (!parameters.empty() && irc::equals(parameters[0], "UHNAMES"))
+                       {
+                               cap.set(user, true);
+                               return MOD_RES_DENY;
+                       }
+               }
+               return MOD_RES_PASSTHRU;
+       }
+
+       ModResult OnNamesListItem(LocalUser* issuer, Membership* memb, std::string& prefixes, std::string& nick) CXX11_OVERRIDE
+       {
+               if (cap.get(issuer))
+                       nick = memb->user->GetFullHost();
+
+               return MOD_RES_PASSTHRU;
+       }
+};
+
+MODULE_INIT(ModuleUHNames)