mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_muc_unique: Use util.id for more compact identifiers
This commit is contained in:
parent
eaffeb7521
commit
037968b57b
1 changed files with 2 additions and 2 deletions
|
@ -1,12 +1,12 @@
|
|||
-- XEP-0307: Unique Room Names for Multi-User Chat
|
||||
local st = require "util.stanza";
|
||||
local uuid_gen = require "util.uuid".generate;
|
||||
local unique_name = require "util.id".medium;
|
||||
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
|
||||
:text(unique_name():lower())
|
||||
);
|
||||
return true;
|
||||
end,-1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue