Software /
code /
prosody
Diff
plugins/muc/mod_muc.lua @ 5808:026367992a0f
mod_muc: Support for locking newly-created rooms until they are configured (enabled with muc_room_locking = true)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 30 Aug 2013 14:15:29 +0100 |
parent | 5807:d7212bd61b60 |
child | 5939:56d81af64fc5 |
line wrap: on
line diff
--- a/plugins/muc/mod_muc.lua Fri Aug 30 14:10:51 2013 +0100 +++ b/plugins/muc/mod_muc.lua Fri Aug 30 14:15:29 2013 +0100 @@ -23,6 +23,9 @@ restrict_room_creation = nil; end end +local lock_rooms = module:get_option_boolean("muc_room_locking", false); +local lock_room_timeout = module:get_option_number("muc_room_lock_timeout", 300); + local muclib = module:require "muc"; local muc_new_room = muclib.new_room; local jid_split = require "util.jid".split; @@ -88,6 +91,16 @@ room.route_stanza = room_route_stanza; room.save = room_save; rooms[jid] = room; + if lock_rooms then + room.locked = true; + if lock_room_timeout and lock_room_timeout > 0 then + module:add_timer(lock_room_timeout, function () + if room.locked then + room:destroy(); -- Not unlocked in time + end + end); + end + end module:fire_event("muc-room-created", { room = room }); return room; end