componentmanager: Add dialback_secret to components to allow s2s to work (thanks Flo)

Mon, 11 Jan 2010 10:13:02 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 11 Jan 2010 10:13:02 +0000
changeset 2447
9eb539222f22
parent 2446
62aa1b465e05
child 2448
542335c8a5bc

componentmanager: Add dialback_secret to components to allow s2s to work (thanks Flo)

core/componentmanager.lua file | annotate | diff | comparison | revisions
--- a/core/componentmanager.lua	Mon Jan 11 00:14:33 2010 +0000
+++ b/core/componentmanager.lua	Mon Jan 11 10:13:02 2010 +0000
@@ -16,6 +16,7 @@
 local st = require "util.stanza";
 local prosody, hosts = prosody, prosody.hosts;
 local ssl = ssl;
+local uuid_gen = require "util.uuid".generate;
 
 local pairs, setmetatable, type, tostring = pairs, setmetatable, type, tostring;
 
@@ -91,7 +92,8 @@
 		end
 	end
 	return { type = "component", host = host, connected = true, s2sout = {}, 
-			ssl_ctx = ssl_ctx, ssl_ctx_in = ssl_ctx_in, events = events or events_new() };
+			ssl_ctx = ssl_ctx, ssl_ctx_in = ssl_ctx_in, events = events or events_new(),
+			dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen() };
 end
 
 function register_component(host, component, session)
@@ -100,12 +102,16 @@
 
 		components[host] = component;
 		hosts[host] = session or create_component(host, component, old_events);
-		
+
 		-- Add events object if not already one
 		if not hosts[host].events then
 			hosts[host].events = old_events or events_new();
 		end
-		
+
+		if not hosts[host].dialback_secret then
+			hosts[host].dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen();
+		end
+
 		-- add to disco_items
 		if not(host:find("@", 1, true) or host:find("/", 1, true)) and host:find(".", 1, true) then
 			disco_items:set(host:sub(host:find(".", 1, true)+1), host, true);

mercurial