Software /
code /
prosody
Changeset
1701:ceab61010f87
mod_disco: Handle disco#items queries using new APIs
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Tue, 18 Aug 2009 12:39:00 +0500 |
parents | 1700:255935c7a915 |
children | 1702:0e56819ee51b |
files | plugins/mod_disco.lua |
diffstat | 1 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_disco.lua Tue Aug 18 12:38:28 2009 +0500 +++ b/plugins/mod_disco.lua Tue Aug 18 12:39:00 2009 +0500 @@ -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 @@ 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);