mod_pep: Broadcast only to available recipients with caps

This commit is contained in:
Waqas Hussain 2009-06-26 23:58:52 +05:00
parent 9f5e655df1
commit 11166044f7

View file

@ -9,6 +9,7 @@ local pairs, ipairs = pairs, ipairs;
local next = next; local next = next;
local load_roster = require "core.rostermanager".load_roster; local load_roster = require "core.rostermanager".load_roster;
local NULL = {};
local data = {}; local data = {};
local recipients = {}; local recipients = {};
@ -35,16 +36,10 @@ local function publish(session, node, item)
user_data[node] = stanza; user_data[node] = stanza;
end end
-- broadcast to resources -- broadcast
stanza.attr.to = bare; for recipient in pairs(recipients[user] or NULL) do
core_route_stanza(session, stanza); stanza.attr.to = recipient;
core_post_stanza(session, stanza);
-- broadcast to contacts
for jid, item in pairs(session.roster) do
if jid and jid ~= "pending" and (item.subscription == 'from' or item.subscription == 'both') then
stanza.attr.to = jid;
core_route_stanza(session, stanza);
end
end end
end end
@ -76,18 +71,18 @@ module:hook("presence/bare", function(event)
local bare = jid_bare(stanza.attr.from); local bare = jid_bare(stanza.attr.from);
local item = load_roster(jid_split(user))[bare]; local item = load_roster(jid_split(user))[bare];
if not stanza.attr.to or (item and (item.subscription == 'from' or item.subscription == 'both')) then if not stanza.attr.to or (item and (item.subscription == 'from' or item.subscription == 'both')) then
local t = stanza.attr.type;
local recipient = stanza.attr.from; local recipient = stanza.attr.from;
if t == "unavailable" or t == "error" then local current = recipients[user] and recipients[user][recipient];
local hash = get_caps_hash_from_presence(stanza, current);
if current == hash then return; end
if not hash then
if recipients[user] then recipients[user][recipient] = nil; end if recipients[user] then recipients[user][recipient] = nil; end
elseif not t then else
recipients[user] = recipients[user] or {}; recipients[user] = recipients[user] or {};
if not recipients[user][recipient] then recipients[user][recipient] = hash;
recipients[user][recipient] = true; for node, message in pairs(data[user] or NULL) do
for node, message in pairs(data[user] or {}) do message.attr.to = stanza.attr.from;
message.attr.to = stanza.attr.from; origin.send(message);
origin.send(message);
end
end end
end end
end end