mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_vcard: Moved completely to new event based hooks.
This commit is contained in:
parent
17a29f5158
commit
77412b780c
1 changed files with 6 additions and 3 deletions
|
@ -21,7 +21,8 @@ local xmlns_vcard = "vcard-temp";
|
||||||
|
|
||||||
module:add_feature(xmlns_vcard);
|
module:add_feature(xmlns_vcard);
|
||||||
|
|
||||||
function handle_vcard(session, stanza)
|
function handle_vcard(event)
|
||||||
|
local session, stanza = event.origin, event.stanza;
|
||||||
if stanza.tags[1].name == "vCard" then
|
if stanza.tags[1].name == "vCard" then
|
||||||
local to = stanza.attr.to;
|
local to = stanza.attr.to;
|
||||||
if stanza.attr.type == "get" then
|
if stanza.attr.type == "get" then
|
||||||
|
@ -55,7 +56,9 @@ function handle_vcard(session, stanza)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
module:add_iq_handler({"c2s", "s2sin", "component"}, xmlns_vcard, handle_vcard);
|
--module:add_iq_handler({"c2s", "s2sin", "component"}, xmlns_vcard, handle_vcard);
|
||||||
|
module:hook("iq/bare/vcard-temp:vCard", handle_vcard);
|
||||||
|
module:hook("iq/host/vcard-temp:vCard", handle_vcard);
|
||||||
|
|
||||||
-- COMPAT: https://support.process-one.net/browse/EJAB-1045
|
-- COMPAT: https://support.process-one.net/browse/EJAB-1045
|
||||||
if module:get_option("vcard_compatibility") then
|
if module:get_option("vcard_compatibility") then
|
||||||
|
@ -63,7 +66,7 @@ if module:get_option("vcard_compatibility") then
|
||||||
local stanza = data.stanza;
|
local stanza = data.stanza;
|
||||||
if stanza.attr.type == "get" and stanza.tags[1]
|
if stanza.attr.type == "get" and stanza.tags[1]
|
||||||
and stanza.tags[1].attr.xmlns == xmlns_vcard then
|
and stanza.tags[1].attr.xmlns == xmlns_vcard then
|
||||||
return handle_vcard(data.origin, stanza);
|
return handle_vcard(data);
|
||||||
end
|
end
|
||||||
end, 1);
|
end, 1);
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue