]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_pass.cpp
21b5b275990dd7cde97c2df55cb509ca4d62b9f6
[user/henk/code/inspircd.git] / src / commands / cmd_pass.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 /** Handle /PASS. These command handlers can be reloaded by the core,
17  * and handle basic RFC1459 commands. Commands within modules work
18  * the same way, however, they can be fully unloaded, where these
19  * may not.
20  */
21 class CommandPass : public Command
22 {
23  public:
24         /** Constructor for pass.
25          */
26         CommandPass ( Module* parent) : Command(parent,"PASS",1,1) { works_before_reg = true; Penalty = 0; syntax = "<password>"; }
27         /** Handle command.
28          * @param parameters The parameters to the comamnd
29          * @param pcnt The number of parameters passed to teh command
30          * @param user The user issuing the command
31          * @return A value from CmdResult to indicate command success or failure.
32          */
33         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
34 };
35
36
37 CmdResult CommandPass::Handle (const std::vector<std::string>& parameters, User *user)
38 {
39         // Check to make sure they haven't registered -- Fix by FCS
40         if (user->registered == REG_ALL)
41         {
42                 user->WriteNumeric(ERR_ALREADYREGISTERED, "%s :You may not reregister",user->nick.c_str());
43                 return CMD_FAILURE;
44         }
45         user->password = parameters[0];
46
47         return CMD_SUCCESS;
48 }
49
50 COMMAND_INIT(CommandPass)