]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_names.cpp
Convert channel::name to std::string, this was a beastie!
[user/henk/code/inspircd.git] / src / commands / cmd_names.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "commands/cmd_names.h"
16
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
18 {
19         return new CommandNames(Instance);
20 }
21
22 /** Handle /NAMES
23  */
24 CmdResult CommandNames::Handle (const std::vector<std::string>& parameters, User *user)
25 {
26         Channel* c;
27
28         if (!parameters.size())
29         {
30                 user->WriteNumeric(366, "%s * :End of /NAMES list.",user->nick.c_str());
31                 return CMD_SUCCESS;
32         }
33
34         if (ServerInstance->Parser->LoopCall(user, this, parameters, 0))
35                 return CMD_SUCCESS;
36
37         c = ServerInstance->FindChan(parameters[0]);
38         if (c)
39         {
40                 if ((c->IsModeSet('s')) && (!c->HasUser(user)))
41                 {
42                       user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), c->name.c_str());
43                       return CMD_FAILURE;
44                 }
45                 c->UserList(user);
46         }
47         else
48         {
49                 user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[0].c_str());
50         }
51
52         return CMD_SUCCESS;
53 }