Merging stable into unstable
[prosody.git] / core / componentmanager.lua
1 -- Prosody IM v0.4
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 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
10
11
12 local log = require "util.logger".init("componentmanager");
13 local configmanager = require "core.configmanager";
14 local eventmanager = require "core.eventmanager";
15 local modulemanager = require "core.modulemanager";
16 local core_route_stanza = core_route_stanza;
17 local jid_split = require "util.jid".split;
18 local st = require "util.stanza";
19 local hosts = hosts;
20
21 local pairs, type, tostring = pairs, type, tostring;
22
23 local components = {};
24
25 local disco_items = require "util.multitable".new();
26 local NULL = {};
27 require "core.discomanager".addDiscoItemsHandler("*host", function(reply, to, from, node)
28         if #node == 0 and hosts[to] then
29                 for jid in pairs(disco_items:get(to) or NULL) do
30                         reply:tag("item", {jid = jid}):up();
31                 end
32                 return true;
33         end
34 end);
35
36 require "core.eventmanager".add_event_hook("server-starting", function () core_route_stanza = _G.core_route_stanza; end);
37
38 module "componentmanager"
39
40 local function default_component_handler(origin, stanza)
41         log("warn", "Stanza being handled by default component, bouncing error");
42         if stanza.attr.type ~= "error" then
43                 core_route_stanza(nil, st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable"));
44         end
45 end
46
47
48 function load_enabled_components(config)
49         local defined_hosts = config or configmanager.getconfig();
50                 
51         for host, host_config in pairs(defined_hosts) do
52                 if host ~= "*" and ((host_config.core.enabled == nil or host_config.core.enabled) and type(host_config.core.component_module) == "string") then
53                         hosts[host] = { type = "component", host = host, connected = false, s2sout = {} };
54                         components[host] = default_component_handler;
55                         local ok, err = modulemanager.load(host, host_config.core.component_module);
56                         if not ok then
57                                 log("error", "Error loading %s component %s: %s", tostring(host_config.core.component_module), tostring(host), tostring(err));
58                         else
59                                 log("info", "Activated %s component: %s", host_config.core.component_module, host);
60                         end
61                 end
62         end
63 end
64
65 eventmanager.add_event_hook("server-starting", load_enabled_components);
66
67 function handle_stanza(origin, stanza)
68         local node, host = jid_split(stanza.attr.to);
69         local component = nil;
70         if not component then component = components[stanza.attr.to]; end -- hack to allow hooking node@server/resource and server/resource
71         if not component then component = components[node.."@"..host]; end -- hack to allow hooking node@server
72         if not component then component = components[host]; end
73         if component then
74                 log("debug", "%s stanza being handled by component: %s", stanza.name, host);
75                 component(origin, stanza, hosts[host]);
76         else
77                 log("error", "Component manager recieved a stanza for a non-existing component: " .. stanza.attr.to);
78         end
79 end
80
81 function create_component(host, component)
82         -- TODO check for host well-formedness
83         local session = session or { type = "component", host = host, connected = true, s2sout = {} };
84         return session;
85 end
86
87 function register_component(host, component, session)
88         if not hosts[host] or (hosts[host].type == 'component' and not hosts[host].connected) then
89                 components[host] = component;
90                 hosts[host] = session or create_component(host, component);
91                 -- add to disco_items
92                 if not(host:find("@", 1, true) or host:find("/", 1, true)) and host:find(".", 1, true) then
93                         disco_items:set(host:sub(host:find(".", 1, true)+1), host, true);
94                 end
95                 -- FIXME only load for a.b.c if b.c has dialback, and/or check in config
96                 modulemanager.load(host, "dialback");
97                 log("debug", "component added: "..host);
98                 return session or hosts[host];
99         else
100                 log("error", "Attempt to set component for existing host: "..host);
101         end
102 end
103
104 function deregister_component(host)
105         if components[host] then
106                 modulemanager.unload(host, "dialback");
107                 host.connected = nil;
108                 local host_config = configmanager.getconfig()[host];
109                 if host_config and ((host_config.core.enabled == nil or host_config.core.enabled) and type(host_config.core.component_module) == "string") then
110                         -- Set default handler
111                         components[host] = default_component_handler;
112                 else
113                         -- Component not in config, or disabled, remove
114                         hosts[host] = nil;
115                         components[host] = nil;
116                 end
117                 -- remove from disco_items
118                 if not(host:find("@", 1, true) or host:find("/", 1, true)) and host:find(".", 1, true) then
119                         disco_items:remove(host:sub(host:find(".", 1, true)+1), host);
120                 end
121                 log("debug", "component removed: "..host);
122                 return true;
123         else
124                 log("error", "Attempt to remove component for non-existing host: "..host);
125         end
126 end
127
128 function set_component_handler(host, handler)
129         components[host] = handler;
130 end
131
132 return _M;