aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_muc_unique.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-09-11 01:17:56 +0200
committerKim Alvefur <zash@zash.se>2014-09-11 01:17:56 +0200
commit43df3959ab0c8801cb39c1d7eba96af8a3785064 (patch)
tree147e215854eea3b4657112876b5c45863c73acc8 /plugins/mod_muc_unique.lua
parentf41908a42c7e4f8397b52536e5e32c771b07a096 (diff)
parent534a115ec7aff123fa3358c500554d02b247e4a8 (diff)
downloadprosody-43df3959ab0c8801cb39c1d7eba96af8a3785064.tar.gz
prosody-43df3959ab0c8801cb39c1d7eba96af8a3785064.zip
Merge 0.10->trunk
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);