]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_topic.cpp
Merge pull request #35 from pcarrier/insp20ldap
[user/henk/code/inspircd.git] / src / commands / cmd_topic.cpp
index da5e253030315972fe627966f8a5a1206c590ef0..2b1e7acfbb5875b6fe67373d39f7e37dd7b1479a 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 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_topic.h"
 
-
-extern "C" DllExport Command* init_command(InspIRCd* Instance)
+/** Handle /TOPIC. 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.
+ */
+class CommandTopic : public Command
 {
-       return new CommandTopic(Instance);
-}
+ public:
+       /** Constructor for topic.
+        */
+       CommandTopic ( Module* parent) : Command(parent,"TOPIC",1, 2) { syntax = "<channel> [<topic>]"; Penalty = 2; }
+       /** 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 CommandTopic::Handle (const std::vector<std::string>& parameters, User *user)
 {
@@ -48,7 +61,7 @@ CmdResult CommandTopic::Handle (const std::vector<std::string>& parameters, User
                        }
                        else
                        {
-                               user->WriteNumeric(331, "%s %s :No topic is set.", user->nick.c_str(), c->name.c_str());
+                               user->WriteNumeric(RPL_NOTOPICSET, "%s %s :No topic is set.", user->nick.c_str(), c->name.c_str());
                        }
                }
                return CMD_SUCCESS;
@@ -62,3 +75,5 @@ CmdResult CommandTopic::Handle (const std::vector<std::string>& parameters, User
        return CMD_SUCCESS;
 }
 
+
+COMMAND_INIT(CommandTopic)