1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
-- Prosody IM v0.3
-- Copyright (C) 2008-2009 Matthew Wild
-- Copyright (C) 2008-2009 Waqas Hussain
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--
local helper = require "util.discohelper".new();
local hosts = hosts;
local jid_split = require "util.jid".split;
local jid_bare = require "util.jid".bare;
local usermanager_user_exists = require "core.usermanager".user_exists;
local rostermanager_is_contact_subscribed = require "core.rostermanager".is_contact_subscribed;
local print = print;
do
helper:addDiscoInfoHandler("*host", function(reply, to, from, node)
if hosts[to] then
reply:tag("identity", {category="server", type="im", name="Prosody"}):up();
return true;
end
end);
helper:addDiscoInfoHandler("*node", function(reply, to, from, node)
local node, host = jid_split(to);
if hosts[host] and rostermanager_is_contact_subscribed(node, host, jid_bare(from)) then
reply:tag("identity", {category="account", type="registered"}):up();
return true;
end
end);
helper:addDiscoItemsHandler("*host", function(reply, to, from, node)
if hosts[to] and hosts[to].type == "local" then
return true;
end
end);
end
module "discomanager"
function handle(stanza)
return helper:handle(stanza);
end
function addDiscoItemsHandler(jid, func)
return helper:addDiscoItemsHandler(jid, func);
end
function addDiscoInfoHandler(jid, func)
return helper:addDiscoInfoHandler(jid, func);
end
function set(plugin, var, origin)
-- TODO handle origin and host based on plugin.
local handler = function(reply, to, from, node) -- service discovery
if #node == 0 then
reply:tag("feature", {var = var}):up();
return true;
end
end
addDiscoInfoHandler("*node", handler);
addDiscoInfoHandler("*host", handler);
end
return _M;
|