]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_uhnames.cpp
Convert the ISO 8859-2 nationalchars files to codepage configs.
[user/henk/code/inspircd.git] / src / modules / m_uhnames.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018-2020 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
6  *   Copyright (C) 2012, 2014-2015 Attila Molnar <attilamolnar@hush.com>
7  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
9  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
10  *   Copyright (C) 2007 Craig Edwards <brain@inspircd.org>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include "modules/cap.h"
28 #include "modules/names.h"
29
30 class ModuleUHNames
31         : public Module
32         , public Names::EventListener
33 {
34  private:
35         Cap::Capability cap;
36
37  public:
38         ModuleUHNames()
39                 : Names::EventListener(this)
40                 , cap(this, "userhost-in-names")
41         {
42         }
43
44         Version GetVersion() CXX11_OVERRIDE
45         {
46                 return Version("Provides the IRCv3 userhost-in-names client capability.", VF_VENDOR);
47         }
48
49         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
50         {
51                 // The legacy PROTOCTL system is a wrapper around the cap.
52                 dynamic_reference_nocheck<Cap::Manager> capmanager(this, "capmanager");
53                 if (capmanager)
54                         tokens["UHNAMES"];
55         }
56
57         ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE
58         {
59                 /* We don't actually create a proper command handler class for PROTOCTL,
60                  * because other modules might want to have PROTOCTL hooks too.
61                  * Therefore, we just hook its as an unvalidated command therefore we
62                  * can capture it even if it doesnt exist! :-)
63                  */
64                 if (command == "PROTOCTL")
65                 {
66                         if (!parameters.empty() && irc::equals(parameters[0], "UHNAMES"))
67                         {
68                                 cap.set(user, true);
69                                 return MOD_RES_DENY;
70                         }
71                 }
72                 return MOD_RES_PASSTHRU;
73         }
74
75         ModResult OnNamesListItem(LocalUser* issuer, Membership* memb, std::string& prefixes, std::string& nick) CXX11_OVERRIDE
76         {
77                 if (cap.get(issuer))
78                         nick = memb->user->GetFullHost();
79
80                 return MOD_RES_PASSTHRU;
81         }
82 };
83
84 MODULE_INIT(ModuleUHNames)