2017-12-31 00:34:31 +05:30
|
|
|
// @flow
|
|
|
|
import { getActiveAccount } from 'components/accounts/reducer';
|
|
|
|
|
2016-08-08 00:47:58 +05:30
|
|
|
/**
|
|
|
|
* Applies Bearer header for all requests
|
|
|
|
*
|
2016-12-13 01:37:49 +05:30
|
|
|
* req.options.token is used to override current token.
|
|
|
|
* Pass null to disable bearer header at all
|
|
|
|
*
|
2016-08-08 00:47:58 +05:30
|
|
|
* @param {object} store - redux store
|
2019-11-27 14:33:32 +05:30
|
|
|
* @param {Function} store.getState
|
2016-08-08 00:47:58 +05:30
|
|
|
*
|
2019-11-27 14:33:32 +05:30
|
|
|
* @returns {object} - request middleware
|
2016-08-08 00:47:58 +05:30
|
|
|
*/
|
2019-11-27 14:33:32 +05:30
|
|
|
export default function bearerHeaderMiddleware(store: {
|
|
|
|
getState: () => Object,
|
|
|
|
}) {
|
|
|
|
return {
|
|
|
|
before<
|
|
|
|
T: {
|
|
|
|
options: {
|
|
|
|
token?: ?string,
|
|
|
|
headers: Object,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
>(req: T): T {
|
|
|
|
const activeAccount = getActiveAccount(store.getState());
|
2016-11-05 15:41:41 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
let { token } = activeAccount || {};
|
2016-10-30 17:42:49 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
if (req.options.token || req.options.token === null) {
|
|
|
|
token = req.options.token;
|
|
|
|
}
|
2016-08-08 00:47:58 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
if (token) {
|
|
|
|
req.options.headers.Authorization = `Bearer ${token}`;
|
|
|
|
}
|
2016-08-08 00:47:58 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
return req;
|
|
|
|
},
|
|
|
|
};
|
2016-08-08 00:47:58 +05:30
|
|
|
}
|