mod_presence: Send unavailable presence when roster items are removed (fixes #331)
[prosody.git] / plugins / mod_presence.lua
index 64d5a47be8b6a9035952e5dd88f70b5d668a8a6a..d4f2f28dff4a4056638514f8612fa8126fe257ac 100644 (file)
@@ -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);
+