From 889d521e05f2e922683d48c74eb00290e7a2f548 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Wed, 17 Jul 2024 00:06:50 +0100 Subject: Shuffle the modules about a bit. --- src/modules/m_globalload.cpp | 178 ------------------------------------------- 1 file changed, 178 deletions(-) delete mode 100644 src/modules/m_globalload.cpp (limited to 'src/modules/m_globalload.cpp') diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp deleted file mode 100644 index 26541cd22..000000000 --- a/src/modules/m_globalload.cpp +++ /dev/null @@ -1,178 +0,0 @@ -/* - * InspIRCd -- Internet Relay Chat Daemon - * - * Copyright (C) 2013, 2017, 2019-2023 Sadie Powell - * Copyright (C) 2012, 2014-2016 Attila Molnar - * Copyright (C) 2012 Robby - * Copyright (C) 2009-2010 Daniel De Graaf - * Copyright (C) 2009 Robin Burchell - * Copyright (C) 2007-2008 Dennis Friis - * Copyright (C) 2007-2008 Craig Edwards - * Copyright (C) 2007 John Brooks - * - * 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 . - */ - - -#include "inspircd.h" - -class CommandGLoadModule final - : public Command -{ -public: - CommandGLoadModule(Module* Creator) - : Command(Creator, "GLOADMODULE", 1) - { - access_needed = CmdAccess::OPERATOR; - syntax = { " []" }; - } - - 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 = { " []" }; - } - - 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 = { " []" }; - } - - 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) -- cgit v1.3.1-10-gc9f91