]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_modules.cpp
Membership* changes
[user/henk/code/inspircd.git] / src / commands / cmd_modules.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_MODULES_H__
17 #define __CMD_MODULES_H__
18
19 // include the common header files
20
21 #include "users.h"
22 #include "channels.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 (InspIRCd* Instance, Module* parent) : Command(Instance,parent,"MODULES",0,0) { syntax = "[debug]"; }
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 /MODULES
48  */
49 CmdResult CommandModules::Handle (const std::vector<std::string>&, User *user)
50 {
51         std::vector<std::string> module_names = ServerInstance->Modules->GetAllModuleNames(0);
52
53         for (unsigned int i = 0; i < module_names.size(); i++)
54         {
55                 Module* m = ServerInstance->Modules->Find(module_names[i]);
56                 Version V = m->GetVersion();
57
58                 if (user->HasPrivPermission("servers/auspex"))
59                 {
60                         std::string flags("Svsc");
61                         int pos = 0;
62                         for (int mult = 1; mult <= VF_SERVICEPROVIDER; mult *= 2, ++pos)
63                                 if (!(V.Flags & mult))
64                                         flags[pos] = '-';
65
66                         user->WriteNumeric(702, "%s :0x%08lx %s %s :%s", user->nick.c_str(), (unsigned long)m, module_names[i].c_str(), flags.c_str(), V.version.c_str());
67                 }
68                 else
69                 {
70                         user->WriteNumeric(702, "%s :%s",user->nick.c_str(), module_names[i].c_str());
71                 }
72         }
73         user->WriteNumeric(703, "%s :End of MODULES list",user->nick.c_str());
74
75         return CMD_SUCCESS;
76 }
77
78 COMMAND_INIT(CommandModules)