File

plugins/mod_muc_unique.lua @ 8809:6cba2df3817c

util.pubsub: Don't record the superuser as owner on creation No need to be set as owner, it has all privileges anyways. Since it’s a boolean instead of a string, its presence may cause weirdness in other code expecting all affiliations to be string JIDs.
author Kim Alvefur <zash@zash.se>
date Sun, 20 May 2018 03:27:02 +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);