diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-08-18 12:39:00 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-08-18 12:39:00 +0500 |
commit | 18d8c7ecfdf6f5fd19f12bea0226b8a1944b4315 (patch) | |
tree | 9f25aafe7580abb8a47b70a9669026d067305617 | |
parent | 444cc01f25d3c421afd03651c57ecac62b925598 (diff) | |
download | prosody-18d8c7ecfdf6f5fd19f12bea0226b8a1944b4315.tar.gz prosody-18d8c7ecfdf6f5fd19f12bea0226b8a1944b4315.zip |
mod_disco: Handle disco#items queries using new APIs
-rw-r--r-- | plugins/mod_disco.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/mod_disco.lua b/plugins/mod_disco.lua index 15c6a2ff..73e1921a 100644 --- a/plugins/mod_disco.lua +++ b/plugins/mod_disco.lua @@ -7,6 +7,7 @@ -- local discomanager_handle = require "core.discomanager".handle; +local componentmanager_get_children = require "core.componentmanager".get_children; module:add_feature("http://jabber.org/protocol/disco#info"); module:add_feature("http://jabber.org/protocol/disco#items"); @@ -44,3 +45,16 @@ module:hook("iq/host/http://jabber.org/protocol/disco#info:query", function(even origin.send(reply); return true; end); +module:hook("iq/host/http://jabber.org/protocol/disco#items:query", function(event) + local origin, stanza = event.origin, event.stanza; + if stanza.attr.type ~= "get" then return; end + local node = stanza.tags[1].attr.node; + if node and node ~= "" then return; end -- TODO fire event? + + local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#items"); + for jid in pairs(componentmanager_get_children(module.host)) do + reply:tag("item", {jid = jid}):up(); + end + origin.send(reply); + return true; +end); |