Catch JWT expiration.

Closes #321
This commit is contained in:
D. Berge
2025-07-26 10:56:23 +02:00
parent 731778206c
commit 5487a3a49b
2 changed files with 30 additions and 1 deletions

View File

@@ -11,12 +11,27 @@ const getToken = function (req) {
return null;
}
const onExpired = async function (req, err) {
// If it's not too badly expired, let it through
// and hope that a new token will be issued soon.
const elapsed = new Date() - err.inner.expiredAt;
// TODO: Add proper logging
// console.log("Expiry details (elapsed, gracePeriod)", elapsed, cfg.gracePeriod*1000);
if (elapsed < cfg.gracePeriod*1000) {
// console.log("JWT within grace period");
return;
}
throw err;
}
const options = {
secret: cfg.secret,
credentialsRequired: false,
algorithms: ['HS256'],
requestProperty: "user",
getToken
getToken,
onExpired
};
module.exports = expressJWT(options);