Inbound subscription cancellation

This commit is contained in:
Waqas Hussain 2008-10-25 02:29:58 +05:00
parent 17d7c83a71
commit 6c822abf42
2 changed files with 17 additions and 2 deletions

View file

@ -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;

View file

@ -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