212
|
1
|
|
2
|
|
3 local log = require "util.logger".init("componentmanager")
|
|
4 local jid_split = require "util.jid".split;
|
|
5 local hosts = hosts;
|
|
6
|
|
7 local components = {};
|
|
8
|
|
9 module "componentmanager"
|
|
10
|
|
11 function handle_stanza(origin, stanza)
|
|
12 local node, host = jid_split(stanza.attr.to);
|
|
13 local component = components[host];
|
|
14 if not component then component = components[node.."@"..host]; end -- hack to allow hooking node@server
|
|
15 if not component then component = components[stanza.attr.to]; end -- hack to allow hooking node@server/resource and server/resource
|
|
16 if component then
|
|
17 log("debug", "stanza being handled by component: "..host);
|
|
18 component(origin, stanza);
|
|
19 else
|
|
20 log("error", "Component manager recieved a stanza for a non-existing component: " .. stanza.attr.to);
|
|
21 end
|
|
22 end
|
|
23
|
|
24 function register_component(host, component)
|
|
25 if not hosts[host] then
|
|
26 -- TODO check for host well-formedness
|
|
27 components[host] = component;
|
|
28 hosts[host] = {type = "component", connected = true};
|
|
29 log("debug", "component added: "..host);
|
|
30 else
|
|
31 log("error", "Attempt to set component for existing host: "..host);
|
|
32 end
|
|
33 end
|
|
34
|
|
35 return _M; |