mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_pep: Wipe pubsub service on user deletion
Data is already wiped from storage, but this ensures everything is properly unsubscribed, possibly with notifications etc. Clears recipient cache as well, since it is no longer relevant.
This commit is contained in:
parent
db0e630ad7
commit
ca08584d74
1 changed files with 15 additions and 0 deletions
|
@ -467,3 +467,18 @@ module:hook("account-disco-items", function(event)
|
|||
reply:tag("item", { jid = user_bare, node = node, name = node_obj.config.title }):up();
|
||||
end
|
||||
end);
|
||||
|
||||
module:hook_global("user-deleted", function(event)
|
||||
if event.host ~= host then return end
|
||||
local username = event.username;
|
||||
local service = services[username];
|
||||
if not service then return end
|
||||
for node in pairs(service.nodes) do service:delete(node, true); end
|
||||
|
||||
local item = pep_service_items[username];
|
||||
pep_service_items[username] = nil;
|
||||
if item then module:remove_item("pep-service", item); end
|
||||
|
||||
recipients[username] = nil;
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue