mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_vcard_legacy: Add support for JABBERID - impp/uri conversion
This commit is contained in:
parent
6e624e01c6
commit
03acf1ffe1
1 changed files with 9 additions and 0 deletions
|
@ -105,6 +105,11 @@ module:hook("iq-get/bare/vcard-temp:vCard", function (event)
|
|||
vcard_temp:tag("WORK"):up();
|
||||
end
|
||||
vcard_temp:up();
|
||||
elseif tag.name == "impp" then
|
||||
local uri = tag:get_child_text("uri");
|
||||
if uri and uri:sub(1, 5) == "xmpp:" then
|
||||
vcard_temp:text_tag("JABBERID", uri:sub(6))
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -216,6 +221,10 @@ function vcard_to_pep(vcard_temp)
|
|||
vcard4:text_tag("text", "work");
|
||||
end
|
||||
vcard4:up():up():up();
|
||||
elseif tag.name == "JABBERID" then
|
||||
vcard4:tag("impp")
|
||||
:text_tag("uri", "xmpp:" .. tag:get_text())
|
||||
:up();
|
||||
elseif tag.name == "PHOTO" then
|
||||
local avatar_type = tag:get_child_text("TYPE");
|
||||
local avatar_payload = tag:get_child_text("BINVAL");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue