Software /
code /
prosody
Diff
plugins/mod_presence.lua @ 7331:c8ad387aab1c
mod_presence, mod_roster: Move responsibility for sending presence on roster removal to mod_presence
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 04 Apr 2016 17:15:10 +0200 |
parent | 7281:21da137d83b0 |
child | 7332:ba32289e8d0b |
line wrap: on
line diff
--- a/plugins/mod_presence.lua Sun Apr 03 15:52:40 2016 +0200 +++ b/plugins/mod_presence.lua Mon Apr 04 17:15:10 2016 +0200 @@ -357,3 +357,25 @@ session.directed = nil; end end); + +module:hook("roster-item-removed", function (event) + local username = event.username; + local session = event.origin; + local roster = event.roster or session and session.roster; + local jid = event.jid; + local item = event.item; + + local subscription = item and item.subscription or "none"; + local ask = item and item.ask; + local pending = roster and roster[false].pending[jid]; + + if subscription == "both" or subscription == "from" or pending then + core_post_stanza(session, st.presence({type="unsubscribed", from=session.full_jid, to=jid})); + end + + if subscription == "both" or subscription == "to" or ask then + core_post_stanza(session, st.presence({type="unsubscribe", from=session.full_jid, to=jid})); + end + +end, -1); +