]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_namesx.cpp
Add Channel* parameter to OnSendWhoLine
[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
26 class ModuleNamesX : public Module
27 {
28         GenericCap cap;
29  public:
30         ModuleNamesX() : cap(this, "multi-prefix")
31         {
32         }
33
34         Version GetVersion() CXX11_OVERRIDE
35         {
36                 return Version("Provides the NAMESX (CAP multi-prefix) capability.",VF_VENDOR);
37         }
38
39         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
40         {
41                 tokens["NAMESX"];
42         }
43
44         ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser *user, bool validated, const std::string &original_line) CXX11_OVERRIDE
45         {
46                 /* We don't actually create a proper command handler class for PROTOCTL,
47                  * because other modules might want to have PROTOCTL hooks too.
48                  * Therefore, we just hook its as an unvalidated command therefore we
49                  * can capture it even if it doesnt exist! :-)
50                  */
51                 if (command == "PROTOCTL")
52                 {
53                         if ((parameters.size()) && (!strcasecmp(parameters[0].c_str(),"NAMESX")))
54                         {
55                                 cap.ext.set(user, 1);
56                                 return MOD_RES_DENY;
57                         }
58                 }
59                 return MOD_RES_PASSTHRU;
60         }
61
62         void OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick) CXX11_OVERRIDE
63         {
64                 if (!cap.ext.get(issuer))
65                         return;
66
67                 /* Some module hid this from being displayed, dont bother */
68                 if (nick.empty())
69                         return;
70
71                 prefixes = memb->chan->GetAllPrefixChars(memb->user);
72         }
73
74         void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Channel* chan, std::string& line) CXX11_OVERRIDE
75         {
76                 if ((!chan) || (!cap.ext.get(source)))
77                         return;
78
79                 // Channel names can contain ":", and ":" as a 'start-of-token' delimiter is
80                 // only ever valid after whitespace, so... find the actual delimiter first!
81                 // Thanks to FxChiP for pointing this out.
82                 std::string::size_type pos = line.find(" :");
83                 if (pos == std::string::npos || pos == 0)
84                         return;
85                 pos--;
86                 // Don't do anything if the user has no prefixes
87                 if ((line[pos] == 'H') || (line[pos] == 'G') || (line[pos] == '*'))
88                         return;
89
90                 // 352 21DAAAAAB #chan ident localhost insp21.test 21DAAAAAB H@ :0 a
91                 //                                                            pos
92
93                 // Don't do anything if the user has only one prefix
94                 std::string prefixes = chan->GetAllPrefixChars(user);
95                 if (prefixes.length() <= 1)
96                         return;
97
98                 line.erase(pos, 1);
99                 line.insert(pos, prefixes);
100         }
101
102         void OnEvent(Event& ev) CXX11_OVERRIDE
103         {
104                 cap.HandleEvent(ev);
105         }
106 };
107
108 MODULE_INIT(ModuleNamesX)