]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_globalload.cpp
Replace copyright headers with headers granting specific authors copyright
[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                 std::string servername = parameters.size() > 1 ? parameters[1] : "*";
83
84                 if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
85                 {
86                         Module* m = ServerInstance->Modules->Find(parameters[0]);
87                         if (m && ServerInstance->Modules->Unload(m))
88                         {
89                                 ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0].c_str(), user->nick.c_str());
90                                 user->SendText(":%s 973 %s %s :Module successfully unloaded.",
91                                         ServerInstance->Config->ServerName.c_str(), user->nick.c_str(), parameters[0].c_str());
92                         }
93                         else
94                         {
95                                 user->WriteNumeric(972, "%s %s :%s",user->nick.c_str(), parameters[0].c_str(), ServerInstance->Modules->LastError().c_str());
96                         }
97                 }
98                 else
99                         ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL UNLOAD BY '%s' (not unloaded here)",parameters[0].c_str(), user->nick.c_str());
100
101                 return CMD_SUCCESS;
102         }
103
104         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
105         {
106                 return ROUTE_BROADCAST;
107         }
108 };
109
110 class GReloadModuleWorker : public HandlerBase1<void, bool>
111 {
112  public:
113         const std::string nick;
114         const std::string name;
115         const std::string uid;
116         GReloadModuleWorker(const std::string& usernick, const std::string& uuid, const std::string& modn)
117                 : nick(usernick), name(modn), uid(uuid) {}
118         void Call(bool result)
119         {
120                 ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY RELOADED BY '%s'%s", name.c_str(), nick.c_str(), result ? "" : " (failed here)");
121                 User* user = ServerInstance->FindNick(uid);
122                 if (user)
123                         user->WriteNumeric(975, "%s %s :Module %ssuccessfully reloaded.",
124                                 user->nick.c_str(), name.c_str(), result ? "" : "un");
125                 ServerInstance->GlobalCulls.AddItem(this);
126         }
127 };
128
129 /** Handle /GRELOADMODULE
130  */
131 class CommandGreloadmodule : public Command
132 {
133  public:
134         CommandGreloadmodule(Module* Creator) : Command(Creator, "GRELOADMODULE", 1)
135         {
136                 flags_needed = 'o'; syntax = "<modulename> [servermask]";
137         }
138
139         CmdResult Handle(const std::vector<std::string> &parameters, User *user)
140         {
141                 std::string servername = parameters.size() > 1 ? parameters[1] : "*";
142
143                 if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
144                 {
145                         Module* m = ServerInstance->Modules->Find(parameters[0]);
146                         if (m)
147                                 ServerInstance->Modules->Reload(m, new GReloadModuleWorker(user->nick, user->uuid, parameters[0]));
148                         else
149                         {
150                                 user->WriteNumeric(975, "%s %s :Could not find module by that name", user->nick.c_str(), parameters[0].c_str());
151                                 return CMD_FAILURE;
152                         }
153                 }
154                 else
155                         ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL RELOAD BY '%s' (not reloaded here)",parameters[0].c_str(), user->nick.c_str());
156
157                 return CMD_SUCCESS;
158         }
159
160         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
161         {
162                 return ROUTE_BROADCAST;
163         }
164 };
165
166 class ModuleGlobalLoad : public Module
167 {
168         CommandGloadmodule cmd1;
169         CommandGunloadmodule cmd2;
170         CommandGreloadmodule cmd3;
171
172  public:
173         ModuleGlobalLoad()
174                 : cmd1(this), cmd2(this), cmd3(this)
175         {
176                 ServerInstance->AddCommand(&cmd1);
177                 ServerInstance->AddCommand(&cmd2);
178                 ServerInstance->AddCommand(&cmd3);
179         }
180
181         ~ModuleGlobalLoad()
182         {
183         }
184
185         Version GetVersion()
186         {
187                 return Version("Allows global loading of a module.", VF_COMMON | VF_VENDOR);
188         }
189 };
190
191 MODULE_INIT(ModuleGlobalLoad)
192