]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_admin.cpp
Add fine-grained command flood controls
[user/henk/code/inspircd.git] / src / commands / cmd_admin.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_ADMIN_H__
17 #define __CMD_ADMIN_H__
18
19 #include "users.h"
20 #include "channels.h"
21
22 /** Handle /ADMIN. These command handlers can be reloaded by the core,
23  * and handle basic RFC1459 commands. Commands within modules work
24  * the same way, however, they can be fully unloaded, where these
25  * may not.
26  */
27 class CommandAdmin : public Command
28 {
29  public:
30         /** Constructor for admin.
31          */
32         CommandAdmin(Module* parent) : Command(parent,"ADMIN",0,0) { syntax = "[<servername>]"; }
33         /** Handle command.
34          * @param parameters The parameters to the comamnd
35          * @param pcnt The number of parameters passed to teh command
36          * @param user The user issuing the command
37          * @return A value from CmdResult to indicate command success or failure.
38          */
39         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
40 };
41
42 #endif
43
44
45
46 /** Handle /ADMIN
47  */
48 CmdResult CommandAdmin::Handle (const std::vector<std::string>& parameters, User *user)
49 {
50         user->WriteNumeric(RPL_ADMINME, "%s :Administrative info for %s",user->nick.c_str(),ServerInstance->Config->ServerName.c_str());
51         if (!ServerInstance->Config->AdminName.empty())
52                 user->WriteNumeric(RPL_ADMINLOC1, "%s :Name     - %s",user->nick.c_str(),ServerInstance->Config->AdminName.c_str());
53         user->WriteNumeric(RPL_ADMINLOC2, "%s :Nickname - %s",user->nick.c_str(),ServerInstance->Config->AdminNick.c_str());
54         user->WriteNumeric(RPL_ADMINEMAIL, "%s :E-Mail   - %s",user->nick.c_str(),ServerInstance->Config->AdminEmail.c_str());
55         return CMD_SUCCESS;
56 }
57
58 COMMAND_INIT(CommandAdmin)