]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_die.cpp
More WriteGlobalSno conversions in rehash, patch by dKingston
[user/henk/code/inspircd.git] / src / commands / cmd_die.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_DIE_H__
17 #define __CMD_DIE_H__
18
19 // include the common header files
20
21 #include "users.h"
22 #include "channels.h"
23
24 /** Handle /DIE. These command handlers can be reloaded by the core,
25  * and handle basic RFC1459 commands. Commands within modules work
26  * the same way, however, they can be fully unloaded, where these
27  * may not.
28  */
29 class CommandDie : public Command
30 {
31  public:
32         /** Constructor for die.
33          */
34         CommandDie ( Module* parent) : Command(parent,"DIE",1) { flags_needed = 'o'; syntax = "<password>"; }
35         /** Handle command.
36          * @param parameters The parameters to the comamnd
37          * @param pcnt The number of parameters passed to teh command
38          * @param user The user issuing the command
39          * @return A value from CmdResult to indicate command success or failure.
40          */
41         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
42 };
43
44 #endif
45
46 #include "exitcodes.h"
47
48 /** Handle /DIE
49  */
50 CmdResult CommandDie::Handle (const std::vector<std::string>& parameters, User *user)
51 {
52         if (!ServerInstance->PassCompare(user, ServerInstance->Config->diepass, parameters[0].c_str(), ServerInstance->Config->powerhash))
53         {
54                 {
55                         std::string diebuf = std::string("*** DIE command from ") + user->nick + "!" + user->ident + "@" + user->dhost + ". Terminating in " + ConvToStr(ServerInstance->Config->DieDelay) + " seconds.";
56                         ServerInstance->Logs->Log("COMMAND",SPARSE, diebuf);
57                         ServerInstance->SendError(diebuf);
58                 }
59
60                 if (ServerInstance->Config->DieDelay)
61                         sleep(ServerInstance->Config->DieDelay);
62
63                 ServerInstance->Exit(EXIT_STATUS_DIE);
64         }
65         else
66         {
67                 ServerInstance->Logs->Log("COMMAND",SPARSE, "Failed /DIE command from %s!%s@%s", user->nick.c_str(), user->ident.c_str(), user->host.c_str());
68                 ServerInstance->SNO->WriteGlobalSno('a', "Failed DIE Command from %s!%s@%s.",user->nick.c_str(),user->ident.c_str(),user->host.c_str());
69                 return CMD_FAILURE;
70         }
71         return CMD_SUCCESS;
72 }
73
74 COMMAND_INIT(CommandDie)