mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tokenauth: Fix saving grants after clearing expired tokens
Previously the whole grant was deleted if it found one expired toke, which was not indented.
This commit is contained in:
parent
ae884642d5
commit
deaa31ddc0
1 changed files with 4 additions and 4 deletions
|
@ -166,22 +166,22 @@ local function _get_validated_grant_info(username, grant)
|
|||
token_store:set_key(username, grant.id, nil);
|
||||
return nil, "invalid";
|
||||
end
|
||||
|
||||
local found_expired = false
|
||||
for secret_hash, token_info in pairs(grant.tokens) do
|
||||
local found_expired = false
|
||||
if token_info.expires and token_info.expires < now then
|
||||
module:log("debug", "Token has expired, cleaning it up");
|
||||
grant.tokens[secret_hash] = nil;
|
||||
found_expired = true;
|
||||
end
|
||||
if found_expired then
|
||||
token_store:set_key(username, grant.id, nil);
|
||||
end
|
||||
end
|
||||
|
||||
if not grant.expires and next(grant.tokens) == nil and grant.accessed + empty_grant_lifetime < now then
|
||||
module:log("debug", "Token grant has no tokens, discarding");
|
||||
token_store:set_key(username, grant.id, nil);
|
||||
return nil, "expired";
|
||||
elseif found_expired then
|
||||
token_store:set_key(username, grant.id, grant);
|
||||
end
|
||||
|
||||
return grant;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue