Mercurial > prosody-hg
view plugins/mod_muc_unique.lua @ 6253:2df9e7a67e56
plugins/muc/muc.lib: Even unavailable session need to be routed to sometimes (e.g. their own leave)
| author | daurnimator <quae@daurnimator.com> |
|---|---|
| date | Wed, 21 May 2014 13:19:57 -0400 |
| parents | 3a1c39b31497 |
| children | 5fd6c739e9bf |
line wrap: on
line source
-- 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);
