]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_globalload.cpp
Refactor port binding, warning not yet tested fully
[user/henk/code/inspircd.git] / src / modules / m_globalload.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $ModDesc: Allows global loading of a module. */
15
16 #include <stdio.h>
17 #include "users.h"
18 #include "channels.h"
19 #include "modules.h"
20 #include "inspircd.h"
21
22 /** Handle /GLOADMODULE
23  */
24 class cmd_gloadmodule : public command_t
25 {
26  public:
27         cmd_gloadmodule (InspIRCd* Instance) : command_t(Instance,"GLOADMODULE", 'o', 1)
28         {
29                 this->source = "m_globalload.so";
30                 syntax = "<modulename>";
31         }
32
33         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
34         {
35                 if (ServerInstance->LoadModule(parameters[0]))
36                 {
37                         ServerInstance->WriteOpers("*** NEW MODULE '%s' GLOBALLY LOADED BY '%s'",parameters[0],user->nick);
38                         user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]);
39
40                         /* route it! */
41                         return CMD_SUCCESS;
42                 }
43                 else
44                 {
45                         user->WriteServ("974 %s %s :Failed to load module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
46                         /* XXX - returning CMD_FAILURE here could potentially mean half the net loads it, half doesn't. pass it on anyway? -- w00t */
47                         return CMD_FAILURE;
48                 }
49         }
50 };
51
52 /** Handle /GUNLOADMODULE
53  */
54 class cmd_gunloadmodule : public command_t
55 {
56  public:
57         cmd_gunloadmodule (InspIRCd* Instance) : command_t(Instance,"GUNLOADMODULE", 'o', 1)
58         {
59                 this->source = "m_globalload.so";
60                 syntax = "<modulename>";
61         }
62
63         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
64         {
65                 if (ServerInstance->UnloadModule(parameters[0]))
66                 {
67                         ServerInstance->WriteOpers("*** MODULE '%s' GLOBALLY UNLOADED BY '%s'",parameters[0],user->nick);
68                         user->WriteServ("973 %s %s :Module successfully unloaded.",user->nick, parameters[0]);
69                         /* route it! */
70                         return CMD_SUCCESS;
71                 }
72                 else
73                 {
74                         /* XXX - see above note about returning CMD_FAILURE here -- w00t */
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 /** Handle /GRELOADMODULE
82  */
83 class cmd_greloadmodule : public command_t
84 {
85  public:
86         cmd_greloadmodule (InspIRCd* Instance) : command_t(Instance, "GRELOADMODULE", 'o', 1)
87         {
88                 this->source = "m_globalload.so";
89                 syntax = "<modulename>";
90         }
91
92         CmdResult Handle(const char** parameters, int pcnt, userrec *user)
93         {
94                 if (!ServerInstance->UnloadModule(parameters[0]))
95                 {
96                         user->WriteServ("972 %s %s :Failed to unload module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
97                         return CMD_FAILURE;
98                 }
99
100                 if (!ServerInstance->LoadModule(parameters[0]))
101                 {
102                         user->WriteServ("974 %s %s :Failed to load module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
103                         return CMD_FAILURE;
104                 }
105
106                 ServerInstance->WriteOpers("*** MODULE '%s' GLOBALLY RELOADED BY '%s'",parameters[0],user->nick);
107                 user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]);
108                 
109                 return CMD_SUCCESS;
110         }
111 };
112
113 class ModuleGlobalLoad : public Module
114 {
115         cmd_gloadmodule *mycommand;
116         cmd_gunloadmodule *mycommand2;
117         cmd_greloadmodule *mycommand3;
118         
119  public:
120         ModuleGlobalLoad(InspIRCd* Me) : Module::Module(Me)
121         {
122                 
123                 mycommand = new cmd_gloadmodule(ServerInstance);
124                 mycommand2 = new cmd_gunloadmodule(ServerInstance);
125                 mycommand3 = new cmd_greloadmodule(ServerInstance);
126                 ServerInstance->AddCommand(mycommand);
127                 ServerInstance->AddCommand(mycommand2);
128                 ServerInstance->AddCommand(mycommand3);
129         }
130         
131         virtual ~ModuleGlobalLoad()
132         {
133         }
134         
135         virtual Version GetVersion()
136         {
137                 return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
138         }
139 };
140
141
142 class ModuleGlobalLoadFactory : public ModuleFactory
143 {
144  public:
145         ModuleGlobalLoadFactory()
146         {
147         }
148         
149         ~ModuleGlobalLoadFactory()
150         {
151         }
152         
153         virtual Module * CreateModule(InspIRCd* Me)
154         {
155                 return new ModuleGlobalLoad(Me);
156         }
157         
158 };
159
160
161 extern "C" void * init_module( void )
162 {
163         return new ModuleGlobalLoadFactory;
164 }