net.dns: Remove sockets from socketset when closing them, fixes a leak
[prosody.git] / core / modulemanager.lua
index 59a900f5eac8df6707d5f28585e5865faaf5c0ce..7ca12ddafc538561c0ea11b9d7cf8a959a1b5cd7 100644 (file)
@@ -1,4 +1,4 @@
--- Prosody IM v0.4
+-- Prosody IM
 -- Copyright (C) 2008-2009 Matthew Wild
 -- Copyright (C) 2008-2009 Waqas Hussain
 -- 
@@ -18,6 +18,7 @@ local config = require "core.configmanager";
 local multitable_new = require "util.multitable".new;
 local register_actions = require "core.actions".register;
 local st = require "util.stanza";
+local pluginloader = require "util.pluginloader";
 
 local hosts = hosts;
 local prosody = prosody;
@@ -29,15 +30,18 @@ local t_insert, t_concat = table.insert, table.concat;
 local type = type;
 local next = next;
 local rawget = rawget;
-
+local error = error;
 local tostring = tostring;
 
+local autoload_modules = {"presence", "message", "iq"};
+
 -- We need this to let modules access the real global namespace
 local _G = _G;
 
 module "modulemanager"
 
-local api = {}; -- Module API container
+api = {};
+local api = api; -- Module API container
 
 local modulemap = { ["*"] = {} };
 
@@ -47,38 +51,43 @@ local handler_info = {};
 local modulehelpers = setmetatable({}, { __index = _G });
 
 local features_table = multitable_new();
+local identities_table = multitable_new();
 local handler_table = multitable_new();
 local hooked = multitable_new();
+local hooks = multitable_new();
 local event_hooks = multitable_new();
 
 local NULL = {};
 
 -- Load modules when a host is activated
 function load_modules_for_host(host)
-       if config.get(host, "core", "modules_enable") == false then
-               return; -- Only load for hosts, not components, etc.
-       end
-
-       -- Load modules from global section
-       local modules_enabled = config.get("*", "core", "modules_enabled");
-       local modules_disabled = config.get(host, "core", "modules_disabled");
-       local disabled_set = {};
-       if modules_enabled then
-               if modules_disabled then
-                       for _, module in ipairs(modules_disabled) do
-                               disabled_set[module] = true;
+       if config.get(host, "core", "load_global_modules") ~= false then
+               -- Load modules from global section
+               local modules_enabled = config.get("*", "core", "modules_enabled");
+               local modules_disabled = config.get(host, "core", "modules_disabled");
+               local disabled_set = {};
+               if modules_enabled then
+                       if modules_disabled then
+                               for _, module in ipairs(modules_disabled) do
+                                       disabled_set[module] = true;
+                               end
                        end
-               end
-               for _, module in ipairs(modules_enabled) do
-                       if not disabled_set[module] then
-                               load(host, module);
+                       for _, module in ipairs(autoload_modules) do
+                               if not disabled_set[module] then
+                                       load(host, module);
+                               end
+                       end
+                       for _, module in ipairs(modules_enabled) do
+                               if not disabled_set[module] and not is_loaded(host, module) then
+                                       load(host, module);
+                               end
                        end
                end
        end
-
+       
        -- Load modules from just this host
        local modules_enabled = config.get(host, "core", "modules_enabled");
-       if modules_enabled then
+       if modules_enabled and modules_enabled ~= config.get("*", "core", "modules_enabled") then
                for _, module in pairs(modules_enabled) do
                        if not is_loaded(host, module) then
                                load(host, module);
@@ -87,6 +96,7 @@ function load_modules_for_host(host)
        end
 end
 eventmanager.add_event_hook("host-activated", load_modules_for_host);
+eventmanager.add_event_hook("component-activated", load_modules_for_host);
 --
 
 function load(host, module_name, config)
@@ -96,6 +106,7 @@ function load(host, module_name, config)
        
        if not modulemap[host] then
                modulemap[host] = {};
+               hosts[host].modules = modulemap[host];
        end
        
        if modulemap[host][module_name] then
@@ -106,7 +117,7 @@ function load(host, module_name, config)
        end
        
 
-       local mod, err = loadfile(get_module_filename(module_name));
+       local mod, err = pluginloader.load_code(module_name);
        if not mod then
                log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil");
                return nil, err;
@@ -122,10 +133,17 @@ function load(host, module_name, config)
        
        local success, ret = pcall(mod);
        if not success then
-               log("error", "Error initialising module '%s': %s", name or "nil", ret or "nil");
+               log("error", "Error initialising module '%s': %s", module_name or "nil", ret or "nil");
                return nil, ret;
        end
        
+       if module_has_method(pluginenv, "load") then
+               local ok, err = call_module_method(pluginenv, "load");
+               if (not ok) and err then
+                       log("warn", "Error loading module '%s' on '%s': %s", module_name, host, err);
+               end
+       end
+
        -- Use modified host, if the module set one
        modulemap[api_instance.host][module_name] = pluginenv;
        
@@ -156,6 +174,7 @@ function unload(host, name, ...)
        end
        modulemap[host][name] = nil;
        features_table:remove(host, name);
+       identities_table:remove(host, name);
        local params = handler_table:get(host, name); -- , {module.host, origin_type, tag, xmlns}
        for _, param in pairs(params or NULL) do
                local handlers = stanza_handlers:get(param[1], param[2], param[3], param[4]);
@@ -165,6 +184,13 @@ function unload(host, name, ...)
                end
        end
        event_hooks:remove(host, name);
+       -- unhook event handlers hooked by module:hook
+       for event, handlers in pairs(hooks:get(host, name) or NULL) do
+               for handler in pairs(handlers or NULL) do
+                       (hosts[host] or prosody).events.remove_handler(event, handler);
+               end
+       end
+       hooks:remove(host, name);
        return true;
 end
 
@@ -172,9 +198,9 @@ function reload(host, name, ...)
        local mod = get_module(host, name);
        if not mod then return nil, "module-not-loaded"; end
 
-       local _mod, err = loadfile(get_module_filename(name)); -- checking for syntax errors
+       local _mod, err = pluginloader.load_code(name); -- checking for syntax errors
        if not _mod then
-               log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil");
+               log("error", "Unable to load module '%s': %s", name or "nil", err or "nil");
                return nil, err;
        end
 
@@ -211,7 +237,7 @@ function reload(host, name, ...)
 end
 
 function handle_stanza(host, origin, stanza)
-       local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns, origin.type;
+       local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns or "jabber:client", origin.type;
        if name == "iq" and xmlns == "jabber:client" then
                if stanza.attr.type == "get" or stanza.attr.type == "set" then
                        xmlns = stanza.tags[1].attr.xmlns or "jabber:client";
@@ -233,7 +259,7 @@ function handle_stanza(host, origin, stanza)
                        if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
                                origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
                        end
-               elseif not(name == "features" and xmlns == "http://etherx.jabber.org/streams") then -- FIXME remove check once we handle S2S features
+               elseif not((name == "features" or name == "error") and xmlns == "http://etherx.jabber.org/streams") then -- FIXME remove check once we handle S2S features
                        origin:close("unsupported-stanza-type");
                end
        end
@@ -252,12 +278,6 @@ function call_module_method(module, method, ...)
        end
 end
 
-local _modulepath = { plugin_dir, "mod_", nil, ".lua"};
-function get_module_filename(name)
-       _modulepath[3] = name;
-       return t_concat(_modulepath);
-end
-
 ----- API functions exposed to modules -----------
 -- Must all be in api.* 
 
@@ -313,6 +333,22 @@ end
 addDiscoInfoHandler("*host", function(reply, to, from, node)
        if #node == 0 then
                local done = {};
+               for module, identities in pairs(identities_table:get(to) or NULL) do -- for each module
+                       for identity, attr in pairs(identities) do
+                               if not done[identity] then
+                                       reply:tag("identity", attr):up(); -- TODO cache
+                                       done[identity] = true;
+                               end
+                       end
+               end
+               for module, identities in pairs(identities_table:get("*") or NULL) do -- for each module
+                       for identity, attr in pairs(identities) do
+                               if not done[identity] then
+                                       reply:tag("identity", attr):up(); -- TODO cache
+                                       done[identity] = true;
+                               end
+                       end
+               end
                for module, features in pairs(features_table:get(to) or NULL) do -- for each module
                        for feature in pairs(features) do
                                if not done[feature] then
@@ -336,6 +372,9 @@ end);
 function api:add_feature(xmlns)
        features_table:set(self.host, self.name, xmlns, true);
 end
+function api:add_identity(category, type)
+       identities_table:set(self.host, self.name, category.."\0"..type, {category = category, type = type});
+end
 
 local event_hook = function(host, mod_name, event_name, ...)
        if type((...)) == "table" and (...).host and (...).host ~= host then return; end
@@ -352,15 +391,33 @@ function api:add_event_hook(name, handler)
 end
 
 function api:fire_event(...)
-       return eventmanager.fire_event(...);
+       return (hosts[self.host] or prosody).events.fire_event(...);
 end
 
-function api:hook(event, handler)
-       if self.host ~= '*' then
-               hosts[self.host].events.add_handler(event, handler);
-       else
-               prosody.events.add_handler(event, handler);
+function api:hook(event, handler, priority)
+       hooks:set(self.host, self.name, event, handler, true);
+       (hosts[self.host] or prosody).events.add_handler(event, handler, priority);
+end
+
+function api:hook_stanza(xmlns, name, handler, priority)
+       if not handler and type(name) == "function" then
+               -- If only 2 options then they specified no xmlns
+               xmlns, name, handler, priority = nil, xmlns, name, handler;
+       elseif not (handler and name) then
+               self:log("warn", "Error: Insufficient parameters to module:hook_stanza()");
+               return;
+       end
+       return api.hook(self, "stanza/"..(xmlns and (xmlns..":") or "")..name, function (data) return handler(data.origin, data.stanza, data); end, priority);
+end
+
+function api:require(lib)
+       local f, n = pluginloader.load_code(self.name, lib..".lib.lua");
+       if not f then
+               f, n = pluginloader.load_code(lib, lib..".lib.lua");
        end
+       if not f then error("Failed to load plugin library '"..lib.."', error: "..n); end -- FIXME better error message
+       setfenv(f, setmetatable({ module = self }, { __index = _G }));
+       return f();
 end
 
 --------------------------------------------------------------------