# HG changeset patch # User Waqas Hussain # Date 1250581140 -18000 # Node ID ceab61010f8727c3aa26a996b7beb9ce0f57faed # Parent 255935c7a9155b6534bd63a178812b0725edab28 mod_disco: Handle disco#items queries using new APIs diff -r 255935c7a915 -r ceab61010f87 plugins/mod_disco.lua --- 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);