]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_globalload.cpp
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
[user/henk/code/inspircd.git] / src / modules / m_globalload.cpp
index 842b03a27154dd0473ba5452dab92263e4df8025..2355cc979644005cf251a82c23aa8c77cb68a62e 100644 (file)
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ *   Copyright (C) 2011 Jackmcbarn <jackmcbarn@jackmcbarn.no-ip.org>
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2006-2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2006 John Brooks <john.brooks@dereferenced.net>
  *
- * ---------------------------------------------------
+ * 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/>.
  */
 
-using namespace std;
-
-/* $ModDesc: Allows global loading of a module. */
 
-#include <stdio.h>
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 #include "inspircd.h"
-#include "helperfuncs.h"
 
-class cmd_gloadmodule : public command_t
+/** Handle /GLOADMODULE
+ */
+class CommandGloadmodule : public Command
 {
  public:
-       cmd_gloadmodule (InspIRCd* Instance) : command_t(Instance,"GLOADMODULE", 'o', 1)
+       CommandGloadmodule(Module* Creator) : Command(Creator,"GLOADMODULE", 1)
        {
-               this->source = "m_globalload.so";
-               syntax = "<modulename>";
+               flags_needed = 'o';
+               syntax = "<modulename> [servermask]";
        }
 
-       void Handle (const char** parameters, int pcnt, userrec *user)
+       CmdResult Handle (const std::vector<std::string> &parameters, User *user)
        {
-               if (ServerInstance->LoadModule(parameters[0]))
+               std::string servername = parameters.size() > 1 ? parameters[1] : "*";
+
+               if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
                {
-                       ServerInstance->WriteOpers("*** NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0],user->nick);
-                       user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]);
+                       if (ServerInstance->Modules->Load(parameters[0].c_str()))
+                       {
+                               ServerInstance->SNO->WriteToSnoMask('a', "NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0].c_str(), user->nick.c_str());
+                               user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "Module successfully loaded.");
+                       }
+                       else
+                       {
+                               user->WriteNumeric(ERR_CANTLOADMODULE, parameters[0], ServerInstance->Modules->LastError());
+                       }
                }
                else
-               {
-                       user->WriteServ("974 %s %s :Failed to load module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
-               }
+                       ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL LOAD BY '%s' (not loaded here)",parameters[0].c_str(), user->nick.c_str());
+
+               return CMD_SUCCESS;
+       }
+
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
+       {
+               return ROUTE_BROADCAST;
        }
 };
 
-class cmd_gunloadmodule : public command_t
+/** Handle /GUNLOADMODULE
+ */
+class CommandGunloadmodule : public Command
 {
  public:
-       cmd_gunloadmodule (InspIRCd* Instance) : command_t(Instance,"GUNLOADMODULE", 'o', 1)
+       CommandGunloadmodule(Module* Creator) : Command(Creator,"GUNLOADMODULE", 1)
        {
-               this->source = "m_globalload.so";
-               syntax = "<modulename>";
+               flags_needed = 'o';
+               syntax = "<modulename> [servermask]";
        }
 
-       void Handle (const char** parameters, int pcnt, userrec *user)
+       CmdResult Handle (const std::vector<std::string> &parameters, User *user)
        {
-               if (ServerInstance->UnloadModule(parameters[0]))
+               if (!ServerInstance->Config->ConfValue("security")->getBool("allowcoreunload") &&
+                       InspIRCd::Match(parameters[0], "core_*.so", ascii_case_insensitive_map))
                {
-                       ServerInstance->WriteOpers("*** MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0],user->nick);
-                       user->WriteServ("973 %s %s :Module successfully unloaded.",user->nick, parameters[0]);
+                       user->WriteNumeric(ERR_CANTUNLOADMODULE, parameters[0], "You cannot unload core commands!");
+                       return CMD_FAILURE;
                }
-               else
+
+               std::string servername = parameters.size() > 1 ? parameters[1] : "*";
+
+               if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
                {
-                       user->WriteServ("972 %s %s :Failed to unload module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
+                       Module* m = ServerInstance->Modules->Find(parameters[0]);
+                       if (m)
+                       {
+                               if (ServerInstance->Modules->Unload(m))
+                               {
+                                       ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0].c_str(), user->nick.c_str());
+                                       user->SendText(":%s 973 %s %s :Module successfully unloaded.",
+                                               ServerInstance->Config->ServerName.c_str(), user->nick.c_str(), parameters[0].c_str());
+                               }
+                               else
+                               {
+                                       user->WriteNumeric(ERR_CANTUNLOADMODULE, parameters[0], ServerInstance->Modules->LastError());
+                               }
+                       }
+                       else
+                               user->SendText(":%s %03d %s %s :No such module", ServerInstance->Config->ServerName.c_str(), ERR_CANTUNLOADMODULE, user->nick.c_str(), parameters[0].c_str());
                }
+               else
+                       ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL UNLOAD BY '%s' (not unloaded here)",parameters[0].c_str(), user->nick.c_str());
+
+               return CMD_SUCCESS;
+       }
+
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
+       {
+               return ROUTE_BROADCAST;
        }
 };
 
-class ModuleGlobalLoad : public Module
+/** Handle /GRELOADMODULE
+ */
+class CommandGreloadmodule : public Command
 {
-       cmd_gloadmodule *mycommand;
-       cmd_gunloadmodule *mycommand2;
-       
  public:
-       ModuleGlobalLoad(InspIRCd* Me) : Module::Module(Me)
+       CommandGreloadmodule(Module* Creator) : Command(Creator, "GRELOADMODULE", 1)
        {
-               
-               mycommand = new cmd_gloadmodule(ServerInstance);
-               mycommand2 = new cmd_gunloadmodule(ServerInstance);
-               ServerInstance->AddCommand(mycommand);
-               ServerInstance->AddCommand(mycommand2);
+               flags_needed = 'o'; syntax = "<modulename> [servermask]";
        }
-       
-       virtual ~ModuleGlobalLoad()
+
+       CmdResult Handle(const std::vector<std::string> &parameters, User *user)
        {
+               std::string servername = parameters.size() > 1 ? parameters[1] : "*";
+
+               if (InspIRCd::Match(ServerInstance->Config->ServerName.c_str(), servername))
+               {
+                       Module* m = ServerInstance->Modules->Find(parameters[0]);
+                       if (m)
+                       {
+                               ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBALLY RELOADED BY '%s'", parameters[0].c_str(), user->nick.c_str());
+                               ServerInstance->Parser.CallHandler("RELOADMODULE", parameters, user);
+                       }
+                       else
+                       {
+                               user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "Could not find module by that name");
+                               return CMD_FAILURE;
+                       }
+               }
+               else
+                       ServerInstance->SNO->WriteToSnoMask('a', "MODULE '%s' GLOBAL RELOAD BY '%s' (not reloaded here)",parameters[0].c_str(), user->nick.c_str());
+
+               return CMD_SUCCESS;
        }
-       
-       virtual Version GetVersion()
+
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
        {
-               return Version(1, 0, 0, 0, VF_VENDOR);
+               return ROUTE_BROADCAST;
        }
 };
 
-
-class ModuleGlobalLoadFactory : public ModuleFactory
+class ModuleGlobalLoad : public Module
 {
+       CommandGloadmodule cmd1;
+       CommandGunloadmodule cmd2;
+       CommandGreloadmodule cmd3;
+
  public:
-       ModuleGlobalLoadFactory()
+       ModuleGlobalLoad()
+               : cmd1(this), cmd2(this), cmd3(this)
        {
        }
-       
-       ~ModuleGlobalLoadFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
+
+       Version GetVersion() CXX11_OVERRIDE
        {
-               return new ModuleGlobalLoad(Me);
+               return Version("Allows global loading of a module.", VF_COMMON | VF_VENDOR);
        }
-       
 };
 
-
-extern "C" void * init_module( void )
-{
-       return new ModuleGlobalLoadFactory;
-}
+MODULE_INIT(ModuleGlobalLoad)