view mod_muc_restrict_avatars/mod_muc_restrict_avatars.lua @ 6319:04c3273cb81f

mod_auth_cyrus: Add empty 'profile' table to SASL handler objects This is for compatibility with Prosody's built-in util.sasl objects. A SASL profile table usually includes methods supported by the backend, which can be used by SASL mechanism handlers to perform operations (such as testing the password). It also optionally contains a 'cb' field with channel binding method handlers. The Cyrus backend doesn't support channel binding, and doesn't have the same concept of auth backend methods (it handles all that internally, and Prosody has no insight or control over it). Thus, we create an empty profile which informs Prosody that the SASL handler does not support any of the auth or channel binding methods. Some features will not work, but they didn't work anyway. This just makes it explicit. This fixes a traceback in mod_sasl2_fast, which expected SASL handlers to always contain a 'profile' field.
author Matthew Wild <mwild1@gmail.com>
date Thu, 04 Sep 2025 10:14:46 +0100
parents 5b95e06d75d5
children
line wrap: on
line source

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

-- Function to determine if avatar restriction is enabled
local function is_avatar_restriction_enabled(room)
	return room._data.restrict_avatars;
end

-- Add MUC configuration form option for avatar restriction
module:hook("muc-config-form", function(event)
	local room, form = event.room, event.form;
	table.insert(form, {
		name = "restrict_avatars",
		type = "boolean",
		label = "Restrict avatars to members only",
		value = is_avatar_restriction_enabled(room)
	});
end);

-- Handle MUC configuration form submission
module:hook("muc-config-submitted", function(event)
	local room, fields, changed = event.room, event.fields, event.changed;
	local restrict_avatars = fields["restrict_avatars"];

	if room and restrict_avatars ~= is_avatar_restriction_enabled(room) then
		-- Update room settings based on the submitted value
		room._data.restrict_avatars = restrict_avatars;
		-- Mark the configuration as changed
		if type(changed) == "table" then
			changed["restrict_avatars"] = true;
		else
			event.changed = true;
		end
	end
end);

-- Handle presence/full events to filter avatar advertisements
module:hook("presence/full", function(event)
	local stanza = event.stanza;
	local room = mod_muc.get_room_from_jid(bare_jid(stanza.attr.to));
	if room and not room:get_affiliation(stanza.attr.from) then
		if is_avatar_restriction_enabled(room) then
			stanza:maptags(filter_avatar_advertisement);
		end
	end
end, 1);