mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_tokenauth: Add SASL handler backend that can accept and verify tokens
This is designed for use by other modules that want to accept tokens issued by mod_tokenauth, without duplicating all the necessary logic.
This commit is contained in:
parent
f3d152eb1b
commit
b435f6d52a
1 changed files with 18 additions and 0 deletions
|
@ -122,3 +122,21 @@ function revoke_token(token)
|
||||||
end
|
end
|
||||||
return token_store:set(token_user, token_id, nil);
|
return token_store:set(token_user, token_id, nil);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function sasl_handler(auth_provider, purpose, extra)
|
||||||
|
return function (_, username, token, realm)
|
||||||
|
local token_info, err = get_token_info(token);
|
||||||
|
if not token_info then
|
||||||
|
module:log("debug", "SASL handler failed to verify token: %s", err);
|
||||||
|
return nil, nil, extra;
|
||||||
|
end
|
||||||
|
local token_user, token_host = jid.split(token_info.jid);
|
||||||
|
if username ~= token_user or realm ~= token_host or (purpose and token_info.purpose ~= purpose) then
|
||||||
|
return nil, nil, extra;
|
||||||
|
end
|
||||||
|
if auth_provider.is_enabled and not auth_provider.is_enabled(username) then
|
||||||
|
return true, false, token_info;
|
||||||
|
end
|
||||||
|
return true, true, token_info;
|
||||||
|
end;
|
||||||
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue