Revize 286a9547
Přidáno uživatelem Václav Honzík před téměř 3 roky(ů)
frontend/src/api/api.ts | ||
---|---|---|
1 | 1 |
import axios from 'axios' |
2 | 2 |
import { Store } from 'redux' |
3 |
import conf from '../config/conf' |
|
3 | 4 |
import config from '../config/conf' |
4 | 5 |
import { AppStore } from '../features/redux/store' |
5 | 6 |
|
... | ... | |
15 | 16 |
const createBaseInstance = () => |
16 | 17 |
axios.create({ |
17 | 18 |
baseURL: config.baseUrl, |
19 |
headers: {} |
|
18 | 20 |
}) |
19 | 21 |
|
20 | 22 |
const axiosInstance = createBaseInstance() |
... | ... | |
55 | 57 |
|
56 | 58 |
// Try refreshing the JWT |
57 | 59 |
try { |
58 |
const refreshInstance = createBaseInstance() |
|
59 |
// @ts-ignore |
|
60 |
refreshInstance.headers['Authorization'] = oldRefreshToken as string |
|
61 |
|
|
62 |
// Set this to retry the request that failed |
|
63 |
originalConfig.retry = true |
|
64 |
|
|
60 |
// For some reason axios refuses to create instance here so just use fetch |
|
65 | 61 |
// Send the request |
66 |
const { data } = await axiosInstance.get('/users/refreshToken') |
|
67 |
const { accessToken, refreshToken } = data |
|
62 |
const res = await fetch(`${conf.baseUrl}/users/token`, { |
|
63 |
method: 'GET', |
|
64 |
// credentials: 'include', |
|
65 |
headers: { |
|
66 |
'Authorization': oldRefreshToken as string |
|
67 |
} |
|
68 |
}) |
|
69 |
|
|
70 |
const json = await res.json() |
|
71 |
const [ accessToken, refreshToken ] = [json.access_token, json.refresh_token] |
|
68 | 72 |
|
69 | 73 |
// Set the new tokens |
70 | 74 |
store.dispatch({ |
... | ... | |
72 | 76 |
payload: { accessToken, refreshToken }, |
73 | 77 |
}) |
74 | 78 |
|
79 |
// Set this to retry the request that failed |
|
80 |
originalConfig.retry = true |
|
81 |
|
|
75 | 82 |
// Return the failed instance so it can retry |
76 | 83 |
return axiosInstance(originalConfig) |
77 | 84 |
} catch (err: any) { |
Také k dispozici: Unified diff
re #9368 - refresh with fetch instead of axios