mod_disco: Handle disco#items queries using new APIs

Tue, 18 Aug 2009 12:39:00 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Tue, 18 Aug 2009 12:39:00 +0500
changeset 1701
ceab61010f87
parent 1700
255935c7a915
child 1702
0e56819ee51b

mod_disco: Handle disco#items queries using new APIs

plugins/mod_disco.lua file | annotate | diff | comparison | revisions
--- 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);

mercurial