Update last activity of token

This commit is contained in:
Pierre HUBERT 2024-04-10 21:10:00 +02:00
parent b1937d42a2
commit 579e54f7d3
2 changed files with 12 additions and 1 deletions

View File

@ -210,6 +210,14 @@ pub async fn update_rights(id: TokenID, rights: TokenRights) -> anyhow::Result<(
Ok(())
}
/// Set last_used value of token
pub async fn refresh_last_used(id: TokenID) -> anyhow::Result<()> {
let mut token = get_single(id).await?;
token.last_used = time();
token.save()?;
Ok(())
}
/// Delete an API token
pub async fn delete(id: TokenID) -> anyhow::Result<()> {
let path = AppConfig::get().api_token_definition_path(id);

View File

@ -114,7 +114,10 @@ impl FromRequest for ApiAuthExtractor {
// TODO : manually validate all checks
if token.should_update_last_activity() {
// TODO : update last activity
if let Err(e) = api_tokens::refresh_last_used(token.id).await {
log::error!("Could not update token last activity! {e}");
return Err(ErrorBadRequest("!"));
}
}
Ok(ApiAuthExtractor { token, claims })