# HG changeset patch # User Matthew Wild # Date 1292592209 0 # Node ID 3bfb65496773903a98d91d4d5541635fee2a338a # Parent 1f7305784e122c4d2a284a434326a4524e90a4c3 mod_pubsub: Handle disco#info and disco#items diff -r 1f7305784e12 -r 3bfb65496773 plugins/mod_pubsub.lua --- a/plugins/mod_pubsub.lua Fri Dec 17 13:23:01 2010 +0000 +++ b/plugins/mod_pubsub.lua Fri Dec 17 13:23:29 2010 +0000 @@ -166,6 +166,30 @@ module:hook("iq/host/http://jabber.org/protocol/pubsub:pubsub", handle_pubsub_iq); +local disco_info = st.stanza("query", { xmlns = "http://jabber.org/protocol/disco#info" }) + :tag("identity", { category = "pubsub", type = "service" }):up() + :tag("feature", { var = "http://jabber.org/protocol/pubsub" }):up(); + +module:hook("iq-get/host/http://jabber.org/protocol/disco#info:query", function (event) + event.origin.send(st.reply(event.stanza):add_child(disco_info)); + return true; +end); + +module:hook("iq-get/host/http://jabber.org/protocol/disco#items:query", function (event) + local ok, ret = service:get_nodes(event.stanza.attr.from); + if not ok then + event.origin.send(pubsub_error_reply(stanza, ret)); + else + local reply = st.reply(event.stanza) + :tag("query", { xmlns = "http://jabber.org/protocol/disco#items" }); + for node, node_obj in pairs(ret) do + reply:tag("item", { jid = module.host, node = node, name = node_obj.config.name }):up(); + end + event.origin.send(reply); + end + return true; +end); + service = pubsub.new({ broadcaster = simple_broadcast });