]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_globalload.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_globalload.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2011 Jackmcbarn <jackmcbarn@jackmcbarn.no-ip.org>
5  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
6  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
8  *   Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
9  *   Copyright (C) 2006 John Brooks <john.brooks@dereferenced.net>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 /* $ModDesc: Allows global loading of a module. */
26
27 #include "inspircd.h"
28
29 /** Handle /GLOADMODULE
30  */
31 class CommandGloadmodule : public Command
32 {
33  public:
34         CommandGloadmodule(Module* Creator) : Command(Creator,"GLOADMODULE", 1)
35         {
36                 flags_needed = 'o';
37                 syntax = "<modulename> [servermask]";
38                 TRANSLATE3(TR_TEXT, TR_TEXT, TR_END);
39         }
40
41         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
42         {
43                 std::string servername = parameters.size() > 1 ? parameters[1] : "*";
44
45                 if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
46                 {
47                         if (ServerInstance->Modules->Load(parameters[0].c_str()))
48                         {
49                                 ServerInstance->SNO->WriteToSnoMask('a', "NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0].c_str(), user->nick.c_str());
50                                 user->WriteNumeric(975, "%s %s :Module successfully loaded.",user->nick.c_str(), parameters[0].c_str());
51                         }
52                         else
53                         {
54                                 user->WriteNumeric(974, "%s %s :%s",user->nick.c_str(), parameters[0].c_str(), ServerInstance->Modules->LastError().c_str());
55                         }
56                 }
57                 else
58                         ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL LOAD BY '%s' (not loaded here)",parameters[0].c_str(), user->nick.c_str());
59
60                 return CMD_SUCCESS;
61         }
62
63         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
64         {
65                 return ROUTE_BROADCAST;
66         }
67 };
68
69 /** Handle /GUNLOADMODULE
70  */
71 class CommandGunloadmodule : public Command
72 {
73  public:
74         CommandGunloadmodule(Module* Creator) : Command(Creator,"GUNLOADMODULE", 1)
75         {
76                 flags_needed = 'o';
77                 syntax = "<modulename> [servermask]";
78         }
79
80         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
81         {
82                 if (!ServerInstance->Config->ConfValue("security")->getBool("allowcoreunload") &&
83                         InspIRCd::Match(parameters[0], "cmd_*.so", ascii_case_insensitive_map))
84                 {
85                         user->WriteNumeric(972, "%s %s :You cannot unload core commands!", user->nick.c_str(), parameters[0].c_str());
86                         return CMD_FAILURE;
87                 }
88
89                 std::string servername = parameters.size() > 1 ? parameters[1] : "*";
90
91                 if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
92                 {
93                         Module* m = ServerInstance->Modules->Find(parameters[0]);
94                         if (m)
95                         {
96                                 if (ServerInstance->Modules->Unload(m))
97                                 {
98                                         ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0].c_str(), user->nick.c_str());
99                                         user->SendText(":%s 973 %s %s :Module successfully unloaded.",
100                                                 ServerInstance->Config->ServerName.c_str(), user->nick.c_str(), parameters[0].c_str());
101                                 }
102                                 else
103                                 {
104                                         user->WriteNumeric(972, "%s %s :%s",user->nick.c_str(), parameters[0].c_str(), ServerInstance->Modules->LastError().c_str());
105                                 }
106                         }
107                         else
108                                 user->SendText(":%s 972 %s %s :No such module", ServerInstance->Config->ServerName.c_str(), user->nick.c_str(), parameters[0].c_str());
109                 }
110                 else
111                         ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL UNLOAD BY '%s' (not unloaded here)",parameters[0].c_str(), user->nick.c_str());
112
113                 return CMD_SUCCESS;
114         }
115
116         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
117         {
118                 return ROUTE_BROADCAST;
119         }
120 };
121
122 class GReloadModuleWorker : public HandlerBase1<void, bool>
123 {
124  public:
125         const std::string nick;
126         const std::string name;
127         const std::string uid;
128         GReloadModuleWorker(const std::string& usernick, const std::string& uuid, const std::string& modn)
129                 : nick(usernick), name(modn), uid(uuid) {}
130         void Call(bool result)
131         {
132                 ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY RELOADED BY '%s'%s", name.c_str(), nick.c_str(), result ? "" : " (failed here)");
133                 User* user = ServerInstance->FindNick(uid);
134                 if (user)
135                         user->WriteNumeric(975, "%s %s :Module %ssuccessfully reloaded.",
136                                 user->nick.c_str(), name.c_str(), result ? "" : "un");
137                 ServerInstance->GlobalCulls.AddItem(this);
138         }
139 };
140
141 /** Handle /GRELOADMODULE
142  */
143 class CommandGreloadmodule : public Command
144 {
145  public:
146         CommandGreloadmodule(Module* Creator) : Command(Creator, "GRELOADMODULE", 1)
147         {
148                 flags_needed = 'o'; syntax = "<modulename> [servermask]";
149         }
150
151         CmdResult Handle(const std::vector<std::string> &parameters, User *user)
152         {
153                 std::string servername = parameters.size() > 1 ? parameters[1] : "*";
154
155                 if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
156                 {
157                         Module* m = ServerInstance->Modules->Find(parameters[0]);
158                         if (m)
159                                 ServerInstance->Modules->Reload(m, new GReloadModuleWorker(user->nick, user->uuid, parameters[0]));
160                         else
161                         {
162                                 user->WriteNumeric(975, "%s %s :Could not find module by that name", user->nick.c_str(), parameters[0].c_str());
163                                 return CMD_FAILURE;
164                         }
165                 }
166                 else
167                         ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL RELOAD BY '%s' (not reloaded here)",parameters[0].c_str(), user->nick.c_str());
168
169                 return CMD_SUCCESS;
170         }
171
172         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
173         {
174                 return ROUTE_BROADCAST;
175         }
176 };
177
178 class ModuleGlobalLoad : public Module
179 {
180         CommandGloadmodule cmd1;
181         CommandGunloadmodule cmd2;
182         CommandGreloadmodule cmd3;
183
184  public:
185         ModuleGlobalLoad()
186                 : cmd1(this), cmd2(this), cmd3(this)
187         {
188         }
189
190         void init()
191         {
192                 ServerInstance->Modules->AddService(cmd1);
193                 ServerInstance->Modules->AddService(cmd2);
194                 ServerInstance->Modules->AddService(cmd3);
195         }
196
197         Version GetVersion()
198         {
199                 return Version("Allows global loading of a module.", VF_COMMON | VF_VENDOR);
200         }
201 };
202
203 MODULE_INIT(ModuleGlobalLoad)