aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_muc_unique.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2014-04-17 09:01:32 +0100
committerMatthew Wild <mwild1@gmail.com>2014-04-17 09:01:32 +0100
commit15afafe5d2fc4a3005ae6486a0dff2de69f318a8 (patch)
treed211f7dccc40e132ca2b147f4ba13d38f92dbfc5 /plugins/mod_muc_unique.lua
parent499cb87234e01044440591b90c8eb46e63d1e01a (diff)
parentf7642cdf7a2f8c4462b476fbb43eced7fcd52a28 (diff)
downloadprosody-15afafe5d2fc4a3005ae6486a0dff2de69f318a8.tar.gz
prosody-15afafe5d2fc4a3005ae6486a0dff2de69f318a8.zip
Merge with daurnimator
Diffstat (limited to 'plugins/mod_muc_unique.lua')
-rw-r--r--plugins/mod_muc_unique.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/mod_muc_unique.lua b/plugins/mod_muc_unique.lua
new file mode 100644
index 00000000..b27fcff6
--- /dev/null
+++ b/plugins/mod_muc_unique.lua
@@ -0,0 +1,11 @@
+-- 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);