diff options
author | daurnimator <quae@daurnimator.com> | 2014-02-18 17:21:47 -0500 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2014-02-18 17:21:47 -0500 |
commit | f7f9aaee30c452d00f1f0ad721e8669c203e2171 (patch) | |
tree | 3223966b94687f7f15427e9bd092daa03b487398 /plugins/mod_muc_unique.lua | |
parent | a0ece01720887a029783f813da186d624aa41ba8 (diff) | |
download | prosody-f7f9aaee30c452d00f1f0ad721e8669c203e2171.tar.gz prosody-f7f9aaee30c452d00f1f0ad721e8669c203e2171.zip |
plugins/muc/mod_muc: Move Xep-0307 MUC unique to seperate file
Diffstat (limited to 'plugins/mod_muc_unique.lua')
-rw-r--r-- | plugins/mod_muc_unique.lua | 11 |
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); |