]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_globalload.cpp
Annotations
[user/henk/code/inspircd.git] / src / modules / m_globalload.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 /* $ModDesc: Allows global loading of a module. */
20
21 #include <stdio.h>
22 #include "users.h"
23 #include "channels.h"
24 #include "modules.h"
25 #include "inspircd.h"
26
27 /** Handle /GLOADMODULE
28  */
29 class cmd_gloadmodule : public command_t
30 {
31  public:
32         cmd_gloadmodule (InspIRCd* Instance) : command_t(Instance,"GLOADMODULE", 'o', 1)
33         {
34                 this->source = "m_globalload.so";
35                 syntax = "<modulename>";
36         }
37
38         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
39         {
40                 if (ServerInstance->LoadModule(parameters[0]))
41                 {
42                         ServerInstance->WriteOpers("*** NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0],user->nick);
43                         user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]);
44                         return CMD_SUCCESS;
45                 }
46                 else
47                 {
48                         user->WriteServ("974 %s %s :Failed to load module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
49                         return CMD_FAILURE;
50                 }
51         }
52 };
53
54 /** Handle /GUNLOADMODULE
55  */
56 class cmd_gunloadmodule : public command_t
57 {
58  public:
59         cmd_gunloadmodule (InspIRCd* Instance) : command_t(Instance,"GUNLOADMODULE", 'o', 1)
60         {
61                 this->source = "m_globalload.so";
62                 syntax = "<modulename>";
63         }
64
65         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
66         {
67                 if (ServerInstance->UnloadModule(parameters[0]))
68                 {
69                         ServerInstance->WriteOpers("*** MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0],user->nick);
70                         user->WriteServ("973 %s %s :Module successfully unloaded.",user->nick, parameters[0]);
71                         return CMD_SUCCESS;
72                 }
73                 else
74                 {
75                         user->WriteServ("972 %s %s :Failed to unload module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
76                         return CMD_FAILURE;
77                 }
78         }
79 };
80
81 class ModuleGlobalLoad : public Module
82 {
83         cmd_gloadmodule *mycommand;
84         cmd_gunloadmodule *mycommand2;
85         
86  public:
87         ModuleGlobalLoad(InspIRCd* Me) : Module::Module(Me)
88         {
89                 
90                 mycommand = new cmd_gloadmodule(ServerInstance);
91                 mycommand2 = new cmd_gunloadmodule(ServerInstance);
92                 ServerInstance->AddCommand(mycommand);
93                 ServerInstance->AddCommand(mycommand2);
94         }
95         
96         virtual ~ModuleGlobalLoad()
97         {
98         }
99         
100         virtual Version GetVersion()
101         {
102                 return Version(1, 0, 0, 0, VF_VENDOR);
103         }
104 };
105
106
107 class ModuleGlobalLoadFactory : public ModuleFactory
108 {
109  public:
110         ModuleGlobalLoadFactory()
111         {
112         }
113         
114         ~ModuleGlobalLoadFactory()
115         {
116         }
117         
118         virtual Module * CreateModule(InspIRCd* Me)
119         {
120                 return new ModuleGlobalLoad(Me);
121         }
122         
123 };
124
125
126 extern "C" void * init_module( void )
127 {
128         return new ModuleGlobalLoadFactory;
129 }