# HG changeset patch # User Waqas Hussain # Date 1343766982 -18000 # Node ID 88e198d65905dd6d2e1ee98823f2da4882cce1c2 # Parent 186f34d880736eaa634c77173b997735dc8ef565 MUC: Send unavailable presence when the component or server is shutting down. diff -r 186f34d88073 -r 88e198d65905 plugins/muc/mod_muc.lua --- a/plugins/muc/mod_muc.lua Wed Aug 01 01:36:19 2012 +0500 +++ b/plugins/muc/mod_muc.lua Wed Aug 01 01:36:22 2012 +0500 @@ -178,7 +178,9 @@ hosts[module:get_host()].muc = { rooms = rooms }; +local saved = false; module.save = function() + saved = true; return {rooms = rooms}; end module.restore = function(data) @@ -194,3 +196,28 @@ end hosts[module:get_host()].muc = { rooms = rooms }; end + +function shutdown_room(room, stanza) + for nick, occupant in pairs(room._occupants) do + stanza.attr.from = nick; + for jid in pairs(occupant.sessions) do + stanza.attr.to = jid; + room:_route_stanza(stanza); + room._jid_nick[jid] = nil; + end + room._occupants[nick] = nil; + end +end +function shutdown_component() + if not saved then + local stanza = st.presence({type = "unavailable"}) + :tag("x", {xmlns = "http://jabber.org/protocol/muc#user"}) + :tag("item", { affiliation='none', role='none' }):up(); + for roomjid, room in pairs(rooms) do + shutdown_room(room, stanza); + end + shutdown_room(host_room, stanza); + end +end +module.unload = shutdown_component; +module:hook_global("server-stopping", shutdown_component);