mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
MUC: Add support for storing a tombstone for destroyed rooms (#1182)
This commit is contained in:
parent
df4c41752c
commit
85fa97aa78
2 changed files with 43 additions and 0 deletions
1
CHANGES
1
CHANGES
|
@ -10,6 +10,7 @@ New features
|
||||||
- Store inactive rooms to disk
|
- Store inactive rooms to disk
|
||||||
- Store rooms to disk on shutdown
|
- Store rooms to disk on shutdown
|
||||||
- Voice requests
|
- Voice requests
|
||||||
|
- Tombstones in place of destroyed rooms
|
||||||
- PubSub features
|
- PubSub features
|
||||||
- Persistence
|
- Persistence
|
||||||
- Affiliations
|
- Affiliations
|
||||||
|
|
|
@ -323,6 +323,29 @@ module:hook("muc-room-destroyed",function(event)
|
||||||
delete_room(room);
|
delete_room(room);
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
if module:get_option_boolean("muc_tombstones", true) then
|
||||||
|
|
||||||
|
local ttl = module:get_option_number("muc_tombstone_expiry", 86400 * 31);
|
||||||
|
|
||||||
|
module:hook("muc-room-destroyed",function(event)
|
||||||
|
local room = event.room;
|
||||||
|
if not room:get_persistent() then return end
|
||||||
|
|
||||||
|
local tombstone = new_room(room.jid, {
|
||||||
|
locked = os.time() + ttl;
|
||||||
|
destroyed = true;
|
||||||
|
reason = event.reason;
|
||||||
|
newjid = event.newjid;
|
||||||
|
-- password?
|
||||||
|
});
|
||||||
|
tombstone.save = room_save;
|
||||||
|
tombstone:set_persistent(true);
|
||||||
|
tombstone:set_hidden(true);
|
||||||
|
tombstone:save(true);
|
||||||
|
return true;
|
||||||
|
end, -10);
|
||||||
|
end
|
||||||
|
|
||||||
do
|
do
|
||||||
local restrict_room_creation = module:get_option("restrict_room_creation");
|
local restrict_room_creation = module:get_option("restrict_room_creation");
|
||||||
if restrict_room_creation == true then
|
if restrict_room_creation == true then
|
||||||
|
@ -372,6 +395,25 @@ for event_name, method in pairs {
|
||||||
local origin, stanza = event.origin, event.stanza;
|
local origin, stanza = event.origin, event.stanza;
|
||||||
local room_jid = jid_bare(stanza.attr.to);
|
local room_jid = jid_bare(stanza.attr.to);
|
||||||
local room = get_room_from_jid(room_jid);
|
local room = get_room_from_jid(room_jid);
|
||||||
|
|
||||||
|
if room and room._data.destroyed then
|
||||||
|
if stanza.attr.type == nil and stanza.name == "presence" then
|
||||||
|
if room._data.locked < os.time() then
|
||||||
|
-- Allow the room to be recreated after time has passed
|
||||||
|
delete_room(room);
|
||||||
|
room = nil;
|
||||||
|
else
|
||||||
|
local reply = st.reply(stanza)
|
||||||
|
:tag("x", {xmlns = "http://jabber.org/protocol/muc#user"})
|
||||||
|
:tag("item", { affiliation='none', role='none' }):up()
|
||||||
|
:tag("destroy", {jid=room._data.newjid}):text(room._data.reason);
|
||||||
|
reply.attr.type = "unavailable";
|
||||||
|
event.origin.send(reply);
|
||||||
|
return true;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
if room == nil then
|
if room == nil then
|
||||||
-- Watch presence to create rooms
|
-- Watch presence to create rooms
|
||||||
if stanza.attr.type == nil and stanza.name == "presence" then
|
if stanza.attr.type == nil and stanza.name == "presence" then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue