# HG changeset patch # User Waqas Hussain # Date 1264781211 -18000 # Node ID 697ff4f980331cc6c01950ce1958add2cb0c51da # Parent 26c1f27eb35d87f5ce013644b2ff71c783169b2e mod_presence: Added handler for presence subscriptions and probes to local hosts. diff -r 26c1f27eb35d -r 697ff4f98033 plugins/mod_presence.lua --- a/plugins/mod_presence.lua Fri Jan 29 21:04:36 2010 +0500 +++ b/plugins/mod_presence.lua Fri Jan 29 21:06:51 2010 +0500 @@ -309,13 +309,6 @@ end return true; end); -module:hook("presence/host", function (data) - local stanza = data.stanza; - local reply = st.reply(stanza); - reply.attr.type = "unsubscribed"; - handle_inbound_presence_subscriptions_and_probes(data.origin, reply, jid_bare(stanza.attr.to), jid_bare(stanza.attr.from), core_route_stanza); - return true; -end); module:hook("presence/full", function(data) -- inbound presence to full JID recieved local origin, stanza = data.origin, data.stanza; @@ -333,6 +326,20 @@ end -- resource not online, discard return true; end); +module:hook("presence/host", function(data) + -- inbound presence to the host + local origin, stanza = data.origin, data.stanza; + + local from_bare = jid_bare(stanza.attr.from); + local t = stanza.attr.type; + if t == "probe" then + core_route_stanza(hosts[module.host], st.presence({ from = module.host, to = from_bare, id = stanza.attr.id })); + elseif t == "subscribe" then + core_route_stanza(hosts[module.host], st.presence({ from = module.host, to = from_bare, id = stanza.attr.id, type = "subscribed" })); + core_route_stanza(hosts[module.host], st.presence({ from = module.host, to = from_bare, id = stanza.attr.id })); + end + return true; +end); module:hook("resource-unbind", function(event) local session, err = event.session, event.error;