]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
'svn propset -R svn:eol-style CR *' Set to UNIX-style always. Binaries are auto skipp...
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index 80352a629adae2e2fc258ff0277d3e82e2203f35..3f525622f15aa21b87bfc9e6cdc0fc4de54cec83 100644 (file)
@@ -1,85 +1 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
- *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
- *
- * ---------------------------------------------------
- */
-
-#include <stdio.h>
-#include <string>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
-
-/* $ModDesc: Provides support for the SETNAME command */
-
-Server *Srv;
-        
-void handle_setname(char **parameters, int pcnt, userrec *user)
-{
-       std::string line = "";
-       for (int i = 0; i < pcnt-1; i++)
-       {
-               line = line + std::string(parameters[i]);
-       }
-       line = line + std::string(parameters[pcnt-1]);
-       Srv->ChangeGECOS(user,line);
-}
-
-
-class ModuleSetName : public Module
-{
- public:
-       ModuleSetName()
-       {
-               Srv = new Server;
-               Srv->AddCommand("SETNAME",handle_setname,0,1,"m_setname.so");
-       }
-       
-       virtual ~ModuleSetName()
-       {
-               delete Srv;
-       }
-       
-       virtual Version GetVersion()
-       {
-               return Version(1,0,0,1,VF_VENDOR);
-       }
-       
-};
-
-// stuff down here is the module-factory stuff. For basic modules you can ignore this.
-
-class ModuleSetNameFactory : public ModuleFactory
-{
- public:
-       ModuleSetNameFactory()
-       {
-       }
-       
-       ~ModuleSetNameFactory()
-       {
-       }
-       
-       virtual Module * CreateModule()
-       {
-               return new ModuleSetName;
-       }
-       
-};
-
-
-extern "C" void * init_module( void )
-{
-       return new ModuleSetNameFactory;
-}
-
+/*       +------------------------------------+\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