]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_ison.cpp
642e36b43984046a53c8d8b58522cc4e1980c701
[user/henk/code/inspircd.git] / src / coremods / core_ison.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
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.
10  *
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
14  * details.
15  *
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/>.
18  */
19
20
21 #include "inspircd.h"
22
23 /** Handle /ISON.
24  */
25 class CommandIson : public SplitCommand
26 {
27  public:
28         /** Constructor for ison.
29          */
30         CommandIson(Module* parent)
31                 : SplitCommand(parent, "ISON", 1)
32         {
33                 syntax = "<nick> {nick}";
34         }
35         /** Handle command.
36          * @param parameters The parameters to the command
37          * @param user The user issuing the command
38          * @return A value from CmdResult to indicate command success or failure.
39          */
40         CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user) CXX11_OVERRIDE;
41 };
42
43 class IsonReplyBuilder : public Numeric::Builder<' ', true>
44 {
45  public:
46         IsonReplyBuilder(LocalUser* user)
47                 : Numeric::Builder<' ', true>(user, RPL_ISON)
48         {
49         }
50
51         void AddNick(const std::string& nickname)
52         {
53                 User* const user = ServerInstance->FindNickOnly(nickname);
54                 if ((user) && (user->registered == REG_ALL))
55                         Add(user->nick);
56         }
57 };
58
59 /** Handle /ISON
60  */
61 CmdResult CommandIson::HandleLocal(const std::vector<std::string>& parameters, LocalUser* user)
62 {
63         IsonReplyBuilder reply(user);
64
65         for (std::vector<std::string>::const_iterator i = parameters.begin(); i != parameters.end()-1; ++i)
66         {
67                 const std::string& targetstr = *i;
68                 reply.AddNick(targetstr);
69         }
70
71         // Last parameter can be a space separated list
72         irc::spacesepstream ss(parameters.back());
73         for (std::string token; ss.GetToken(token); )
74                 reply.AddNick(token);
75
76         reply.Flush();
77         return CMD_SUCCESS;
78 }
79
80
81 COMMAND_INIT(CommandIson)