diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-07-09 17:46:23 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-07-09 17:46:23 +0100 |
commit | 17c737429aca80bb3e2b50f69b44db443d2f3de3 (patch) | |
tree | 64e2b793ddebdd8a37fd4cf68e249e1bafcc00e7 /plugins | |
parent | 5254cb329df8005893001df0767d6df8f210c889 (diff) | |
download | prosody-17c737429aca80bb3e2b50f69b44db443d2f3de3.tar.gz prosody-17c737429aca80bb3e2b50f69b44db443d2f3de3.zip |
MUC: Bring handling of presence errors to the room more in line with unavailable presence
Related issues: #505, #978
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/muc.lib.lua | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index fe3b7c93..58853e66 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -221,7 +221,7 @@ function room_mt:publicise_occupant_status(occupant, x, nick, actor, reason) local base_presence do -- Try to use main jid's presence local pr = occupant:get_presence(); - if pr and (pr.attr.type ~= "unavailable" and occupant.role ~= nil) then + if pr and (occupant.role ~= nil or pr.attr.type == "unavailable") then base_presence = st.clone(pr); else -- user is leaving but didn't send a leave presence. make one for them base_presence = st.presence {from = occupant.nick; type = "unavailable";}; @@ -369,12 +369,18 @@ function room_mt:handle_kickable(origin, stanza) -- luacheck: ignore 212 end occupant:set_session(real_jid, st.presence({type="unavailable"}) :tag('status'):text(error_message)); - self:save_occupant(occupant); - local x = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user";}) - :tag("status", {code = "307"}):up() - :tag("status", {code = "333"}) - self:publicise_occupant_status(occupant, x); - if occupant.jid == real_jid then -- Was last session + local is_last_session = occupant.jid == real_jid; + if is_last_session then + occupant.role = nil; + end + local new_occupant = self:save_occupant(occupant); + local x = st.stanza("x", {xmlns = "http://jabber.org/protocol/muc#user";}); + if is_last_session then + x:tag("status", {code = "307"}):up() + :tag("status", {code = "333"}); + end + self:publicise_occupant_status(new_occupant or occupant, x); + if is_last_session then module:fire_event("muc-occupant-left", {room = self; nick = occupant.nick; occupant = occupant;}); end return true; |