refs '#6264' feat: memoization accessTokenConfig

This commit is contained in:
Javier Segarra 2023-11-04 16:51:25 +01:00
parent b02e1f000e
commit 67faf076d2
4 changed files with 20 additions and 9 deletions

View File

@ -1,5 +1,8 @@
const tokenConfig = require('./token-config');
module.exports = async token => {
const accessTokenConfig = await tokenConfig();
module.exports = async(token, accessTokenConfig) => {
const now = new Date();
const differenceMilliseconds = now - token.created;
const differenceSeconds = Math.floor(differenceMilliseconds / 1000);

View File

@ -1,5 +1,7 @@
const UserError = require('vn-loopback/util/user-error');
const handlePromiseLogout = (Self, {id}, courtesyTime = 60) => {
const tokenConfig = require('./token-config');
const DEFAULT_COURTESY_TIME = 60;
const handlePromiseLogout = (Self, {id}, courtesyTime = DEFAULT_COURTESY_TIME) => {
new Promise(res => {
setTimeout(() => {
res(Self.logout(id));
@ -23,14 +25,13 @@ module.exports = Self => {
});
Self.renewToken = async function(ctx) {
const models = Self.app.models;
const token = ctx.req.accessToken;
const {accessToken: token} = ctx.req;
// Check if current token is valid
const isValid = await Self.validateToken(token);
if (!isValid) throw new UserError(`The renew period has not been exceeded`, 'periodNotExceeded');
const fields = ['courtesyTime'];
const {courtesyTime} = await models.AccessTokenConfig.findOne({fields});
const {courtesyTime} = await tokenConfig();
// Schedule to remove current token
handlePromiseLogout(Self, token, courtesyTime);

View File

@ -0,0 +1,9 @@
const DEFAULT_FIELDS = ['renewPeriod', 'courtesyTime'];
const {models} = require('vn-loopback/server/server');
let currentAccessTokenConfig = null;
module.exports = async(fields = DEFAULT_FIELDS) => {
if (currentAccessTokenConfig) return currentAccessTokenConfig;
const accessTokenConfig = await models.AccessTokenConfig.findOne({fields});
if (!accessTokenConfig) currentAccessTokenConfig = accessTokenConfig;
return accessTokenConfig;
};

View File

@ -14,9 +14,7 @@ module.exports = Self => {
});
Self.validateToken = async function(token) {
const fields = ['renewPeriod', 'courtesyTime'];
const accessTokenConfig = await Self.app.models.AccessTokenConfig.findOne({fields});
const isValid = await isTokenValid(token, accessTokenConfig);
const isValid = await isTokenValid(token);
return isValid;
};
};