]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_commands.cpp
...because every now and again, i have to do a massive commit.
[user/henk/code/inspircd.git] / src / commands / cmd_commands.cpp
index 764a76b9abe9b59af622a7acf4bc0d804f809bd9..5a047e4a772977119f786ff99fcbc24955ab13d5 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  */
 
 #include "inspircd.h"
-#include "commands/cmd_commands.h"
 
-/** Handle /COMMANDS
+#ifndef __CMD_COMMANDS_H__
+#define __CMD_COMMANDS_H__
+
+// include the common header files
+
+#include "users.h"
+#include "channels.h"
+
+/** Handle /COMMANDS. These command handlers can be reloaded by the core,
+ * and handle basic RFC1459 commands. Commands within modules work
+ * the same way, however, they can be fully unloaded, where these
+ * may not.
  */
-extern "C" DllExport Command* init_command(InspIRCd* Instance)
+class CommandCommands : public Command
 {
-       return new CommandCommands(Instance);
-}
+ public:
+       /** Constructor for commands.
+        */
+       CommandCommands ( Module* parent) : Command(parent,"COMMANDS",0,0) { }
+       /** Handle command.
+        * @param parameters The parameters to the comamnd
+        * @param pcnt The number of parameters passed to teh command
+        * @param user The user issuing the command
+        * @return A value from CmdResult to indicate command success or failure.
+        */
+       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
+};
 
-CmdResult CommandCommands::Handle (const char**, int, User *user)
+#endif
+
+
+/** Handle /COMMANDS
+ */
+CmdResult CommandCommands::Handle (const std::vector<std::string>&, User *user)
 {
-       for (Commandable::iterator i = ServerInstance->Parser->cmdlist.begin(); i != ServerInstance->Parser->cmdlist.end(); i++)
+       for (Commandtable::iterator i = ServerInstance->Parser->cmdlist.begin(); i != ServerInstance->Parser->cmdlist.end(); i++)
        {
-               user->WriteServ("902 %s :%s %s %d %d",
-                               user->nick,
-                               i->second->command.c_str(),
-                               i->second->source.c_str(),
+               Module* src = i->second->creator;
+               user->WriteNumeric(RPL_COMMANDS, "%s :%s %s %d %d",
+                               user->nick.c_str(),
+                               i->second->name.c_str(),
+                               src ? src->ModuleSourceFile.c_str() : "<core>",
                                i->second->min_params,
                                i->second->Penalty);
        }
-       user->WriteServ("903 %s :End of COMMANDS list",user->nick);
+       user->WriteNumeric(RPL_COMMANDSEND, "%s :End of COMMANDS list",user->nick.c_str());
        return CMD_SUCCESS;
 }
+
+COMMAND_INIT(CommandCommands)