]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_restart.cpp
ffd0323b7c23a21322227077820a8c2fb5e6c48a
[user/henk/code/inspircd.git] / src / commands / cmd_restart.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_RESTART_H__
17 #define __CMD_RESTART_H__
18
19 // include the common header files
20
21 #include <string>
22 #include <deque>
23 #include <vector>
24 #include "users.h"
25 #include "channels.h"
26
27 /** Handle /RESTART. 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 CommandRestart : public Command
33 {
34  public:
35         /** Constructor for restart.
36          */
37         CommandRestart (InspIRCd* Instance, Module* parent) : Command(Instance,parent,"RESTART","o",1,false,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 CommandRestart::Handle (const std::vector<std::string>& parameters, User *user)
51 {
52         ServerInstance->Logs->Log("COMMAND",DEFAULT,"Restart: %s",user->nick.c_str());
53         if (!ServerInstance->PassCompare(user, ServerInstance->Config->restartpass, parameters[0].c_str(), ServerInstance->Config->powerhash))
54         {
55                 ServerInstance->SNO->WriteGlobalSno('a', "RESTART command from %s!%s@%s, restarting server.", user->nick.c_str(), user->ident.c_str(), user->host.c_str());
56
57                 try
58                 {
59                         ServerInstance->Restart("Server restarting.");
60                 }
61                 catch (...)
62                 {
63                         /* We dont actually get here unless theres some fatal and unrecoverable error. */
64                         exit(0);
65                 }
66         }
67         else
68         {
69                 ServerInstance->SNO->WriteGlobalSno('a', "Failed RESTART Command from %s!%s@%s.", user->nick.c_str(), user->ident.c_str(), user->host.c_str());
70                 return CMD_FAILURE;
71         }
72
73         return CMD_SUCCESS;
74 }
75
76
77 COMMAND_INIT(CommandRestart)