diff options
| author | 2024-07-17 00:06:50 +0100 | |
|---|---|---|
| committer | 2024-07-17 00:06:50 +0100 | |
| commit | 889d521e05f2e922683d48c74eb00290e7a2f548 (patch) | |
| tree | b4c56bd4cdf0881601c7e4d6ff571e491af10bf4 /modules/globalload.cpp | |
| parent | Use std::endian from C++20 in the sha1 module. (diff) | |
Shuffle the modules about a bit.
Diffstat (limited to 'modules/globalload.cpp')
| -rw-r--r-- | modules/globalload.cpp | 178 |
1 files changed, 178 insertions, 0 deletions
diff --git a/modules/globalload.cpp b/modules/globalload.cpp new file mode 100644 index 000000000..26541cd22 --- /dev/null +++ b/modules/globalload.cpp @@ -0,0 +1,178 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2013, 2017, 2019-2023 Sadie Powell <sadie@witchery.services> + * Copyright (C) 2012, 2014-2016 Attila Molnar <attilamolnar@hush.com> + * Copyright (C) 2012 Robby <robby@chatbelgie.be> + * Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org> + * Copyright (C) 2009 Robin Burchell <robin+git@viroteck.net> + * Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org> + * Copyright (C) 2007-2008 Craig Edwards <brain@inspircd.org> + * Copyright (C) 2007 John Brooks <john@jbrooks.io> + * + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + + +#include "inspircd.h" + +class CommandGLoadModule final + : public Command +{ +public: + CommandGLoadModule(Module* Creator) + : Command(Creator, "GLOADMODULE", 1) + { + access_needed = CmdAccess::OPERATOR; + syntax = { "<modulename> [<servermask>]" }; + } + + CmdResult Handle(User* user, const Params& parameters) override + { + std::string servername = parameters.size() > 1 ? parameters[1] : "*"; + + if (InspIRCd::Match(ServerInstance->Config->ServerName, servername)) + { + if (ServerInstance->Modules.Load(parameters[0])) + { + ServerInstance->SNO.WriteToSnoMask('a', "NEW MODULE '{}' GLOBALLY LOADED BY '{}'", parameters[0], user->nick); + user->WriteRemoteNumeric(RPL_LOADEDMODULE, parameters[0], "Module successfully loaded."); + } + else + { + user->WriteRemoteNumeric(ERR_CANTLOADMODULE, parameters[0], ServerInstance->Modules.LastError()); + } + } + else + ServerInstance->SNO.WriteToSnoMask('a', "MODULE '{}' GLOBAL LOAD BY '{}' (not loaded here)", parameters[0], user->nick); + + return CmdResult::SUCCESS; + } + + RouteDescriptor GetRouting(User* user, const Params& parameters) override + { + return ROUTE_BROADCAST; + } +}; + +class CommandGUnloadModule final + : public Command +{ +public: + CommandGUnloadModule(Module* Creator) + : Command(Creator, "GUNLOADMODULE", 1) + { + access_needed = CmdAccess::OPERATOR; + syntax = { "<modulename> [<servermask>]" }; + } + + CmdResult Handle(User* user, const Params& parameters) override + { + if (InspIRCd::Match(parameters[0], "core_*", ascii_case_insensitive_map)) + { + user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "You cannot unload core commands!"); + return CmdResult::FAILURE; + } + + std::string servername = parameters.size() > 1 ? parameters[1] : "*"; + + if (InspIRCd::Match(ServerInstance->Config->ServerName, servername)) + { + Module* m = ServerInstance->Modules.Find(parameters[0]); + if (m) + { + if (ServerInstance->Modules.Unload(m)) + { + ServerInstance->SNO.WriteToSnoMask('a', "MODULE '{}' GLOBALLY UNLOADED BY '{}'", parameters[0], user->nick); + user->WriteRemoteNumeric(RPL_UNLOADEDMODULE, parameters[0], "Module successfully unloaded."); + } + else + { + user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], ServerInstance->Modules.LastError()); + } + } + else + user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "No such module"); + } + else + ServerInstance->SNO.WriteToSnoMask('a', "MODULE '{}' GLOBAL UNLOAD BY '{}' (not unloaded here)", parameters[0], user->nick); + + return CmdResult::SUCCESS; + } + + RouteDescriptor GetRouting(User* user, const Params& parameters) override + { + return ROUTE_BROADCAST; + } +}; + +class CommandGReloadModule final + : public Command +{ +public: + CommandGReloadModule(Module* Creator) + : Command(Creator, "GRELOADMODULE", 1) + { + access_needed = CmdAccess::OPERATOR; + syntax = { "<modulename> [<servermask>]" }; + } + + CmdResult Handle(User* user, const Params& parameters) override + { + std::string servername = parameters.size() > 1 ? parameters[1] : "*"; + + if (InspIRCd::Match(ServerInstance->Config->ServerName, servername)) + { + Module* m = ServerInstance->Modules.Find(parameters[0]); + if (m) + { + ServerInstance->SNO.WriteToSnoMask('a', "MODULE '{}' GLOBALLY RELOADED BY '{}'", parameters[0], user->nick); + ServerInstance->Parser.CallHandler("RELOADMODULE", parameters, user); + } + else + { + user->WriteRemoteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "Could not find a loaded module by that name"); + return CmdResult::FAILURE; + } + } + else + ServerInstance->SNO.WriteToSnoMask('a', "MODULE '{}' GLOBAL RELOAD BY '{}' (not reloaded here)", parameters[0], user->nick); + + return CmdResult::SUCCESS; + } + + RouteDescriptor GetRouting(User* user, const Params& parameters) override + { + return ROUTE_BROADCAST; + } +}; + +class ModuleGlobalLoad final + : public Module +{ +private: + CommandGLoadModule cmdgloadmodule; + CommandGUnloadModule cmdgunloadmodule; + CommandGReloadModule cmdgreloadmodule; + +public: + ModuleGlobalLoad() + : Module(VF_VENDOR | VF_COMMON, "Adds the /GLOADMODULE, /GRELOADMODULE, and /GUNLOADMODULE commands which allows server operators to load, reload, and unload modules on remote servers.") + , cmdgloadmodule(this) + , cmdgunloadmodule(this) + , cmdgreloadmodule(this) + { + } +}; + +MODULE_INIT(ModuleGlobalLoad) |
