mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: return error if storage of new token fails
This commit is contained in:
parent
eb45f0fcf8
commit
295c27aa99
1 changed files with 4 additions and 1 deletions
|
@ -54,10 +54,13 @@ function create_jid_token(actor_jid, token_jid, token_role, token_ttl, token_dat
|
|||
|
||||
local token_secret = random.bytes(18);
|
||||
local token = "secret-token:"..base64.encode("2;"..token_id..";"..token_secret..";"..jid.join(token_username, token_host));
|
||||
token_store:set(token_username, token_id, {
|
||||
local ok, err = token_store:set(token_username, token_id, {
|
||||
secret_sha256 = hashes.sha256(token_secret, true);
|
||||
token_info = token_info
|
||||
});
|
||||
if not ok then
|
||||
return nil, err;
|
||||
end
|
||||
|
||||
return token, token_info;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue