mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
11 lines
493 B
Lua
11 lines
493 B
Lua
-- XEP-0307: Unique Room Names for Multi-User Chat
|
|
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()
|
|
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);
|