# HG changeset patch # User Kim Alvefur # Date 1345851065 -7200 # Node ID 39eb688e106a89c73af441cd4598783f7752a809 # Parent fca8b5946f6fb749157db6cf21a7680a3c3283c6 mod_roster: When an user is deleted, unsubscribe from their contacts diff -r fca8b5946f6f -r 39eb688e106a plugins/mod_roster.lua --- a/plugins/mod_roster.lua Sat Aug 25 01:29:38 2012 +0200 +++ b/plugins/mod_roster.lua Sat Aug 25 01:31:05 2012 +0200 @@ -15,6 +15,7 @@ local tonumber = tonumber; local pairs, ipairs = pairs, ipairs; +local rm_load_roster = require "core.rostermanager".load_roster; local rm_remove_from_roster = require "core.rostermanager".remove_from_roster; local rm_add_to_roster = require "core.rostermanager".add_to_roster; local rm_roster_push = require "core.rostermanager".roster_push; @@ -137,3 +138,20 @@ end return true; end); + +module:hook_global("user-deleted", function(event) + local username, host = event.username, event.host; + if host ~= module.host then return end + local bare = username .. "@" .. host; + local roster = rm_load_roster(username, host); + for jid, item in pairs(roster) do + if jid and jid ~= "pending" then + if item.subscription == "both" or item.subscription == "from" or (roster.pending and roster.pending[jid]) then + module:send(st.presence({type="unsubscribed", from=bare, to=jid})); + end + if item.subscription == "both" or item.subscription == "to" or item.ask then + module:send(st.presence({type="unsubscribe", from=bare, to=jid})); + end + end + end +end, 300);