]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
fixed some indentation and spacing in modules
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index 3f525622f15aa21b87bfc9e6cdc0fc4de54cec83..4df0a2c5ca4e6c777854c9933491d9929368a76c 100644 (file)
@@ -1 +1,79 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r\r/* $ModDesc: Provides support for the SETNAME command */\r\r\r\rclass cmd_setname : public command_t\r{\r public:\r  cmd_setname (InspIRCd* Instance) : command_t(Instance,"SETNAME", 0, 1)\r {\r              this->source = "m_setname.so";\r         syntax = "<new-gecos>";\r        }\r\r     CmdResult Handle (const char** parameters, int pcnt, userrec *user)\r    {\r              if (!*parameters[0])\r           {\r                      user->WriteServ("NOTICE %s :*** SETNAME: GECOS must be specified", user->nick);\r                        return CMD_FAILURE;\r            }\r              \r               if (strlen(parameters[0]) > MAXGECOS)\r          {\r                      user->WriteServ("NOTICE %s :*** SETNAME: GECOS too long", user->nick);\r                 return CMD_FAILURE;\r            }\r              \r               if (user->ChangeName(parameters[0]))\r           {\r                      ServerInstance->WriteOpers("%s used SETNAME to change their GECOS to %s", user->nick, parameters[0]);\r                  return CMD_SUCCESS;\r            }\r\r             return CMD_SUCCESS;\r    }\r};\r\r\rclass ModuleSetName : public Module\r{\r   cmd_setname*    mycommand;\r public:\r    ModuleSetName(InspIRCd* Me)\r            : Module(Me)\r   {\r              \r               mycommand = new cmd_setname(ServerInstance);\r           ServerInstance->AddCommand(mycommand);\r }\r      \r       virtual ~ModuleSetName()\r       {\r      }\r      \r       virtual Version GetVersion()\r   {\r              return Version(1,1,0,1,VF_VENDOR,API_VERSION);\r }\r      \r};\r\rMODULE_INIT(ModuleSetName)\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#include "inspircd.h"
+
+/* $ModDesc: Provides support for the SETNAME command */
+
+
+
+class CommandSetname : public Command
+{
+ public:
+       CommandSetname (InspIRCd* Instance) : Command(Instance,"SETNAME", 0, 1)
+       {
+               this->source = "m_setname.so";
+               syntax = "<new-gecos>";
+               TRANSLATE2(TR_TEXT, TR_END);
+       }
+
+       CmdResult Handle (const std::vector<std::string>& parameters, User *user)
+       {
+               if (parameters.size() == 0)
+               {
+                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS must be specified", user->nick.c_str());
+                       return CMD_FAILURE;
+               }
+
+               if (parameters[0].size() > ServerInstance->Config->Limits.MaxGecos)
+               {
+                       user->WriteServ("NOTICE %s :*** SETNAME: GECOS too long", user->nick.c_str());
+                       return CMD_FAILURE;
+               }
+
+               if (user->ChangeName(parameters[0].c_str()))
+               {
+                       ServerInstance->SNO->WriteToSnoMask('A', "%s used SETNAME to change their GECOS to %s", user->nick.c_str(), parameters[0].c_str());
+                       return CMD_SUCCESS;
+               }
+
+               return CMD_SUCCESS;
+       }
+};
+
+
+class ModuleSetName : public Module
+{
+       CommandSetname* mycommand;
+ public:
+       ModuleSetName(InspIRCd* Me)
+               : Module(Me)
+       {
+
+               mycommand = new CommandSetname(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
+
+       }
+
+       virtual ~ModuleSetName()
+       {
+       }
+
+       virtual Version GetVersion()
+       {
+               return Version(1, 2, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION);
+       }
+
+};
+
+MODULE_INIT(ModuleSetName)