Software /
code /
prosody
Changeset
9250:9a8006f9e983
mod_vcard_legacy: Attach vcard-temp avatar hash to outgoing presence
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 20 Aug 2018 07:36:03 +0200 |
parents | 9249:506aabdb13bc |
children | 9251:3f31e10e8256 |
files | plugins/mod_vcard_legacy.lua |
diffstat | 1 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_vcard_legacy.lua Tue Aug 21 16:40:40 2018 +0200 +++ b/plugins/mod_vcard_legacy.lua Mon Aug 20 07:36:03 2018 +0200 @@ -53,3 +53,22 @@ origin.send(st.reply(stanza):add_child(vcard_temp)); return true; end); + +local function inject_xep153(event) + local origin, stanza = event.origin, event.stanza; + local username = origin.username; + if not username then return end + local pep = mod_pep.get_pep_service(username); + + stanza:remove_children("x", "vcard-temp:x:update"); + local x_update = st.stanza("x", { xmlns = "vcard-temp:x:update" }); + local ok, avatar_hash = pep:get_last_item("urn:xmpp:avatar:metadata", true); + if ok and avatar_hash then + x_update:text_tag("photo", avatar_hash); + end + stanza:add_direct_child(x_update); +end + +module:hook("pre-presence/full", inject_xep153, 1); +module:hook("pre-presence/bare", inject_xep153, 1); +module:hook("pre-presence/host", inject_xep153, 1);