]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_user.cpp
cec11c104efd274f808e6371b4fde5b0b9c90e0e
[user/henk/code/inspircd.git] / src / commands / cmd_user.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22
23 /** Handle /USER.
24  */
25 class CommandUser : public SplitCommand
26 {
27  public:
28         /** Constructor for user.
29          */
30         CommandUser ( Module* parent) : SplitCommand(parent,"USER",4,4) { works_before_reg = true; Penalty = 0; syntax = "<username> <localhost> <remotehost> <GECOS>"; }
31         /** Handle command.
32          * @param parameters The parameters to the command
33          * @param user The user issuing the command
34          * @return A value from CmdResult to indicate command success or failure.
35          */
36         CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser *user);
37 };
38
39 CmdResult CommandUser::HandleLocal(const std::vector<std::string>& parameters, LocalUser *user)
40 {
41         /* A user may only send the USER command once */
42         if (!(user->registered & REG_USER))
43         {
44                 if (!ServerInstance->IsIdent(parameters[0]))
45                 {
46                         /*
47                          * RFC says we must use this numeric, so we do. Let's make it a little more nub friendly though. :)
48                          *  -- Craig, and then w00t.
49                          */
50                         user->WriteNumeric(ERR_NEEDMOREPARAMS, "USER :Your username is not valid");
51                         return CMD_FAILURE;
52                 }
53                 else
54                 {
55                         /*
56                          * The ident field is IDENTMAX+2 in size to account for +1 for the optional
57                          * ~ character, and +1 for null termination, therefore we can safely use up to
58                          * IDENTMAX here.
59                          */
60                         user->ChangeIdent(parameters[0]);
61                         user->fullname.assign(parameters[3].empty() ? "No info" : parameters[3], 0, ServerInstance->Config->Limits.MaxGecos);
62                         user->registered = (user->registered | REG_USER);
63                 }
64         }
65         else
66         {
67                 user->WriteNumeric(ERR_ALREADYREGISTERED, ":You may not reregister");
68                 return CMD_FAILURE;
69         }
70
71         /* parameters 2 and 3 are local and remote hosts, and are ignored */
72         if (user->registered == REG_NICKUSER)
73         {
74                 ModResult MOD_RESULT;
75
76                 /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */
77                 FIRST_MOD_RESULT(OnUserRegister, MOD_RESULT, (user));
78                 if (MOD_RESULT == MOD_RES_DENY)
79                         return CMD_FAILURE;
80
81         }
82
83         return CMD_SUCCESS;
84 }
85
86 COMMAND_INIT(CommandUser)