aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-10-23 03:52:51 +0100
committerMatthew Wild <mwild1@gmail.com>2008-10-23 03:52:51 +0100
commitece9ac97618254bbac85688b4a01288699d2aca3 (patch)
treeb42aec4daf332731c18042b9a13fd568f5d97b2e /core
parente92bd250d19de43dfe0584108d12577bbe1a1c2a (diff)
downloadprosody-ece9ac97618254bbac85688b4a01288699d2aca3.tar.gz
prosody-ece9ac97618254bbac85688b4a01288699d2aca3.zip
Relocate presence broadcast to core_handle_stanza()
which is for processing stanzas that the server must handle (not route)
Diffstat (limited to 'core')
-rw-r--r--core/stanza_router.lua41
1 files changed, 17 insertions, 24 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index 100239c6..b7b57754 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -37,9 +37,23 @@ function core_process_stanza(origin, stanza)
-- TODO presence subscriptions
if not to then
+ core_handle_stanza(origin, stanza);
+ elseif hosts[to] and hosts[to].type == "local" then
+ core_handle_stanza(origin, stanza);
+ elseif stanza.name == "iq" and not select(3, jid_split(to)) then
+ core_handle_stanza(origin, stanza);
+ elseif origin.type == "c2s" then
+ core_route_stanza(origin, stanza);
+ end
+end
+
+function core_handle_stanza(origin, stanza)
+ -- Handlers
+ if origin.type == "c2s" or origin.type == "c2s_unauthed" then
+ local session = origin;
+
if stanza.name == "presence" and origin.roster then
if stanza.attr.type == nil or stanza.attr.type == "available" or stanza.attr.type == "unavailable" then
- --stanza.attr.from = origin.full_jid;
for jid in pairs(origin.roster) do -- broadcast to all interested contacts
local subscription = origin.roster[jid].subscription;
if subscription == "both" or subscription == "from" then
@@ -70,30 +84,9 @@ function core_process_stanza(origin, stanza)
-- TODO error, bad type
end
else
- core_handle_stanza(origin, stanza);
+ log("debug", "Routing stanza to local");
+ handle_stanza(session, stanza);
end
- elseif hosts[to] and hosts[to].type == "local" then
- core_handle_stanza(origin, stanza);
- elseif stanza.name == "iq" and not select(3, jid_split(to)) then
- core_handle_stanza(origin, stanza);
- elseif origin.type == "c2s" then
- core_route_stanza(origin, stanza);
- end
-end
-
-function core_handle_stanza(origin, stanza)
- -- Handlers
- if origin.type == "c2s" or origin.type == "c2s_unauthed" then
- local session = origin;
-
- log("debug", "Routing stanza");
- -- Stanza has no to attribute
- --local to_node, to_host, to_resource = jid_split(stanza.attr.to);
- --if not to_host then error("Invalid destination JID: "..string.format("{ %q, %q, %q } == %q", to_node or "", to_host or "", to_resource or "", stanza.attr.to or "nil")); end
-
- -- Stanza is to this server, or a user on this server
- log("debug", "Routing stanza to local");
- handle_stanza(session, stanza);
end
end