]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_user.cpp
Remove /summon and /users (I think 15+ years of being marked deprecated is enough...
[user/henk/code/inspircd.git] / src / cmd_user.cpp
index aa9e3d3219449825bd372d42adf2b139835ccd65..42e70c1df4ca988e1a4113201acec65001ed0a63 100644 (file)
@@ -1 +1,68 @@
-/*       +------------------------------------+\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 "configreader.h"\r#include "users.h"\r#include "commands/cmd_user.h"\r\rextern "C" DllExport command_t* init_command(InspIRCd* Instance)\r{\r     return new cmd_user(Instance);\r}\r\rCmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user)\r{\r      /* A user may only send the USER command once */\r       if (!(user->registered & REG_USER))\r    {\r              if (!ServerInstance->IsIdent(parameters[0]))\r           {\r                      /*\r                      * RFC says we must use this numeric, so we do. Let's make it a little more nub friendly though. :)\r                     *  -- Craig, and then w00t.\r                    */\r                    user->WriteServ("461 %s USER :Your username is not valid",user->nick);\r                 return CMD_FAILURE;\r            }\r              else\r           {\r                      /* We're not checking ident, but I'm not sure I like the idea of '~' prefixing.. */\r                    /* XXX - The ident field is IDENTMAX+2 in size to account for +1 for the optional\r                       * ~ character, and +1 for null termination, therefore we can safely use up to\r                  * IDENTMAX here.\r                       */\r                    strlcpy(user->ident, parameters[0], IDENTMAX);\r                 strlcpy(user->fullname, *parameters[3] ? parameters[3] : "No info", MAXGECOS);\r                 user->registered = (user->registered | REG_USER);\r              }\r      }\r      else\r   {\r              user->WriteServ("462 %s :You may not reregister",user->nick);\r          return CMD_FAILURE;\r    }\r      /* parameters 2 and 3 are local and remote hosts, ignored when sent by client connection */\r    if (user->registered == REG_NICKUSER)\r  {\r              int MOD_RESULT = 0;\r            /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */\r                if (ServerInstance->next_call > ServerInstance->Time() + ServerInstance->Config->dns_timeout)\r                  ServerInstance->next_call = ServerInstance->Time() + ServerInstance->Config->dns_timeout;\r              FOREACH_RESULT(I_OnUserRegister,OnUserRegister(user));\r         if (MOD_RESULT > 0)\r                    return CMD_FAILURE;\r\r   }\r\r     return CMD_SUCCESS;\r}\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 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"
+#include "commands/cmd_user.h"
+
+extern "C" DllExport command_t* init_command(InspIRCd* Instance)
+{
+       return new cmd_user(Instance);
+}
+
+CmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user)
+{
+       /* A user may only send the USER command once */
+       if (!(user->registered & REG_USER))
+       {
+               if (!ServerInstance->IsIdent(parameters[0]))
+               {
+                       /*
+                        * RFC says we must use this numeric, so we do. Let's make it a little more nub friendly though. :)
+                        *  -- Craig, and then w00t.
+                        */
+                       user->WriteServ("461 %s USER :Your username is not valid",user->nick);
+                       return CMD_FAILURE;
+               }
+               else
+               {
+                       /*
+                        * The ident field is IDENTMAX+2 in size to account for +1 for the optional
+                        * ~ character, and +1 for null termination, therefore we can safely use up to
+                        * IDENTMAX here.
+                        */
+                       strlcpy(user->ident, parameters[0], IDENTMAX);
+                       strlcpy(user->fullname, *parameters[3] ? parameters[3] : "No info", MAXGECOS);
+                       user->registered = (user->registered | REG_USER);
+               }
+       }
+       else
+       {
+               user->WriteServ("462 %s :You may not reregister",user->nick);
+               return CMD_FAILURE;
+       }
+
+       /* parameters 2 and 3 are local and remote hosts, and are ignored */
+       if (user->registered == REG_NICKUSER)
+       {
+               int MOD_RESULT = 0;
+               /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */
+               if (ServerInstance->next_call > ServerInstance->Time() + ServerInstance->Config->dns_timeout)
+                       ServerInstance->next_call = ServerInstance->Time() + ServerInstance->Config->dns_timeout;
+               FOREACH_RESULT(I_OnUserRegister,OnUserRegister(user));
+               if (MOD_RESULT > 0)
+                       return CMD_FAILURE;
+
+       }
+
+       return CMD_SUCCESS;
+}