mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_presence, mod_roster: Move responsibility for sending presence on roster removal to mod_presence
This commit is contained in:
parent
5e64753929
commit
9f6ac546e1
2 changed files with 25 additions and 7 deletions
|
@ -357,3 +357,25 @@ 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
|
||||
core_post_stanza(session, st.presence({type="unsubscribe", from=session.full_jid, to=jid}));
|
||||
end
|
||||
|
||||
end, -1);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue