]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_lusers.cpp
a79466ae4ce9dc3a2bc956ab149e55d27a080f4a
[user/henk/code/inspircd.git] / src / commands / cmd_lusers.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_LUSERS_H__
17 #define __CMD_LUSERS_H__
18
19 // include the common header files
20
21 #include "users.h"
22 #include "channels.h"
23
24 /** Handle /LUSERS. 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 CommandLusers : public Command
30 {
31  public:
32         /** Constructor for lusers.
33          */
34         CommandLusers ( Module* parent) : Command(parent,"LUSERS",0,0) { }
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 /LUSERS
48  */
49 CmdResult CommandLusers::Handle (const std::vector<std::string>&, User *user)
50 {
51         // this lusers command shows one server at all times because
52         // a protocol module must override it to show those stats.
53         user->WriteNumeric(251, "%s :There are %d users and %d invisible on 1 server",user->nick.c_str(),ServerInstance->Users->UserCount()-ServerInstance->Users->ModeCount('i'),ServerInstance->Users->ModeCount('i'));
54         if (ServerInstance->Users->OperCount())
55                 user->WriteNumeric(252, "%s %d :operator(s) online",user->nick.c_str(),ServerInstance->Users->OperCount());
56         if (ServerInstance->Users->UnregisteredUserCount())
57                 user->WriteNumeric(253, "%s %d :unknown connections",user->nick.c_str(),ServerInstance->Users->UnregisteredUserCount());
58         if (ServerInstance->ChannelCount())
59                 user->WriteNumeric(254, "%s %ld :channels formed",user->nick.c_str(),ServerInstance->ChannelCount());
60         if (ServerInstance->Users->LocalUserCount())
61                 user->WriteNumeric(255, "%s :I have %d clients and 0 servers",user->nick.c_str(),ServerInstance->Users->LocalUserCount());
62
63         return CMD_SUCCESS;
64 }
65
66
67 COMMAND_INIT(CommandLusers)