]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_unloadmodule.cpp
5aecd22ddef0d1f924d642a7c227846bcd618fd3
[user/henk/code/inspircd.git] / src / commands / cmd_unloadmodule.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 /** Handle /UNLOADMODULE. These command handlers can be reloaded by the core,
17  * and handle basic RFC1459 commands. Commands within modules work
18  * the same way, however, they can be fully unloaded, where these
19  * may not.
20  */
21 class CommandUnloadmodule : public Command
22 {
23  public:
24         /** Constructor for unloadmodule.
25          */
26         CommandUnloadmodule ( Module* parent) : Command(parent,"UNLOADMODULE",1) { flags_needed = 'o'; syntax = "<modulename>"; }
27         /** Handle command.
28          * @param parameters The parameters to the comamnd
29          * @param pcnt The number of parameters passed to teh command
30          * @param user The user issuing the command
31          * @return A value from CmdResult to indicate command success or failure.
32          */
33         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
34 };
35
36 CmdResult CommandUnloadmodule::Handle (const std::vector<std::string>& parameters, User *user)
37 {
38         if (parameters[0] == "cmd_unloadmodule.so" || parameters[0] == "cmd_loadmodule.so")
39         {
40                 user->WriteNumeric(972, "%s %s :You cannot unload module loading commands!", user->nick.c_str(), parameters[0].c_str());
41                 return CMD_FAILURE;
42         }
43                 
44         if (ServerInstance->Modules->Unload(parameters[0].c_str()))
45         {
46                 ServerInstance->SNO->WriteGlobalSno('a', "MODULE UNLOADED: %s unloaded %s", user->nick.c_str(), parameters[0].c_str());
47                 user->WriteNumeric(973, "%s %s :Module successfully unloaded.",user->nick.c_str(), parameters[0].c_str());
48         }
49         else
50         {
51                 user->WriteNumeric(972, "%s %s :%s",user->nick.c_str(), parameters[0].c_str(), ServerInstance->Modules->LastError().c_str());
52                 return CMD_FAILURE;
53         }
54
55         return CMD_SUCCESS;
56 }
57
58 COMMAND_INIT(CommandUnloadmodule)