aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-06-07 18:04:08 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-06-07 18:04:08 +0500
commitc1a43bf7a8ba5858ac4d13d1ad6544e22f02efd1 (patch)
treeeabaee880c9f8554c07585ba18760c68e58ab5db /plugins
parent5ba770cd5a2b0af7d6abc522d679811d6914162b (diff)
downloadprosody-c1a43bf7a8ba5858ac4d13d1ad6544e22f02efd1.tar.gz
prosody-c1a43bf7a8ba5858ac4d13d1ad6544e22f02efd1.zip
mod_pep: Send items to contacts coming online
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_pep.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index 6895b561..cc8db55c 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -6,8 +6,10 @@ local hosts = hosts;
local user_exists = require "core.usermanager".user_exists;
local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed;
local pairs, ipairs = pairs, ipairs;
+local load_roster = require "core.rostermanager".load_roster;
local data = {};
+local recipients = {};
local function publish(session, node, item)
local stanza = st.message({from=session.full_jid, type='headline'})
@@ -36,6 +38,31 @@ local function publish(session, node, item)
end
end
+module:hook("presence/bare", function(data)
+ -- inbound presence to bare JID recieved
+ local origin, stanza = data.origin, data.stanza;
+
+ local user = stanza.attr.to or (origin.username..'@'..origin.host);
+ local bare = jid_bare(stanza.attr.from);
+ local item = load_roster(jid_split(user))[bare];
+ 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;
+ if t == "unavailable" or t == "error" then
+ if recipients[user] then recipients[user][recipient] = nil; end
+ elseif not t then
+ recipients[user] = recipients[user][recipient] or {};
+ if not recipients[user][recipient] then
+ recipients[user][recipient] = true;
+ for node, message in pairs(data[user] or {}) do
+ message.attr.to = stanza.attr.from;
+ origin.send(message);
+ end
+ end
+ end
+ end
+end);
+
module:add_iq_handler("c2s", "http://jabber.org/protocol/pubsub", function (session, stanza)
if stanza.attr.type == 'set' and (not stanza.attr.to or jid_bare(stanza.attr.from) == stanza.attr.to) then
local payload = stanza.tags[1];