2023-06-07 08:28:29 +00:00
|
|
|
const UserError = require('vn-loopback/util/user-error');
|
2023-11-04 13:39:26 +00:00
|
|
|
const handlePromiseLogout = (Self, {id}, courtesyTime = 60) => {
|
|
|
|
new Promise(res => {
|
|
|
|
setTimeout(() => {
|
|
|
|
res(Self.logout(id));
|
|
|
|
}
|
|
|
|
, courtesyTime * 1000);
|
|
|
|
});
|
|
|
|
};
|
2023-05-24 13:01:59 +00:00
|
|
|
module.exports = Self => {
|
|
|
|
Self.remoteMethodCtx('renewToken', {
|
2023-06-07 08:28:29 +00:00
|
|
|
description: 'Checks if the token has more than renewPeriod seconds to live and if so, renews it',
|
2023-06-21 12:12:42 +00:00
|
|
|
accessType: 'WRITE',
|
2023-05-24 13:01:59 +00:00
|
|
|
accepts: [],
|
2023-05-25 07:51:56 +00:00
|
|
|
returns: {
|
|
|
|
type: 'Object',
|
|
|
|
root: true
|
|
|
|
},
|
2023-05-24 13:01:59 +00:00
|
|
|
http: {
|
|
|
|
path: `/renewToken`,
|
|
|
|
verb: 'POST'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-05-24 13:16:04 +00:00
|
|
|
Self.renewToken = async function(ctx) {
|
2023-05-24 13:01:59 +00:00
|
|
|
const models = Self.app.models;
|
2023-06-29 10:11:16 +00:00
|
|
|
const token = ctx.req.accessToken;
|
2023-05-24 13:01:59 +00:00
|
|
|
|
2023-11-04 13:39:26 +00:00
|
|
|
// 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});
|
2023-06-07 08:28:29 +00:00
|
|
|
|
2023-11-04 13:39:26 +00:00
|
|
|
// Schedule to remove current token
|
|
|
|
handlePromiseLogout(Self, token, courtesyTime);
|
2023-05-24 13:01:59 +00:00
|
|
|
|
2023-11-04 13:39:26 +00:00
|
|
|
// Create new accessToken
|
2023-06-29 10:11:16 +00:00
|
|
|
const user = await Self.findById(token.userId);
|
2023-05-25 08:09:38 +00:00
|
|
|
const accessToken = await user.createAccessToken();
|
2023-05-24 13:01:59 +00:00
|
|
|
|
2023-06-29 10:11:16 +00:00
|
|
|
return {id: accessToken.id, ttl: accessToken.ttl};
|
2023-05-24 13:01:59 +00:00
|
|
|
};
|
|
|
|
};
|