File

plugins/mod_muc_unique.lua @ 8867:c601c834bf01

MUC: Add support for setting MUC room defaults from the config file Defaults are roughtly like this: muc_rooom_default_public = true muc_rooom_default_persistent = false muc_rooom_default_members_only = false muc_rooom_default_moderated = false muc_rooom_default_public_jids = false muc_rooom_default_change_subject = false muc_room_default_history_length = 20 muc_room_default_language = nil
author Kim Alvefur <zash@zash.se>
date Sun, 03 Jun 2018 14:43:06 +0200
parent 6409:5fd6c739e9bf
child 8878:7c3e16fdaf1d
line wrap: on
line source

-- XEP-0307: Unique Room Names for Multi-User Chat
local st = require "util.stanza";
local uuid_gen = require "util.uuid".generate;
module:add_feature "http://jabber.org/protocol/muc#unique"
module:hook("iq-get/host/http://jabber.org/protocol/muc#unique:unique", function(event)
	local origin, stanza = event.origin, event.stanza;
	origin.send(st.reply(stanza)
		:tag("unique", {xmlns = "http://jabber.org/protocol/muc#unique"})
		:text(uuid_gen()) -- FIXME Random UUIDs can theoretically have collisions
	);
	return true;
end,-1);