mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Save grant after removing expired tokens
Ensures the periodic cleanup really does remove expired tokens.
This commit is contained in:
parent
d9043249de
commit
5425a43ba6
1 changed files with 5 additions and 0 deletions
|
@ -167,9 +167,14 @@ local function _get_validated_grant_info(username, grant)
|
|||
return nil, "invalid";
|
||||
end
|
||||
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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue