]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_lusers.cpp
Merge pull request #239 from alyx/insp20
[user/henk/code/inspircd.git] / src / commands / cmd_lusers.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22
23 /** Handle /LUSERS. These command handlers can be reloaded by the core,
24  * and handle basic RFC1459 commands. Commands within modules work
25  * the same way, however, they can be fully unloaded, where these
26  * may not.
27  */
28 class CommandLusers : public Command
29 {
30         unsigned int max_local, max_global;
31  public:
32         /** Constructor for lusers.
33          */
34         CommandLusers ( Module* parent) : Command(parent,"LUSERS",0,0),
35                 max_local(0), max_global(0)
36         { }
37         /** Handle command.
38          * @param parameters The parameters to the comamnd
39          * @param pcnt The number of parameters passed to teh command
40          * @param user The user issuing the command
41          * @return A value from CmdResult to indicate command success or failure.
42          */
43         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
44 };
45
46 /** Handle /LUSERS
47  */
48 CmdResult CommandLusers::Handle (const std::vector<std::string>&, User *user)
49 {
50         unsigned int n_users = ServerInstance->Users->UserCount();
51         unsigned int n_invis = ServerInstance->Users->ModeCount('i');
52         ProtoServerList serverlist;
53         ServerInstance->PI->GetServerList(serverlist);
54         int n_serv = 0;
55         int n_local_servs = 0;
56         for(ProtoServerList::iterator i = serverlist.begin(); i != serverlist.end(); ++i)
57         {
58                 n_serv++;
59                 if (i->parentname == ServerInstance->Config->ServerName)
60                         n_local_servs++;
61         }
62         // fix for default GetServerList not returning us
63         if (!n_serv)
64                 n_serv = 1;
65
66         // these are updated on every connect (or /lusers invocation), which is good enough
67         if (ServerInstance->Users->LocalUserCount() > max_local)
68                 max_local = ServerInstance->Users->LocalUserCount();
69         if (n_users > max_global)
70                 max_global = n_users;
71
72         user->WriteNumeric(251, "%s :There are %d users and %d invisible on %d servers",user->nick.c_str(),
73                         n_users-n_invis, n_invis, n_serv);
74
75         if (ServerInstance->Users->OperCount())
76                 user->WriteNumeric(252, "%s %d :operator(s) online",user->nick.c_str(),ServerInstance->Users->OperCount());
77
78         if (ServerInstance->Users->UnregisteredUserCount())
79                 user->WriteNumeric(253, "%s %d :unknown connections",user->nick.c_str(),ServerInstance->Users->UnregisteredUserCount());
80
81         user->WriteNumeric(254, "%s %ld :channels formed",user->nick.c_str(),ServerInstance->ChannelCount());
82         user->WriteNumeric(255, "%s :I have %d clients and %d servers",user->nick.c_str(),ServerInstance->Users->LocalUserCount(),n_local_servs);
83         user->WriteNumeric(265, "%s :Current Local Users: %d  Max: %d",user->nick.c_str(),ServerInstance->Users->LocalUserCount(),max_local);
84         user->WriteNumeric(266, "%s :Current Global Users: %d  Max: %d",user->nick.c_str(),n_users,max_global);
85
86         return CMD_SUCCESS;
87 }
88
89
90 COMMAND_INIT(CommandLusers)