]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_names.cpp
Add fine-grained command flood controls
[user/henk/code/inspircd.git] / src / commands / cmd_names.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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
16 #ifndef __CMD_NAMES_H__
17 #define __CMD_NAMES_H__
18
19 // include the common header files
20
21 #include "users.h"
22 #include "channels.h"
23
24 /** Handle /NAMES. These command handlers can be reloaded by the core,
25  * and handle basic RFC1459 commands. Commands within modules work
26  * the same way, however, they can be fully unloaded, where these
27  * may not.
28  */
29 class CommandNames : public Command
30 {
31  public:
32         /** Constructor for names.
33          */
34         CommandNames ( Module* parent) : Command(parent,"NAMES",0,0) { syntax = "{<channel>{,<channel>}}"; }
35         /** Handle command.
36          * @param parameters The parameters to the comamnd
37          * @param pcnt The number of parameters passed to teh command
38          * @param user The user issuing the command
39          * @return A value from CmdResult to indicate command success or failure.
40          */
41         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
42 };
43
44 #endif
45
46
47 /** Handle /NAMES
48  */
49 CmdResult CommandNames::Handle (const std::vector<std::string>& parameters, User *user)
50 {
51         Channel* c;
52
53         if (!parameters.size())
54         {
55                 user->WriteNumeric(366, "%s * :End of /NAMES list.",user->nick.c_str());
56                 return CMD_SUCCESS;
57         }
58
59         if (ServerInstance->Parser->LoopCall(user, this, parameters, 0))
60                 return CMD_SUCCESS;
61
62         c = ServerInstance->FindChan(parameters[0]);
63         if (c)
64         {
65                 if ((c->IsModeSet('s')) && (!c->HasUser(user)))
66                 {
67                       user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), c->name.c_str());
68                       return CMD_FAILURE;
69                 }
70                 c->UserList(user);
71         }
72         else
73         {
74                 user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[0].c_str());
75         }
76
77         return CMD_SUCCESS;
78 }
79
80 COMMAND_INIT(CommandNames)