]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_namesx.cpp
d91b6b050224fcdbebbbc3a2ef5c7ec69820d42e
[user/henk/code/inspircd.git] / src / modules / m_namesx.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24 #include "modules/cap.h"
25 #include "modules/names.h"
26 #include "modules/who.h"
27
28 class ModuleNamesX
29         : public Module
30         , public Names::EventListener
31         , public Who::EventListener
32 {
33  private:
34         Cap::Capability cap;
35
36  public:
37         ModuleNamesX()
38                 : Names::EventListener(this)
39                 , Who::EventListener(this)
40                 , cap(this, "multi-prefix")
41         {
42         }
43
44         Version GetVersion() CXX11_OVERRIDE
45         {
46                 return Version("Provides the NAMESX (CAP multi-prefix) 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["NAMESX"];
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.size()) && (!strcasecmp(parameters[0].c_str(),"NAMESX")))
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                         prefixes = memb->GetAllPrefixChars();
79
80                 return MOD_RES_PASSTHRU;
81         }
82
83         ModResult OnWhoLine(const Who::Request& request, LocalUser* source, User* user, Membership* memb, Numeric::Numeric& numeric) CXX11_OVERRIDE
84         {
85                 if ((!memb) || (!cap.get(source)))
86                         return MOD_RES_PASSTHRU;
87
88                 // Don't do anything if the user has only one prefix
89                 std::string prefixes = memb->GetAllPrefixChars();
90                 if (prefixes.length() <= 1)
91                         return MOD_RES_PASSTHRU;
92
93                 size_t flag_index;
94                 if (!request.GetFieldIndex('f', flag_index))
95                         return MOD_RES_PASSTHRU;
96
97                 // #chan ident localhost insp22.test nick H@ :0 Attila
98                 if (numeric.GetParams().size() <= flag_index)
99                         return MOD_RES_PASSTHRU;
100
101                 numeric.GetParams()[flag_index].append(prefixes, 1, std::string::npos);
102                 return MOD_RES_PASSTHRU;
103         }
104 };
105
106 MODULE_INIT(ModuleNamesX)