plugins/muc/muc.lib.lua
changeset 6457 6842b07fc7bc
parent 6456 14b62ad88d8a
child 6478 3c815a64042b
--- a/plugins/muc/muc.lib.lua	Fri Sep 26 17:43:00 2014 -0400
+++ b/plugins/muc/muc.lib.lua	Fri Sep 26 17:44:14 2014 -0400
@@ -324,6 +324,9 @@
 	local x = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user";})
 		:tag("status", {code = "307"})
 	self:publicise_occupant_status(occupant, x);
+	if occupant.jid == real_jid then -- Was last session
+		module:fire_event("muc-occupant-left", {room = self; nick = occupant.nick; occupant = occupant;});
+	end
 	return true;
 end
 
@@ -1050,7 +1053,9 @@
 	local is_semi_anonymous = self:get_whois() == "moderators";
 	for occupant, old_role in pairs(occupants_updated) do
 		self:publicise_occupant_status(occupant, x, nil, actor, reason);
-		if is_semi_anonymous and
+		if occupant.role == nil then
+			module:fire_event("muc-occupant-left", {room = self; nick = occupant.nick; occupant = occupant;});
+		elseif is_semi_anonymous and
 			(old_role == "moderator" and occupant.role ~= "moderator") or
 			(old_role ~= "moderator" and occupant.role == "moderator") then -- Has gained or lost moderator status
 			-- Send everyone else's presences (as jid visibility has changed)
@@ -1122,6 +1127,9 @@
 	occupant.role = role;
 	self:save_occupant(occupant);
 	self:publicise_occupant_status(occupant, x, nil, actor, reason);
+	if role == nil then
+		module:fire_event("muc-occupant-left", {room = self; nick = occupant.nick; occupant = occupant;});
+	end
 	return true;
 end