From 314a838f12ddcffb29182ec932dedee5e408b34c Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Fri, 26 Jun 2009 18:45:54 +0500 Subject: mod_pep: Added handler for disco responses --- plugins/mod_pep.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'plugins/mod_pep.lua') diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 2ba2f8b0..38572f91 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -91,3 +91,16 @@ module:hook("iq/bare/http://jabber.org/protocol/pubsub:pubsub", function(event) end end); +module:hook("iq/bare/disco", function(event) + local session, stanza = event.origin, event.stanza; + if stanza.attr.type == "result" then + local disco = stanza.tags[1]; + if disco and disco.name == "query" and disco.attr.xmlns == "http://jabber.org/protocol/disco#info" then + -- Process disco response + -- TODO check if waiting for recipient's response + local hash; -- TODO calculate hash + -- TODO update hash map + -- TODO set recipient's data to calculated data + end + end +end); -- cgit v1.2.3