mod_muc_restrict_avatars/mod_muc_restrict_avatars.lua
author Kim Alvefur <zash@zash.se>
Tue, 05 Mar 2024 00:32:00 +0100
changeset 5862 761142ee0ff2
parent 5653 2c69577b28c2
child 5885 66e7d46b1d4b
permissions -rw-r--r--
mod_http_oauth2: Reflect changes to defaults etc - Resource owner password grant was disabled by default - Tokens now include a hash of client_id making it possible to be reasonable sure that they were issued to a particular client

local bare_jid = require"util.jid".bare;
local mod_muc = module:depends("muc");

local function filter_avatar_advertisement(tag)
	if tag.attr.xmlns == "vcard-temp:x:update" then
		return nil;
	end

	return tag;
end

module:hook("presence/full", function(event)
	local stanza = event.stanza;
	local room = mod_muc.get_room_from_jid(bare_jid(stanza.attr.to));

	if not room:get_affiliation(stanza.attr.from) then
		stanza:maptags(filter_avatar_advertisement);
	end
end, 1);