From 9bd8c81c916f22ffb11ce4f11f74edc87002fbb2 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Sat, 25 Oct 2008 03:13:10 +0500 Subject: Inbound subscription request --- core/rostermanager.lua | 6 ++++++ core/stanza_router.lua | 11 ++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/core/rostermanager.lua b/core/rostermanager.lua index 83bb379e..7d7fd061 100644 --- a/core/rostermanager.lua +++ b/core/rostermanager.lua @@ -135,4 +135,10 @@ function process_inbound_unsubscribe(username, host, jid) end end +function is_contact_subscribed(username, host, jid) + local roster = load_roster(username, host); + local item = roster[jid]; + return item and (item.subscription == "from" or item.subscription == "both"); +end + return _M; \ No newline at end of file diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 16658f30..be4f9185 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -207,7 +207,16 @@ function core_route_stanza(origin, stanza) send(origin, st.presence({from=to_bare, to=from_bare, type="unsubscribed"})); end elseif stanza.attr.type == "subscribe" then - -- TODO + if rostermanager.is_contact_subscribed(node, host, from_bare) then + send(origin, st.presence(from=to_bare, to=from_bare, type="subscribed")); -- already subscribed + else + local pres = st.presence({from=from_bare}, type="subscribe"); + for k in pairs(user.sessions) do -- return presence for all resources + if user.sessions[k].presence then + send(user.sessions[k], pres); + end + end + end elseif stanza.attr.type == "unsubscribe" then if rostermanager.process_inbound_unsubscribe(node, host, from_bare) then rostermanager.roster_push(node, host, from_bare); -- cgit v1.2.3