]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_modules.cpp
Merge pull request #1157 from SaberUK/insp20+fix-cron-restart
[user/henk/code/inspircd.git] / src / commands / cmd_modules.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 /** Handle /MODULES. 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 CommandModules : public Command
30 {
31  public:
32         /** Constructor for modules.
33          */
34         CommandModules(Module* parent) : Command(parent,"MODULES",0,0)
35         {
36                 Penalty = 4;
37                 syntax = "[<servername>]";
38         }
39
40         /** Handle command.
41          * @param parameters The parameters to the comamnd
42          * @param pcnt The number of parameters passed to teh command
43          * @param user The user issuing the command
44          * @return A value from CmdResult to indicate command success or failure.
45          */
46         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
47         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
48         {
49                 if (parameters.size() >= 1)
50                         return ROUTE_UNICAST(parameters[0]);
51                 return ROUTE_LOCALONLY;
52         }
53 };
54
55 /** Handle /MODULES
56  */
57 CmdResult CommandModules::Handle (const std::vector<std::string>& parameters, User *user)
58 {
59         if (parameters.size() >= 1 && parameters[0] != ServerInstance->Config->ServerName)
60                 return CMD_SUCCESS;
61
62         std::vector<std::string> module_names = ServerInstance->Modules->GetAllModuleNames(0);
63
64         for (unsigned int i = 0; i < module_names.size(); i++)
65         {
66                 Module* m = ServerInstance->Modules->Find(module_names[i]);
67                 Version V = m->GetVersion();
68
69                 if (IS_LOCAL(user) && user->HasPrivPermission("servers/auspex"))
70                 {
71                         std::string flags("SvcC");
72                         int pos = 0;
73                         for (int mult = 1; mult <= VF_OPTCOMMON; mult *= 2, ++pos)
74                                 if (!(V.Flags & mult))
75                                         flags[pos] = '-';
76
77 #ifdef PURE_STATIC
78                         user->SendText(":%s 702 %s :%p %s %s :%s", ServerInstance->Config->ServerName.c_str(),
79                                 user->nick.c_str(), (void*)m, module_names[i].c_str(), flags.c_str(), V.description.c_str());
80 #else
81                         std::string srcrev = m->ModuleDLLManager->GetVersion();
82                         user->SendText(":%s 702 %s :%p %s %s :%s - %s", ServerInstance->Config->ServerName.c_str(),
83                                 user->nick.c_str(), (void*)m, module_names[i].c_str(), flags.c_str(), V.description.c_str(), srcrev.c_str());
84 #endif
85                 }
86                 else
87                 {
88                         user->SendText(":%s 702 %s :%s %s", ServerInstance->Config->ServerName.c_str(),
89                                 user->nick.c_str(), module_names[i].c_str(), V.description.c_str());
90                 }
91         }
92         user->SendText(":%s 703 %s :End of MODULES list", ServerInstance->Config->ServerName.c_str(), user->nick.c_str());
93
94         return CMD_SUCCESS;
95 }
96
97 COMMAND_INIT(CommandModules)