]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_names.cpp
Replace hardcoded mode letters, part 3
[user/henk/code/inspircd.git] / src / commands / cmd_names.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 /NAMES. These command handlers can be reloaded by the core,
24  * and handle basic RFC1459 commands. Commands within modules work
25  * the same way, however, they can be fully unloaded, where these
26  * may not.
27  */
28 class CommandNames : public Command
29 {
30         ChanModeReference secretmode;
31
32  public:
33         /** Constructor for names.
34          */
35         CommandNames(Module* parent)
36                 : Command(parent, "NAMES", 0, 0)
37                 , secretmode(parent, "secret")
38         {
39                 syntax = "{<channel>{,<channel>}}";
40         }
41
42         /** Handle command.
43          * @param parameters The parameters to the comamnd
44          * @param pcnt The number of parameters passed to teh command
45          * @param user The user issuing the command
46          * @return A value from CmdResult to indicate command success or failure.
47          */
48         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
49 };
50
51 /** Handle /NAMES
52  */
53 CmdResult CommandNames::Handle (const std::vector<std::string>& parameters, User *user)
54 {
55         Channel* c;
56
57         if (!parameters.size())
58         {
59                 user->WriteNumeric(366, "%s * :End of /NAMES list.",user->nick.c_str());
60                 return CMD_SUCCESS;
61         }
62
63         if (CommandParser::LoopCall(user, this, parameters, 0))
64                 return CMD_SUCCESS;
65
66         c = ServerInstance->FindChan(parameters[0]);
67         if (c)
68         {
69                 if ((c->IsModeSet(secretmode)) && (!c->HasUser(user)))
70                 {
71                       user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), c->name.c_str());
72                       return CMD_FAILURE;
73                 }
74                 c->UserList(user);
75         }
76         else
77         {
78                 user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[0].c_str());
79         }
80
81         return CMD_SUCCESS;
82 }
83
84 COMMAND_INIT(CommandNames)