f9f3a8b87b91a037f738996cf68923441d8b7855
[prosody.git] / core / modulemanager.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9 local logger = require "util.logger";
10 local log = logger.init("modulemanager");
11 local config = require "core.configmanager";
12 local pluginloader = require "util.pluginloader";
13
14 local hosts = hosts;
15 local prosody = prosody;
16
17 local loadfile, pcall, xpcall = loadfile, pcall, xpcall;
18 local setmetatable, setfenv, getfenv = setmetatable, setfenv, getfenv;
19 local pairs, ipairs = pairs, ipairs;
20 local t_insert, t_concat = table.insert, table.concat;
21 local type = type;
22 local next = next;
23 local rawget = rawget;
24 local error = error;
25 local tostring, tonumber = tostring, tonumber;
26
27 local debug_traceback = debug.traceback;
28 local unpack, select = unpack, select;
29 pcall = function(f, ...)
30         local n = select("#", ...);
31         local params = {...};
32         return xpcall(function() return f(unpack(params, 1, n)) end, function(e) return tostring(e).."\n"..debug_traceback(); end);
33 end
34
35 local array, set = require "util.array", require "util.set";
36
37 local autoload_modules = {"presence", "message", "iq", "offline", "c2s", "s2s"};
38 local component_inheritable_modules = {"tls", "dialback", "iq"};
39
40 -- We need this to let modules access the real global namespace
41 local _G = _G;
42
43 module "modulemanager"
44
45 local api = _G.require "core.moduleapi"; -- Module API container
46
47 -- [host] = { [module] = module_env }
48 local modulemap = { ["*"] = {} };
49
50 local NULL = {};
51
52 -- Load modules when a host is activated
53 function load_modules_for_host(host)
54         local component = config.get(host, "core", "component_module");
55         
56         local global_modules_enabled = config.get("*", "core", "modules_enabled");
57         local global_modules_disabled = config.get("*", "core", "modules_disabled");
58         local host_modules_enabled = config.get(host, "core", "modules_enabled");
59         local host_modules_disabled = config.get(host, "core", "modules_disabled");
60         
61         if host_modules_enabled == global_modules_enabled then host_modules_enabled = nil; end
62         if host_modules_disabled == global_modules_disabled then host_modules_disabled = nil; end
63         
64         local global_modules = set.new(autoload_modules) + set.new(global_modules_enabled) - set.new(global_modules_disabled);
65         if component then
66                 global_modules = set.intersection(set.new(component_inheritable_modules), global_modules);
67         end
68         local modules = (global_modules + set.new(host_modules_enabled)) - set.new(host_modules_disabled);
69         
70         -- COMPAT w/ pre 0.8
71         if modules:contains("console") then
72                 log("error", "The mod_console plugin has been renamed to mod_admin_telnet. Please update your config.");
73                 modules:remove("console");
74                 modules:add("admin_telnet");
75         end
76         
77         if component then
78                 load(host, component);
79         end
80         for module in modules do
81                 load(host, module);
82         end
83 end
84 prosody.events.add_handler("host-activated", load_modules_for_host);
85
86 --- Private helpers ---
87
88 local function do_unload_module(host, name)
89         local mod = get_module(host, name);
90         if not mod then return nil, "module-not-loaded"; end
91         
92         if module_has_method(mod, "unload") then
93                 local ok, err = call_module_method(mod, "unload");
94                 if (not ok) and err then
95                         log("warn", "Non-fatal error unloading module '%s' on '%s': %s", name, host, err);
96                 end
97         end
98         
99         for handler, event in pairs(mod.module.event_handlers) do
100                 event.object.remove_handler(event.name, handler);
101         end
102         
103         if mod.module.items then -- remove items
104                 local events = (host == "*" and prosody.events) or hosts[host].events;
105                 for key,t in pairs(mod.module.items) do
106                         for i = #t,1,-1 do
107                                 local value = t[i];
108                                 t[i] = nil;
109                                 events.fire_event("item-removed/"..key, {source = mod.module, item = value});
110                         end
111                 end
112         end
113         modulemap[host][name] = nil;
114         return true;
115 end
116
117 local function do_load_module(host, module_name)
118         if not (host and module_name) then
119                 return nil, "insufficient-parameters";
120         elseif not hosts[host] then
121                 return nil, "unknown-host";
122         end
123         
124         if not modulemap[host] then
125                 modulemap[host] = {};
126                 hosts[host].modules = modulemap[host];
127         end
128         
129         if modulemap[host][module_name] then
130                 log("warn", "%s is already loaded for %s, so not loading again", module_name, host);
131                 return nil, "module-already-loaded";
132         elseif modulemap["*"][module_name] then
133                 return nil, "global-module-already-loaded";
134         end
135         
136
137         local mod, err = pluginloader.load_code(module_name);
138         if not mod then
139                 log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil");
140                 return nil, err;
141         end
142
143         local _log = logger.init(host..":"..module_name);
144         local api_instance = setmetatable({ name = module_name, host = host, path = err,
145                 _log = _log, log = function (self, ...) return _log(...); end, event_handlers = {} }
146                 , { __index = api });
147
148         local pluginenv = setmetatable({ module = api_instance }, { __index = _G });
149         api_instance.environment = pluginenv;
150         
151         setfenv(mod, pluginenv);
152         
153         local ok, err = pcall(mod);
154         if ok then
155                 -- Call module's "load"
156                 if module_has_method(pluginenv, "load") then
157                         ok, err = call_module_method(pluginenv, "load");
158                         if not ok then
159                                 log("warn", "Error loading module '%s' on '%s': %s", module_name, host, err or "nil");
160                         end
161                 end
162
163                 modulemap[pluginenv.module.host][module_name] = pluginenv;
164                 if pluginenv.module.host == "*" then
165                         if not pluginenv.module.global then -- COMPAT w/pre-0.9
166                                 log("warn", "mod_%s: Setting module.host = '*' deprecated, call module:set_global() instead", module_name);
167                                 api_instance:set_global();
168                         end
169                 else
170                         hosts[host].modules[module_name] = pluginenv;
171                 end
172         end
173         if not ok then
174                 log("error", "Error initializing module '%s' on '%s': %s", module_name, host, err or "nil");
175         end
176         return ok and pluginenv, err;
177 end
178
179 local function do_reload_module(host, name)
180         local mod = get_module(host, name);
181         if not mod then return nil, "module-not-loaded"; end
182
183         local _mod, err = pluginloader.load_code(name); -- checking for syntax errors
184         if not _mod then
185                 log("error", "Unable to load module '%s': %s", name or "nil", err or "nil");
186                 return nil, err;
187         end
188
189         local saved;
190         if module_has_method(mod, "save") then
191                 local ok, ret, err = call_module_method(mod, "save");
192                 if ok then
193                         saved = ret;
194                 else
195                         log("warn", "Error saving module '%s:%s' state: %s", host, name, ret);
196                         if not config.get(host, "core", "force_module_reload") then
197                                 log("warn", "Aborting reload due to error, set force_module_reload to ignore this");
198                                 return nil, "save-state-failed";
199                         else
200                                 log("warn", "Continuing with reload (using the force)");
201                         end
202                 end
203         end
204
205         do_unload_module(host, name);
206         local ok, err = do_load_module(host, name);
207         if ok then
208                 mod = get_module(host, name);
209                 if module_has_method(mod, "restore") then
210                         local ok, err = call_module_method(mod, "restore", saved or {})
211                         if (not ok) and err then
212                                 log("warn", "Error restoring module '%s' from '%s': %s", name, host, err);
213                         end
214                 end
215         end
216         return ok and mod, err;
217 end
218
219 --- Public API ---
220
221 -- Load a module and fire module-loaded event
222 function load(host, name)
223         local mod, err = do_load_module(host, name);
224         if mod then
225                 (hosts[mod.module.host] or prosody).events.fire_event("module-loaded", { module = name, host = host });
226         end
227         return mod, err;
228 end
229
230 -- Unload a module and fire module-unloaded
231 function unload(host, name)
232         local ok, err = do_unload_module(host, name);
233         if ok then
234                 (hosts[host] or prosody).events.fire_event("module-unloaded", { module = name, host = host });
235         end
236         return ok, err;
237 end
238
239 function reload(host, name)
240         local ok, err = do_reload_module(host, name);
241         if ok then
242                 (hosts[host] or prosody).events.fire_event("module-reloaded", { module = name, host = host });
243         elseif not is_loaded(host, name) then
244                 (hosts[host] or prosody).events.fire_event("module-unloaded", { module = name, host = host });
245         end
246         return ok, err;
247 end
248
249 function get_module(host, name)
250         return modulemap[host] and modulemap[host][name];
251 end
252
253 function get_modules(host)
254         return modulemap[host];
255 end
256
257 function is_loaded(host, name)
258         return modulemap[host] and modulemap[host][name] and true;
259 end
260
261 function module_has_method(module, method)
262         return type(module.module[method]) == "function";
263 end
264
265 function call_module_method(module, method, ...)
266         if module_has_method(module, method) then
267                 local f = module.module[method];
268                 return pcall(f, ...);
269         else
270                 return false, "no-such-method";
271         end
272 end
273
274 return _M;