mod_iq: Fire sub-events for iq/self events.

This commit is contained in:
Waqas Hussain 2010-02-21 17:43:39 +05:00
parent 80c27c9e79
commit e6ee9308ba

View file

@ -53,6 +53,18 @@ module:hook("iq/bare", function(data)
end
end);
module:hook("iq/self", function(data)
-- IQ to bare JID recieved
local origin, stanza = data.origin, data.stanza;
if stanza.attr.type == "get" or stanza.attr.type == "set" then
return module:fire_event("iq/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
else
module:fire_event("iq/self/"..stanza.attr.id, data);
return true;
end
end);
module:hook("iq/host", function(data)
-- IQ to a local host recieved
local origin, stanza = data.origin, data.stanza;