]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_pass.cpp
300479df31848cde604583f75c004dab45802000
[user/henk/code/inspircd.git] / src / commands / cmd_pass.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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 #include "commands/cmd_pass.h"
16
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
18 {
19         return new CommandPass(Instance);
20 }
21
22 CmdResult CommandPass::Handle (const std::vector<std::string>& parameters, User *user)
23 {
24         // Check to make sure they havnt registered -- Fix by FCS
25         if (user->registered == REG_ALL)
26         {
27                 user->WriteNumeric(ERR_ALREADYREGISTERED, "%s :You may not reregister",user->nick.c_str());
28                 return CMD_FAILURE;
29         }
30         ConnectClass* a = user->GetClass();
31         if (!a)
32                 return CMD_FAILURE;
33
34         user->password.assign(parameters[0], 0, 63);
35         if (!ServerInstance->PassCompare(user, a->GetPass().c_str(), parameters[0].c_str(), a->GetHash().c_str()))
36                 user->haspassed = true;
37
38         return CMD_SUCCESS;
39 }