mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Inbound subscription request
This commit is contained in:
parent
2ab824859d
commit
9bd8c81c91
2 changed files with 16 additions and 1 deletions
|
@ -135,4 +135,10 @@ function process_inbound_unsubscribe(username, host, jid)
|
|||
end
|
||||
end
|
||||
|
||||
function is_contact_subscribed(username, host, jid)
|
||||
local roster = load_roster(username, host);
|
||||
local item = roster[jid];
|
||||
return item and (item.subscription == "from" or item.subscription == "both");
|
||||
end
|
||||
|
||||
return _M;
|
|
@ -207,7 +207,16 @@ function core_route_stanza(origin, stanza)
|
|||
send(origin, st.presence({from=to_bare, to=from_bare, type="unsubscribed"}));
|
||||
end
|
||||
elseif stanza.attr.type == "subscribe" then
|
||||
-- TODO
|
||||
if rostermanager.is_contact_subscribed(node, host, from_bare) then
|
||||
send(origin, st.presence(from=to_bare, to=from_bare, type="subscribed")); -- already subscribed
|
||||
else
|
||||
local pres = st.presence({from=from_bare}, type="subscribe");
|
||||
for k in pairs(user.sessions) do -- return presence for all resources
|
||||
if user.sessions[k].presence then
|
||||
send(user.sessions[k], pres);
|
||||
end
|
||||
end
|
||||
end
|
||||
elseif stanza.attr.type == "unsubscribe" then
|
||||
if rostermanager.process_inbound_unsubscribe(node, host, from_bare) then
|
||||
rostermanager.roster_push(node, host, from_bare);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue