Merge with nolan
[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 local prosody = prosody;
12 local log = require "util.logger".init("componentmanager");
13 local configmanager = require "core.configmanager";
14 local modulemanager = require "core.modulemanager";
15 local core_route_stanza = core_route_stanza;
16 local jid_split = require "util.jid".split;
17 local events_new = require "util.events".new;
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 prosody.events.add_handler("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 local components_loaded_once;
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 = {}, events = events_new() };
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("debug", "Activated %s component: %s", host_config.core.component_module, host);
60                         end
61                 end
62         end
63 end
64
65 prosody.events.add_handler("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 host then
71                 if node then component = components[node.."@"..host]; end -- hack to allow hooking node@server
72                 if not component then component = components[host]; end
73         end
74         if component then
75                 log("debug", "%s stanza being handled by component: %s", stanza.name, host);
76                 component(origin, stanza, hosts[host]);
77         else
78                 log("error", "Component manager recieved a stanza for a non-existing component: " .. (stanza.attr.to or stanza));
79         end
80 end
81
82 function create_component(host, component)
83         -- TODO check for host well-formedness
84         return { type = "component", host = host, connected = true, s2sout = {}, events = events_new() };
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                 local old_events = hosts[host] and hosts[host].events;
90
91                 components[host] = component;
92                 hosts[host] = session or create_component(host, component);
93                 
94                 -- Add events object if not already one
95                 if not hosts[host].events then
96                         hosts[host].events = old_events or events_new();
97                 end
98                 
99                 -- add to disco_items
100                 if not(host:find("@", 1, true) or host:find("/", 1, true)) and host:find(".", 1, true) then
101                         disco_items:set(host:sub(host:find(".", 1, true)+1), host, true);
102                 end
103                 -- FIXME only load for a.b.c if b.c has dialback, and/or check in config
104                 modulemanager.load(host, "dialback");
105                 log("debug", "component added: "..host);
106                 return session or hosts[host];
107         else
108                 log("error", "Attempt to set component for existing host: "..host);
109         end
110 end
111
112 function deregister_component(host)
113         if components[host] then
114                 modulemanager.unload(host, "dialback");
115                 hosts[host].connected = nil;
116                 local host_config = configmanager.getconfig()[host];
117                 if host_config and ((host_config.core.enabled == nil or host_config.core.enabled) and type(host_config.core.component_module) == "string") then
118                         -- Set default handler
119                         components[host] = default_component_handler;
120                 else
121                         -- Component not in config, or disabled, remove
122                         hosts[host] = nil;
123                         components[host] = nil;
124                 end
125                 -- remove from disco_items
126                 if not(host:find("@", 1, true) or host:find("/", 1, true)) and host:find(".", 1, true) then
127                         disco_items:remove(host:sub(host:find(".", 1, true)+1), host);
128                 end
129                 log("debug", "component removed: "..host);
130                 return true;
131         else
132                 log("error", "Attempt to remove component for non-existing host: "..host);
133         end
134 end
135
136 function set_component_handler(host, handler)
137         components[host] = handler;
138 end
139
140 return _M;