Software /
code /
prosody
Comparison
plugins/mod_muc_unique.lua @ 6091:3a1c39b31497
plugins/muc/mod_muc: Move Xep-0307 MUC unique to seperate file
author | daurnimator <quae@daurnimator.com> |
---|---|
date | Tue, 18 Feb 2014 17:21:47 -0500 |
child | 6409:5fd6c739e9bf |
comparison
equal
deleted
inserted
replaced
6017:ac0879a8190a | 6091:3a1c39b31497 |
---|---|
1 -- XEP-0307: Unique Room Names for Multi-User Chat | |
2 local uuid_gen = require "util.uuid".generate; | |
3 module:add_feature "http://jabber.org/protocol/muc#unique" | |
4 module:hook("iq-get/host/http://jabber.org/protocol/muc#unique:unique", function() | |
5 local origin, stanza = event.origin, event.stanza; | |
6 origin.send(st.reply(stanza) | |
7 :tag("unique", {xmlns = "http://jabber.org/protocol/muc#unique"}) | |
8 :text(uuid_gen()) -- FIXME Random UUIDs can theoretically have collisions | |
9 ); | |
10 return true; | |
11 end,-1); |