]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_wallops.cpp
Add Inspircd::AddServices
[user/henk/code/inspircd.git] / src / commands / cmd_wallops.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 /** Handle /WALLOPS. These command handlers can be reloaded by the core,
17  * and handle basic RFC1459 commands. Commands within modules work
18  * the same way, however, they can be fully unloaded, where these
19  * may not.
20  */
21 class CommandWallops : public Command
22 {
23  public:
24         /** Constructor for wallops.
25          */
26         CommandWallops ( Module* parent) : Command(parent,"WALLOPS",1,1) { flags_needed = 'o'; syntax = "<any-text>"; }
27         /** Handle command.
28          * @param parameters The parameters to the comamnd
29          * @param pcnt The number of parameters passed to teh command
30          * @param user The user issuing the command
31          * @return A value from CmdResult to indicate command success or failure.
32          */
33         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
34 };
35
36 CmdResult CommandWallops::Handle (const std::vector<std::string>& parameters, User *user)
37 {
38         std::string wallop("WALLOPS :");
39         wallop.append(parameters[0]);
40
41         for (std::vector<LocalUser*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
42         {
43                 User* t = *i;
44                 if (t->IsModeSet('w'))
45                         user->WriteTo(t,wallop);
46         }
47
48         FOREACH_MOD(I_OnWallops,OnWallops(user,parameters[0]));
49         return CMD_SUCCESS;
50 }
51
52 COMMAND_INIT(CommandWallops)