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