mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_saslauth: Collect SASL EXTERNAL failures into an util.error object
Will be easier than that concatenated string to extract info out of for use elsewhere.
This commit is contained in:
parent
d84a2484dc
commit
0de6ce740e
1 changed files with 12 additions and 5 deletions
|
@ -13,6 +13,7 @@ local sm_bind_resource = require "core.sessionmanager".bind_resource;
|
|||
local sm_make_authenticated = require "core.sessionmanager".make_authenticated;
|
||||
local base64 = require "util.encodings".base64;
|
||||
local set = require "util.set";
|
||||
local errors = require "util.error";
|
||||
|
||||
local usermanager_get_sasl_handler = require "core.usermanager".get_sasl_handler;
|
||||
|
||||
|
@ -102,13 +103,19 @@ module:hook_tag(xmlns_sasl, "failure", function (session, stanza)
|
|||
break;
|
||||
end
|
||||
end
|
||||
if text and condition then
|
||||
condition = condition .. ": " .. text;
|
||||
end
|
||||
module:log("info", "SASL EXTERNAL with %s failed: %s", session.to_host, condition);
|
||||
local err = errors.new({
|
||||
-- TODO type = what?
|
||||
text = text,
|
||||
condition = condition,
|
||||
}, {
|
||||
session = session,
|
||||
stanza = stanza,
|
||||
});
|
||||
|
||||
module:log("info", "SASL EXTERNAL with %s failed: %s", session.to_host, err);
|
||||
|
||||
session.external_auth = "failed"
|
||||
session.external_auth_failure_reason = condition;
|
||||
session.external_auth_failure_reason = err;
|
||||
end, 500)
|
||||
|
||||
module:hook_tag(xmlns_sasl, "failure", function (session, stanza) -- luacheck: ignore 212/stanza
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue