Software /
code /
prosody
File
plugins/mod_muc_unique.lua @ 6482:410067cdeb2f
net/server: If server.hook_signal exists, overwrite signal.signal; else make server.hook_signal == signal.signal
No longer server_event specific
server.hook_signal will always exist
author | daurnimator <quae@daurnimator.com> |
---|---|
date | Tue, 21 Oct 2014 17:26:48 -0400 |
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);