mod_vcard: Some support for handling vcards on components

This commit is contained in:
Matthew Wild 2025-02-06 17:03:03 +00:00
parent eac45d938a
commit 839498eb5d

View file

@ -7,6 +7,7 @@
-- --
local base64 = require "prosody.util.encodings".base64; local base64 = require "prosody.util.encodings".base64;
local jid = require "prosody.util.jid";
local sha1 = require "prosody.util.hashes".sha1; local sha1 = require "prosody.util.hashes".sha1;
local st = require "prosody.util.stanza" local st = require "prosody.util.stanza"
local jid_split = require "prosody.util.jid".split; local jid_split = require "prosody.util.jid".split;
@ -15,6 +16,8 @@ local vcards = module:open_store();
module:add_feature("vcard-temp"); module:add_feature("vcard-temp");
local is_component = module:get_host_type() == "component";
local function handle_vcard(event) local function handle_vcard(event)
local session, stanza = event.origin, event.stanza; local session, stanza = event.origin, event.stanza;
local to = stanza.attr.to; local to = stanza.attr.to;
@ -23,7 +26,7 @@ local function handle_vcard(event)
if to then if to then
local node = jid_split(to); local node = jid_split(to);
vCard = st.deserialize(vcards:get(node)); -- load vCard for user or server vCard = st.deserialize(vcards:get(node)); -- load vCard for user or server
else elseif not is_component then
vCard = st.deserialize(vcards:get(session.username));-- load user's own vCard vCard = st.deserialize(vcards:get(session.username));-- load user's own vCard
end end
if vCard then if vCard then
@ -32,8 +35,9 @@ local function handle_vcard(event)
session.send(st.error_reply(stanza, "cancel", "item-not-found")); session.send(st.error_reply(stanza, "cancel", "item-not-found"));
end end
else -- stanza.attr.type == "set" else -- stanza.attr.type == "set"
if not to then if not to or (is_component and event.allow_vcard_modification) then
if vcards:set(session.username, st.preserialize(stanza.tags[1])) then local node = is_component and jid.node(stanza.attr.to) or session.username;
if vcards:set(node, st.preserialize(stanza.tags[1])) then
session.send(st.reply(stanza)); session.send(st.reply(stanza));
module:fire_event("vcard-updated", event); module:fire_event("vcard-updated", event);
else else