File

core/servermanager.lua @ 402:50f1c09541cd

Checking some variables for nil so no errors occur that'll break the server.
author Tobias Markmann <tm@ayena.de>
date Sun, 23 Nov 2008 20:43:42 +0100
parent 315:4df26c981728
child 336:d97d59cfd1e8
line wrap: on
line source


local st = require "util.stanza";
local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas';

require "modulemanager"

-- Handle stanzas that were addressed to the server (whether they came from c2s, s2s, etc.)
function handle_stanza(origin, stanza)
	-- Use plugins
	if not modulemanager.handle_stanza(origin, stanza) then
		if stanza.name == "iq" then
			if stanza.attr.type ~= "result" and stanza.attr.type ~= "error" then
				origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
			end
		elseif stanza.name == "message" then
			origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
		elseif stanza.name ~= "presence" then
			error("Unknown stanza");
		end
	end
end