]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_namesx.cpp
Rename OnClientProtocolProcessTag to OnProcessTag.
[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/who.h"
26
27 class ModuleNamesX
28         : public Module
29         , public Who::EventListener
30 {
31  private:
32         Cap::Capability cap;
33
34  public:
35         ModuleNamesX()
36                 : Who::EventListener(this)
37                 , cap(this, "multi-prefix")
38         {
39         }
40
41         Version GetVersion() CXX11_OVERRIDE
42         {
43                 return Version("Provides the NAMESX (CAP multi-prefix) capability.",VF_VENDOR);
44         }
45
46         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
47         {
48                 tokens["NAMESX"];
49         }
50
51         ModResult OnPreCommand(std::string& command, CommandBase::Params& parameters, LocalUser* user, bool validated) CXX11_OVERRIDE
52         {
53                 /* We don't actually create a proper command handler class for PROTOCTL,
54                  * because other modules might want to have PROTOCTL hooks too.
55                  * Therefore, we just hook its as an unvalidated command therefore we
56                  * can capture it even if it doesnt exist! :-)
57                  */
58                 if (command == "PROTOCTL")
59                 {
60                         if ((parameters.size()) && (!strcasecmp(parameters[0].c_str(),"NAMESX")))
61                         {
62                                 cap.set(user, true);
63                                 return MOD_RES_DENY;
64                         }
65                 }
66                 return MOD_RES_PASSTHRU;
67         }
68
69         ModResult OnNamesListItem(User* issuer, Membership* memb, std::string& prefixes, std::string& nick) CXX11_OVERRIDE
70         {
71                 if (cap.get(issuer))
72                         prefixes = memb->GetAllPrefixChars();
73
74                 return MOD_RES_PASSTHRU;
75         }
76
77         ModResult OnWhoLine(const Who::Request& request, LocalUser* source, User* user, Membership* memb, Numeric::Numeric& numeric) CXX11_OVERRIDE
78         {
79                 if ((!memb) || (!cap.get(source)))
80                         return MOD_RES_PASSTHRU;
81
82                 // Don't do anything if the user has only one prefix
83                 std::string prefixes = memb->GetAllPrefixChars();
84                 if (prefixes.length() <= 1)
85                         return MOD_RES_PASSTHRU;
86
87                 size_t flag_index = 5;
88                 if (request.whox)
89                 {
90                         // We only need to fiddle with the flags if they are present.
91                         if (!request.whox_fields['f'])
92                                 return MOD_RES_PASSTHRU;
93
94                         // WHOX makes this a bit tricky as we need to work out the parameter which the flags are in.
95                         flag_index = 0;
96                         static const char* flags = "tcuihsn";
97                         for (size_t i = 0; i < strlen(flags); ++i)
98                         {
99                                 if (request.whox_fields[flags[i]])
100                                         flag_index += 1;
101                         }
102                 }
103
104                 // #chan ident localhost insp22.test nick H@ :0 Attila
105                 if (numeric.GetParams().size() <= flag_index)
106                         return MOD_RES_PASSTHRU;
107
108                 numeric.GetParams()[flag_index].append(prefixes, 1, std::string::npos);
109                 return MOD_RES_PASSTHRU;
110         }
111 };
112
113 MODULE_INIT(ModuleNamesX)