Software /
code /
prosody
Comparison
plugins/mod_muc_unique.lua @ 6145:69bc9dfcbd89
Merge daurnimator->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 21 Apr 2014 17:42:44 +0100 |
parent | 6091:3a1c39b31497 |
child | 6409:5fd6c739e9bf |
comparison
equal
deleted
inserted
replaced
6090:61403eb023bf | 6145:69bc9dfcbd89 |
---|---|
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); |