aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-03-09 02:10:44 +0100
committerKim Alvefur <zash@zash.se>2018-03-09 02:10:44 +0100
commitfdfa7a51fa63176198c5edd355ab8de75cf375a6 (patch)
tree288f3fd2cd77deeb0b009adac5ac4b52c777b7c1 /plugins
parentcb9c562f0bd2fa155d9e0155248675d3d6874593 (diff)
downloadprosody-fdfa7a51fa63176198c5edd355ab8de75cf375a6.tar.gz
prosody-fdfa7a51fa63176198c5edd355ab8de75cf375a6.zip
MUC: Prevent creation of room that could not be loaded from storage (see #1091)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/muc/mod_muc.lua10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua
index bccd8915..b32515e8 100644
--- a/plugins/muc/mod_muc.lua
+++ b/plugins/muc/mod_muc.lua
@@ -112,15 +112,21 @@ end
local persistent_errors = false;
for jid in pairs(persistent_rooms) do
local node = jid_split(jid);
- local data = room_configs:get(node);
+ local data, err = room_configs:get(node);
if data then
local room = create_room(jid);
room._data = data._data;
room._affiliations = data._affiliations;
- else -- missing room data
+ elseif not err then -- missing room data
persistent_rooms[jid] = nil;
module:log("error", "Missing data for room '%s', removing from persistent room list", jid);
persistent_errors = true;
+ else -- error
+ module:log("error", "Error loading data for room '%s', locking it until service restart. Error was: %s", jid, err);
+ local room = muc_new_room(jid);
+ room.locked = true;
+ room._affiliations = { [muc_host] = "owner" }; -- To prevent unlocking
+ rooms[jid] = room;
end
end
if persistent_errors then persistent_rooms_storage:set(nil, persistent_rooms); end