]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_namesx.cpp
Fix Doxygen syntax errors.
[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 "m_cap.h"
25
26 /* $ModDesc: Provides the NAMESX (CAP multi-prefix) capability. */
27
28 class ModuleNamesX : public Module
29 {
30  public:
31         GenericCap cap;
32         ModuleNamesX() : cap(this, "multi-prefix")
33         {
34                 Implementation eventlist[] = { I_OnPreCommand, I_OnNamesListItem, I_On005Numeric, I_OnEvent, I_OnSendWhoLine };
35                 ServerInstance->Modules->Attach(eventlist, this, 5);
36         }
37
38
39         ~ModuleNamesX()
40         {
41         }
42
43         Version GetVersion()
44         {
45                 return Version("Provides the NAMESX (CAP multi-prefix) capability.",VF_VENDOR);
46         }
47
48         void On005Numeric(std::string &output)
49         {
50                 output.append(" NAMESX");
51         }
52
53         ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, LocalUser *user, bool validated, const std::string &original_line)
54         {
55                 irc::string c = command.c_str();
56                 /* We don't actually create a proper command handler class for PROTOCTL,
57                  * because other modules might want to have PROTOCTL hooks too.
58                  * Therefore, we just hook its as an unvalidated command therefore we
59                  * can capture it even if it doesnt exist! :-)
60                  */
61                 if (c == "PROTOCTL")
62                 {
63                         if ((parameters.size()) && (!strcasecmp(parameters[0].c_str(),"NAMESX")))
64                         {
65                                 cap.ext.set(user, 1);
66                                 return MOD_RES_DENY;
67                         }
68                 }
69                 return MOD_RES_PASSTHRU;
70         }
71
72         void OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
73         {
74                 if (!cap.ext.get(issuer))
75                         return;
76
77                 /* Some module hid this from being displayed, dont bother */
78                 if (nick.empty())
79                         return;
80
81                 prefixes = memb->chan->GetAllPrefixChars(memb->user);
82         }
83
84         void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, std::string& line)
85         {
86                 if (!cap.ext.get(source) || line.empty())
87                         return;
88
89                 std::string::size_type pos = line.find(':');
90                 if (pos == std::string::npos || pos < 2)
91                         return;
92                 pos -= 2;
93                 // Don't do anything if the user has no prefixes
94                 if ((line[pos] == 'H') || (line[pos] == 'G') || (line[pos] == '*'))
95                         return;
96
97                 // 352 21DAAAAAB #chan ident localhost insp21.test 21DAAAAAB H@ :0 a
98                 //              a     b                                       pos
99                 std::string::size_type a = 4 + source->nick.length() + 1;
100                 std::string::size_type b = line.find(' ', a);
101                 if (b == std::string::npos)
102                         return;
103
104                 // Try to find this channel
105                 std::string channame = line.substr(a, b-a);
106                 Channel* chan = ServerInstance->FindChan(channame.c_str());
107                 if (!chan)
108                         return;
109
110                 // Don't do anything if the user has only one prefix
111                 std::string prefixes = chan->GetAllPrefixChars(user);
112                 if (prefixes.length() <= 1)
113                         return;
114
115                 line.erase(pos, 1);
116                 line.insert(pos, prefixes);
117         }
118
119         void OnEvent(Event& ev)
120         {
121                 cap.HandleEvent(ev);
122         }
123 };
124
125 MODULE_INIT(ModuleNamesX)