mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Inbound subscription cancellation
This commit is contained in:
parent
17d7c83a71
commit
6c822abf42
2 changed files with 17 additions and 2 deletions
|
@ -107,4 +107,18 @@ function process_inbound_subscription_approval(username, host, jid)
|
|||
end
|
||||
end
|
||||
|
||||
function process_inbound_subscription_cancellation(username, host, jid)
|
||||
local roster = load_roster(username, host);
|
||||
local item = roster[jid];
|
||||
if item and (item.subscription == "to" or item.subscription == "both") then
|
||||
if item.subscription == "to" then
|
||||
item.subscription = "none";
|
||||
else
|
||||
item.subscription = "from";
|
||||
end
|
||||
-- FIXME do we need to item.ask = nil;?
|
||||
return datamanager.store(username, host, "roster", roster);
|
||||
end
|
||||
end
|
||||
|
||||
return _M;
|
|
@ -211,7 +211,6 @@ function core_route_stanza(origin, stanza)
|
|||
elseif stanza.attr.type == "unsubscribe" then
|
||||
-- TODO
|
||||
elseif stanza.attr.type == "subscribed" then
|
||||
-- TODO
|
||||
if rostermanager.process_inbound_subscription_approval(node, host, from_bare) then
|
||||
rostermanager.roster_push(node, host, from_bare);
|
||||
for k in pairs(user.sessions) do -- return presence for all resources
|
||||
|
@ -226,7 +225,9 @@ function core_route_stanza(origin, stanza)
|
|||
pres.attr.from = nil;
|
||||
end
|
||||
elseif stanza.attr.type == "unsubscribed" then
|
||||
-- TODO
|
||||
if rostermanager.process_inbound_subscription_approval(node, host, from_bare) then
|
||||
rostermanager.roster_push(node, host, from_bare);
|
||||
end
|
||||
end -- discard any other type
|
||||
else -- sender is available or unavailable
|
||||
for k in pairs(user.sessions) do -- presence broadcast to all user resources
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue