]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_rehash.cpp
NEVER use the two-param assign unless you want your string padding to len bytes with \0!
[user/henk/code/inspircd.git] / src / commands / cmd_rehash.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 "xline.h"
16 #include "commands/cmd_rehash.h"
17
18
19
20 extern "C" DllExport Command* init_command(InspIRCd* Instance)
21 {
22         return new CommandRehash(Instance);
23 }
24
25 CmdResult CommandRehash::Handle (const std::vector<std::string>& parameters, User *user)
26 {
27         std::string old_disabled = ServerInstance->Config->DisabledCommands;
28
29         if (parameters.size() && parameters[0][0] != '-')
30         {
31                 if (!ServerInstance->MatchText(ServerInstance->Config->ServerName, parameters[0]))
32                 {
33                         FOREACH_MOD(I_OnRehash,OnRehash(user, parameters[0]));
34                         return CMD_SUCCESS; // rehash for a server, and not for us
35                 }
36         }
37         else if (parameters.size())
38         {
39                 FOREACH_MOD(I_OnRehash,OnRehash(user, parameters[0]));
40                 return CMD_SUCCESS;
41         }
42
43         // Rehash for me.
44         FOREACH_MOD(I_OnRehash,OnRehash(user, ""));
45
46         // XXX write this to a remote user correctly
47         user->WriteNumeric(382, "%s %s :Rehashing",user->nick.c_str(),ServerConfig::CleanFilename(ServerInstance->ConfigFileName));
48
49         std::string m = user->nick + " is rehashing config file " + ServerConfig::CleanFilename(ServerInstance->ConfigFileName) + " on " + ServerInstance->Config->ServerName;
50         ServerInstance->SNO->WriteToSnoMask('A', m);
51         ServerInstance->Logs->CloseLogs();
52
53         if (!ServerInstance->OpenLog(ServerInstance->Config->argv, ServerInstance->Config->argc))
54         {
55                 m = std::string("ERROR: Could not open logfile ") + ServerInstance->Config->logpath + ":" + strerror(errno);
56                 ServerInstance->SNO->WriteToSnoMask('A', m);
57         }
58
59         ServerInstance->RehashUsersAndChans();
60         FOREACH_MOD(I_OnGarbageCollect, OnGarbageCollect());
61
62         if (!ServerInstance->ConfigThread)
63         {
64                 ServerInstance->Config->RehashUser = user;
65                 ServerInstance->Config->RehashParameter = parameters.size() ? parameters[0] : "";
66
67                 ServerInstance->ConfigThread = new ConfigReaderThread(ServerInstance, false, user);
68                 ServerInstance->Threads->Create(ServerInstance->ConfigThread);
69         }
70         else
71         {
72                 /* A rehash is already in progress! ahh shit. */
73                 if (IS_LOCAL(user))
74                         user->WriteServ("NOTICE %s :*** Could not rehash: A rehash is already in progress.", user->nick.c_str());
75                 else
76                         ServerInstance->PI->SendUserNotice(user, "*** Could not rehash: A rehash is already in progress.");
77
78                 return CMD_FAILURE;
79         }
80
81         return CMD_SUCCESS;
82 }
83