mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
Don't send offline messages to resource with negative priorities
This commit is contained in:
parent
26cf54ee8b
commit
c74e3999fb
1 changed files with 19 additions and 16 deletions
|
@ -59,6 +59,15 @@ function handle_normal_presence(origin, stanza)
|
||||||
priority[1] = "0";
|
priority[1] = "0";
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
local priority = stanza:child_with_name("priority");
|
||||||
|
if priority and #priority > 0 then
|
||||||
|
priority = t_concat(priority);
|
||||||
|
if s_find(priority, "^[+-]?[0-9]+$") then
|
||||||
|
priority = tonumber(priority);
|
||||||
|
if priority < -128 then priority = -128 end
|
||||||
|
if priority > 127 then priority = 127 end
|
||||||
|
else priority = 0; end
|
||||||
|
else priority = 0; end
|
||||||
if full_sessions[origin.full_jid] then -- if user is still connected
|
if full_sessions[origin.full_jid] then -- if user is still connected
|
||||||
origin.send(stanza); -- reflect their presence back to them
|
origin.send(stanza); -- reflect their presence back to them
|
||||||
end
|
end
|
||||||
|
@ -105,6 +114,8 @@ function handle_normal_presence(origin, stanza)
|
||||||
core_post_stanza(origin, request, true);
|
core_post_stanza(origin, request, true);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if priority >= 0 then
|
||||||
local offline = offlinemanager.load(node, host);
|
local offline = offlinemanager.load(node, host);
|
||||||
if offline then
|
if offline then
|
||||||
for _, msg in ipairs(offline) do
|
for _, msg in ipairs(offline) do
|
||||||
|
@ -113,6 +124,7 @@ function handle_normal_presence(origin, stanza)
|
||||||
offlinemanager.deleteAll(node, host);
|
offlinemanager.deleteAll(node, host);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
if stanza.attr.type == "unavailable" then
|
if stanza.attr.type == "unavailable" then
|
||||||
origin.presence = nil;
|
origin.presence = nil;
|
||||||
if origin.priority then
|
if origin.priority then
|
||||||
|
@ -128,15 +140,6 @@ function handle_normal_presence(origin, stanza)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
origin.presence = stanza;
|
origin.presence = stanza;
|
||||||
local priority = stanza:child_with_name("priority");
|
|
||||||
if priority and #priority > 0 then
|
|
||||||
priority = t_concat(priority);
|
|
||||||
if s_find(priority, "^[+-]?[0-9]+$") then
|
|
||||||
priority = tonumber(priority);
|
|
||||||
if priority < -128 then priority = -128 end
|
|
||||||
if priority > 127 then priority = 127 end
|
|
||||||
else priority = 0; end
|
|
||||||
else priority = 0; end
|
|
||||||
if origin.priority ~= priority then
|
if origin.priority ~= priority then
|
||||||
origin.priority = priority;
|
origin.priority = priority;
|
||||||
recalc_resource_map(user);
|
recalc_resource_map(user);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue