mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
rostermanager, mod_presence: Store stanza for incoming subscription requests (fixes #689) (thanks Zash, Ge0rG)
This commit is contained in:
parent
c295aedbfe
commit
3836d03c37
2 changed files with 8 additions and 6 deletions
|
@ -80,8 +80,10 @@ function handle_normal_presence(origin, stanza)
|
|||
res.presence.attr.to = nil;
|
||||
end
|
||||
end
|
||||
for jid in pairs(roster[false].pending) do -- resend incoming subscription requests
|
||||
origin.send(st.presence({type="subscribe", from=jid})); -- TODO add to attribute? Use original?
|
||||
for jid, pending_request in pairs(roster[false].pending) do -- resend incoming subscription requests
|
||||
local subscribe = st.clone(st.deserialize(pending_request));
|
||||
subscribe.attr.type, subscribe.attr.from = "subscribe", jid;
|
||||
origin.send(subscribe);
|
||||
end
|
||||
local request = st.presence({type="subscribe", from=origin.username.."@"..origin.host});
|
||||
for jid, item in pairs(roster) do -- resend outgoing subscription requests
|
||||
|
@ -225,7 +227,7 @@ function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_b
|
|||
else
|
||||
core_post_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"}), true); -- acknowledging receipt
|
||||
if not rostermanager.is_contact_pending_in(node, host, from_bare) then
|
||||
if rostermanager.set_contact_pending_in(node, host, from_bare) then
|
||||
if rostermanager.set_contact_pending_in(node, host, from_bare, stanza) then
|
||||
sessionmanager.send_to_available_resources(node, host, stanza);
|
||||
end -- TODO else return error, unable to save
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue