]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_pass.cpp
Replace OnAccessCheck with OnPreMode to remove a number of redundant checks
[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 #ifndef __CMD_PASS_H__
17 #define __CMD_PASS_H__
18
19 // include the common header files
20
21 #include <string>
22 #include <vector>
23 #include "inspircd.h"
24 #include "users.h"
25 #include "channels.h"
26
27 /** Handle /PASS. These command handlers can be reloaded by the core,
28  * and handle basic RFC1459 commands. Commands within modules work
29  * the same way, however, they can be fully unloaded, where these
30  * may not.
31  */
32 class CommandPass : public Command
33 {
34  public:
35         /** Constructor for pass.
36          */
37         CommandPass (InspIRCd* Instance, Module* parent) : Command(Instance,parent,"PASS",0,1,true,0) { syntax = "<password>"; }
38         /** Handle command.
39          * @param parameters The parameters to the comamnd
40          * @param pcnt The number of parameters passed to teh command
41          * @param user The user issuing the command
42          * @return A value from CmdResult to indicate command success or failure.
43          */
44         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
45 };
46
47 #endif
48
49
50 CmdResult CommandPass::Handle (const std::vector<std::string>& parameters, User *user)
51 {
52         // Check to make sure they havnt registered -- Fix by FCS
53         if (user->registered == REG_ALL)
54         {
55                 user->WriteNumeric(ERR_ALREADYREGISTERED, "%s :You may not reregister",user->nick.c_str());
56                 return CMD_FAILURE;
57         }
58         ConnectClass* a = user->GetClass();
59         if (!a)
60                 return CMD_FAILURE;
61
62         user->password.assign(parameters[0], 0, 63);
63         if (!ServerInstance->PassCompare(user, a->pass.c_str(), parameters[0].c_str(), a->hash.c_str()))
64                 user->haspassed = true;
65
66         return CMD_SUCCESS;
67 }
68
69 COMMAND_INIT(CommandPass)