Software /
code /
prosody
File
plugins/mod_muc_unique.lua @ 6211:a4d26656df04
plugins/muc/muc.lib: Clean up whois handling
- adds functions `can_see_real_jids` and `get_base_presence`
- In `publicise_occupant_status`, we don't generate each type of presence until it's used
author | daurnimator <quae@daurnimator.com> |
---|---|
date | Thu, 03 Apr 2014 12:25:03 -0400 |
parent | 6091:3a1c39b31497 |
child | 6409: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);