diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-05 12:48:36 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-05 12:48:36 +0200 |
commit | bac930916798b3c8b3e5e71f11750ec6836b3b41 (patch) | |
tree | 95b6245c2b66f0d5696ba3cb2d43e61ea3a37357 /plugins/mod_presence.lua | |
parent | c1a8a485f70d97442364fa0905a5acefc6be69e0 (diff) | |
parent | c2f007b32e4da5debcf5a14e0059c5351d1c26ce (diff) | |
download | prosody-bac930916798b3c8b3e5e71f11750ec6836b3b41.tar.gz prosody-bac930916798b3c8b3e5e71f11750ec6836b3b41.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_presence.lua')
-rw-r--r-- | plugins/mod_presence.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/mod_presence.lua b/plugins/mod_presence.lua index 64d5a47b..d4f2f28d 100644 --- a/plugins/mod_presence.lua +++ b/plugins/mod_presence.lua @@ -357,3 +357,26 @@ module:hook("resource-unbind", function(event) 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 + send_presence_of_available_resources(username, module.host, jid, session, st.presence({type="unavailable"})); + core_post_stanza(session, st.presence({type="unsubscribe", from=session.full_jid, to=jid})); + end + +end, -1); + |