mod_component: Updated to use events for hooking stanzas instead of the component stanza handler, and the on_destroy callback.

Wed, 10 Nov 2010 01:51:03 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Wed, 10 Nov 2010 01:51:03 +0500
changeset 3581
3f3f8227ba76
parent 3580
39547152bb72
child 3582
6a14c57b458a

mod_component: Updated to use events for hooking stanzas instead of the component stanza handler, and the on_destroy callback.

plugins/mod_component.lua file | annotate | diff | comparison | revisions
--- a/plugins/mod_component.lua	Wed Nov 10 00:24:17 2010 +0500
+++ b/plugins/mod_component.lua	Wed Nov 10 01:51:03 2010 +0500
@@ -22,11 +22,48 @@
 
 local log = module._log;
 
+local main_session, send;
+
+local function on_destroy(session, err)
+	if main_session == session then
+		main_session = nil;
+		send = nil;
+		session.on_destroy = nil;
+		hosts[session.host].connected = nil;
+	end
+end
+
+local function handle_stanza(event)
+	local stanza = event.stanza;
+	if send then
+		stanza.attr.xmlns = nil;
+		send(stanza);
+	else
+		log("warn", "Stanza being handled by default component; bouncing error for: %s", stanza:top_tag());
+		if stanza.attr.type ~= "error" and stanza.attr.type ~= "result" then
+			event.origin.send(st.error_reply(stanza, "wait", "service-unavailable", "Component unavailable"));
+		end
+	end
+end
+
+module:hook("iq/bare", handle_stanza);
+module:hook("message/bare", handle_stanza);
+module:hook("presence/bare", handle_stanza);
+module:hook("iq/full", handle_stanza);
+module:hook("message/full", handle_stanza);
+module:hook("presence/full", handle_stanza);
+module:hook("iq/host", handle_stanza);
+module:hook("message/host", handle_stanza);
+module:hook("presence/host", handle_stanza);
+
+cm_register_component(module.host, function() end);
+
 --- Handle authentication attempts by components
 function handle_component_auth(event)
 	local session, stanza = event.origin, event.stanza;
 	
 	if session.type ~= "component" then return; end
+	if main_session == session then return; end
 
 	log("info", "Handling component auth");
 	if (not session.host) or #stanza.tags > 0 then
@@ -57,14 +94,10 @@
 	session.component_validate_from = module:get_option_boolean("validate_from_addresses") ~= false;
 	
 	-- If component not already created for this host, create one now
-	if not hosts[session.host].connected then
-		local send = session.send;
-		session.component_session = cm_register_component(session.host, function (_, data)
-				if data.attr and data.attr.xmlns == "jabber:client" then
-					data.attr.xmlns = nil;
-				end
-				return send(data);
-			end);
+	if not main_session then
+		send = session.send;
+		main_session = session;
+		session.on_destroy = on_destroy;
 		hosts[session.host].connected = true;
 		log("info", "Component successfully registered");
 	else

mercurial