]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_restart.cpp
d72b0f0de05d70e29ef3359aeac03c89e682eadd
[user/henk/code/inspircd.git] / src / commands / cmd_restart.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_restart.h"
16
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
18 {
19         return new CommandRestart(Instance);
20 }
21
22 CmdResult CommandRestart::Handle (const std::vector<std::string>& parameters, User *user)
23 {
24         ServerInstance->Logs->Log("COMMAND",DEFAULT,"Restart: %s",user->nick.c_str());
25         if (!ServerInstance->PassCompare(user, ServerInstance->Config->restartpass, parameters[0].c_str(), ServerInstance->Config->powerhash))
26         {
27                 ServerInstance->SNO->WriteToSnoMask('A', "RESTART command from %s!%s@%s, restarting server.", user->nick.c_str(), user->ident.c_str(), user->host.c_str());
28
29                 try
30                 {
31                         ServerInstance->Restart("Server restarting.");
32                 }
33                 catch (...)
34                 {
35                         /* We dont actually get here unless theres some fatal and unrecoverable error. */
36                         exit(0);
37                 }
38         }
39         else
40         {
41                 ServerInstance->SNO->WriteToSnoMask('A', "Failed RESTART Command from %s!%s@%s.", user->nick.c_str(), user->ident.c_str(), user->host.c_str());
42                 return CMD_FAILURE;
43         }
44
45         return CMD_SUCCESS;
46 }
47