]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_uhnames.cpp
1b0c91c9427e0cb881b76978e509a8941c24fde2
[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 "m_cap.h"
24
25 /* $ModDesc: Provides the UHNAMES facility. */
26
27 class ModuleUHNames : public Module
28 {
29  public:
30         GenericCap cap;
31
32         ModuleUHNames() : cap(this, "userhost-in-names")
33         {
34         }
35
36         void init()
37         {
38                 Implementation eventlist[] = { I_OnEvent, I_OnPreCommand, I_OnNamesListItem, I_On005Numeric };
39                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
40         }
41
42         Version GetVersion()
43         {
44                 return Version("Provides the UHNAMES facility.",VF_VENDOR);
45         }
46
47         void On005Numeric(std::map<std::string, std::string>& tokens)
48         {
49                 tokens["UHNAMES"];
50         }
51
52         ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser *user, bool validated, const std::string &original_line)
53         {
54                 /* We don't actually create a proper command handler class for PROTOCTL,
55                  * because other modules might want to have PROTOCTL hooks too.
56                  * Therefore, we just hook its as an unvalidated command therefore we
57                  * can capture it even if it doesnt exist! :-)
58                  */
59                 if (command == "PROTOCTL")
60                 {
61                         if ((parameters.size()) && (!strcasecmp(parameters[0].c_str(),"UHNAMES")))
62                         {
63                                 cap.ext.set(user, 1);
64                                 return MOD_RES_DENY;
65                         }
66                 }
67                 return MOD_RES_PASSTHRU;
68         }
69
70         void OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
71         {
72                 if (!cap.ext.get(issuer))
73                         return;
74
75                 if (nick.empty())
76                         return;
77
78                 nick = memb->user->GetFullHost();
79         }
80
81         void OnEvent(Event& ev)
82         {
83                 cap.HandleEvent(ev);
84         }
85 };
86
87 MODULE_INIT(ModuleUHNames)