s2smanager, mod_s2s, mod_dialback, mod_saslauth: Move s2smanager.make_authenticated() to mod_s2s, and plugins now signal authentication via the s2s-authenticated event

This commit is contained in:
Matthew Wild 2013-03-22 14:18:23 +00:00
parent 77431e5d84
commit 339e74b1b9
4 changed files with 80 additions and 81 deletions

View file

@ -7,7 +7,6 @@
--
local hosts = _G.hosts;
local s2s_make_authenticated = require "core.s2smanager".make_authenticated;
local log = module._log;
@ -110,7 +109,7 @@ module:hook("stanza/jabber:server:dialback:verify", function(event)
if dialback_verifying and attr.from == origin.to_host then
local valid;
if attr.type == "valid" then
s2s_make_authenticated(dialback_verifying, attr.from);
module:fire_event("s2s-authenticated", { session = dialback_verifying, host = attr.from });
valid = "valid";
else
-- Warn the original connection that is was not verified successfully
@ -146,7 +145,7 @@ module:hook("stanza/jabber:server:dialback:result", function(event)
return true;
end
if stanza.attr.type == "valid" then
s2s_make_authenticated(origin, attr.from);
module:fire_event("s2s-authenticated", { session = origin, host = attr.from });
else
origin:close("not-authorized", "dialback authentication failed");
end