mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 01:52:04 +05:30
94 lines
2.7 KiB
JavaScript
94 lines
2.7 KiB
JavaScript
|
import authentication from 'services/api/authentication';
|
||
|
import {updateUser, logout} from '../actions';
|
||
|
|
||
|
/**
|
||
|
* Ensures, that all user's requests have fresh access token
|
||
|
*
|
||
|
* @param {object} store - redux store
|
||
|
* @param {function} store.getState
|
||
|
* @param {function} store.dispatch
|
||
|
*
|
||
|
* @return {object} - request middleware
|
||
|
*/
|
||
|
export default function refreshTokenMiddleware({dispatch, getState}) {
|
||
|
return {
|
||
|
before(data) {
|
||
|
const {isGuest, refreshToken, token} = getState().user;
|
||
|
const isRefreshTokenRequest = data.url.includes('refresh-token');
|
||
|
|
||
|
if (isGuest || isRefreshTokenRequest || !token) {
|
||
|
return data;
|
||
|
}
|
||
|
|
||
|
const SAFETY_FACTOR = 60; // ask new token earlier to overcome time dissynchronization problem
|
||
|
const jwt = getJWTPayload(token);
|
||
|
|
||
|
if (jwt.exp - SAFETY_FACTOR < Date.now() / 1000) {
|
||
|
return requestAccessToken(refreshToken, dispatch).then(() => data);
|
||
|
}
|
||
|
|
||
|
return data;
|
||
|
},
|
||
|
|
||
|
catch(resp, restart) {
|
||
|
/*
|
||
|
{
|
||
|
"name": "Unauthorized",
|
||
|
"message": "You are requesting with an invalid credential.",
|
||
|
"code": 0,
|
||
|
"status": 401,
|
||
|
"type": "yii\\web\\UnauthorizedHttpException"
|
||
|
}
|
||
|
{
|
||
|
"name": "Unauthorized",
|
||
|
"message": "Token expired",
|
||
|
"code": 0,
|
||
|
"status": 401,
|
||
|
"type": "yii\\web\\UnauthorizedHttpException"
|
||
|
}
|
||
|
*/
|
||
|
if (resp && resp.status === 401) {
|
||
|
const {refreshToken} = getState().user;
|
||
|
if (resp.message === 'Token expired' && refreshToken) {
|
||
|
// request token and retry
|
||
|
return requestAccessToken(refreshToken, dispatch).then(restart);
|
||
|
}
|
||
|
|
||
|
dispatch(logout());
|
||
|
}
|
||
|
|
||
|
return Promise.reject(resp);
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function requestAccessToken(refreshToken, dispatch) {
|
||
|
let promise;
|
||
|
if (refreshToken) {
|
||
|
promise = authentication.refreshToken(refreshToken);
|
||
|
} else {
|
||
|
promise = Promise.reject();
|
||
|
}
|
||
|
|
||
|
return promise
|
||
|
.then((resp) => dispatch(updateUser({
|
||
|
token: resp.access_token
|
||
|
})))
|
||
|
.catch(() => dispatch(logout()));
|
||
|
}
|
||
|
|
||
|
|
||
|
function getJWTPayload(jwt) {
|
||
|
const parts = (jwt || '').split('.');
|
||
|
|
||
|
if (parts.length !== 3) {
|
||
|
throw new Error('Invalid jwt token');
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
return JSON.parse(atob(parts[1]));
|
||
|
} catch (err) {
|
||
|
throw new Error('Can not decode jwt token');
|
||
|
}
|
||
|
}
|