]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_info/cmd_commands.cpp
3ff6728d8b7d075aff6585f2d2e7c9b02fee9a41
[user/henk/code/inspircd.git] / src / coremods / core_info / cmd_commands.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 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 #include "core_info.h"
23
24 CommandCommands::CommandCommands(Module* parent)
25         : Command(parent, "COMMANDS", 0, 0)
26 {
27         Penalty = 3;
28 }
29
30 /** Handle /COMMANDS
31  */
32 CmdResult CommandCommands::Handle (const std::vector<std::string>&, User *user)
33 {
34         const CommandParser::CommandMap& commands = ServerInstance->Parser.GetCommands();
35         std::vector<std::string> list;
36         list.reserve(commands.size());
37         for (CommandParser::CommandMap::const_iterator i = commands.begin(); i != commands.end(); ++i)
38         {
39                 // Don't show S2S commands to users
40                 if (i->second->flags_needed == FLAG_SERVERONLY)
41                         continue;
42
43                 Module* src = i->second->creator;
44                 list.push_back(InspIRCd::Format(":%s %03d %s :%s %s %d %d", ServerInstance->Config->ServerName.c_str(),
45                         RPL_COMMANDS, user->nick.c_str(), i->second->name.c_str(), src->ModuleSourceFile.c_str(),
46                         i->second->min_params, i->second->Penalty));
47         }
48         std::sort(list.begin(), list.end());
49         for(unsigned int i=0; i < list.size(); i++)
50                 user->Write(list[i]);
51         user->WriteNumeric(RPL_COMMANDSEND, ":End of COMMANDS list");
52         return CMD_SUCCESS;
53 }