2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
7 * This file is part of InspIRCd. InspIRCd is free software: you can
8 * redistribute it and/or modify it under the terms of the GNU General Public
9 * License as published by the Free Software Foundation, version 2.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "modules/cap.h"
26 :alfred.staticbox.net CAP * LS :multi-prefix sasl
28 :alfred.staticbox.net CAP * ACK :multi-prefix
30 :alfred.staticbox.net CAP * ACK :-multi-prefix
32 :alfred.staticbox.net CAP * ACK :multi-prefix
34 :alfred.staticbox.net CAP * LIST :multi-prefix
40 class CommandCAP : public Command
42 Events::ModuleEventProvider capevprov;
46 CommandCAP (Module* mod) : Command(mod, "CAP", 1),
47 capevprov(mod, "event/cap"),
48 reghold("CAP_REGHOLD", ExtensionItem::EXT_USER, mod)
50 works_before_reg = true;
53 CmdResult Handle (const std::vector<std::string> ¶meters, User *user)
55 std::string subcommand(parameters[0].length(), ' ');
56 std::transform(parameters[0].begin(), parameters[0].end(), subcommand.begin(), ::toupper);
58 if (subcommand == "REQ")
60 if (parameters.size() < 2)
63 CapEvent Data(creator, user, CapEvent::CAPEVENT_REQ);
65 // tokenize the input into a nice list of requested caps
67 irc::spacesepstream cap_stream(parameters[1]);
69 while (cap_stream.GetToken(cap_))
71 std::transform(cap_.begin(), cap_.end(), cap_.begin(), ::tolower);
72 Data.wanted.push_back(cap_);
76 FOREACH_MOD_CUSTOM(capevprov, GenericCap, OnCapEvent, (Data));
78 if (Data.ack.size() > 0)
80 std::string AckResult = irc::stringjoiner(Data.ack);
81 user->WriteCommand("CAP", "ACK :" + AckResult);
84 if (Data.wanted.size() > 0)
86 std::string NakResult = irc::stringjoiner(Data.wanted);
87 user->WriteCommand("CAP", "NAK :" + NakResult);
90 else if (subcommand == "END")
94 else if ((subcommand == "LS") || (subcommand == "LIST"))
96 CapEvent Data(creator, user, subcommand == "LS" ? CapEvent::CAPEVENT_LS : CapEvent::CAPEVENT_LIST);
99 FOREACH_MOD_CUSTOM(capevprov, GenericCap, OnCapEvent, (Data));
101 std::string Result = irc::stringjoiner(Data.wanted);
102 user->WriteCommand("CAP", subcommand + " :" + Result);
104 else if (subcommand == "CLEAR")
106 CapEvent Data(creator, user, CapEvent::CAPEVENT_CLEAR);
108 reghold.set(user, 1);
109 FOREACH_MOD_CUSTOM(capevprov, GenericCap, OnCapEvent, (Data));
111 std::string Result = irc::stringjoiner(Data.ack);
112 user->WriteCommand("CAP", "ACK :" + Result);
116 user->WriteNumeric(ERR_INVALIDCAPSUBCOMMAND, "%s :Invalid CAP subcommand", subcommand.c_str());
124 class ModuleCAP : public Module
133 ModResult OnCheckReady(LocalUser* user) CXX11_OVERRIDE
135 /* Users in CAP state get held until CAP END */
136 if (cmd.reghold.get(user))
139 return MOD_RES_PASSTHRU;
142 Version GetVersion() CXX11_OVERRIDE
144 return Version("Client CAP extension support", VF_VENDOR);
148 MODULE_INIT(ModuleCAP)