mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_iq: Fire sub-events for iq/self events.
This commit is contained in:
parent
80c27c9e79
commit
e6ee9308ba
1 changed files with 12 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue