index.ts
9.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
// axios配置 可自行根据项目进行更改,只需更改该文件即可,其他文件可以不动
// The axios configuration can be changed according to the project, just change the file, other files can be left unchanged
import type { AxiosResponse } from 'axios';
import type { RequestOptions, Result } from '/#/axios';
import type { AxiosTransform, CreateAxiosOptions } from './axiosTransform';
import { VAxios } from './Axios';
import { checkStatus } from './checkStatus';
// import { useGlobSetting } from '/@/hooks/setting';
// import { useMessage } from '/@/hooks/web/useMessage';
import { RequestEnum, ContentTypeEnum } from '/@/enums/httpEnum';
import { isString } from '/@/utils/is';
import { getJwtToken } from '/@/utils/auth';
import { setObjToUrlParams, deepMerge } from '/@/utils';
import { useErrorLogStoreWithOut } from '/@/store/modules/errorLog';
import { useI18n } from '/@/hooks/web/useI18n';
import { joinTimestamp, formatRequestDate } from './helper';
import { PageEnum } from '/@/enums/pageEnum';
// import { REFRESH_TOKEN_KEY } from '/@/enums/cacheEnum';
import { router } from '/@/router';
// import { useUserStore } from '/@/store/modules/user';
// const userStore = useUserStore();
// console.log(userStore.userInfo);
// YUNTENG IOT__DEVELOPMENT__2.7.1__COMMON__LOCAL__KEY__
// function timestampToTime(timestamp) {
// const date = new Date(timestamp); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
// const Y = date.getFullYear() + '-';
// const M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
// const D = date.getDate() + ' ';
// const h = date.getHours() + ':';
// const m = date.getMinutes() + ':';
// const s = date.getSeconds();
// return Y + M + D + h + m + s;
// }
// function convertToDate() {
// const date = new Date();
// const y = date.getFullYear();
// let m = date.getMonth() + 1;
// let d = date.getDate();
// let h = date.getHours();
// let min = date.getMinutes();
// let s = date.getSeconds();
// m = m < 10 ? '0' + m : m; //月小于10,加0
// d = d < 10 ? '0' + d : d; //day小于10,加0
// h = h < 10 ? '0' + h : h;
// min = min < 10 ? '0' + min : min;
// s = s < 10 ? '0' + s : s;
// return y + '-' + m + '-' + d + ' ' + h + ':' + min + ':' + s;
// }
// const globSetting = useGlobSetting();
// const urlPrefix = globSetting.urlPrefix;
// const { createMessage, createErrorModal } = useMessage();
// const getJwtTokenInfo = getAuthCache(REFRESH_TOKEN_KEY);
// const getExiper = window.localStorage.getItem(
// 'UNDEFINED__DEVELOPMENT__2.7.1__COMMON__LOCAL__KEY__'
// );
// const getExiperValue = JSON.parse(getExiper);
// const expireTime = timestampToTime(getExiperValue.expire);
// const nowTime = convertToDate();
/**
* @description: 数据处理,方便区分多种处理方式
*/
const transform: AxiosTransform = {
/**
* @description: 处理请求数据。如果数据不是预期格式,可直接抛出错误
*/
transformRequestHook: (res: AxiosResponse<Result>, options: RequestOptions) => {
const { isReturnNativeResponse } = options;
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
if (isReturnNativeResponse) {
return res;
}
return res.data;
},
// 请求之前处理config
beforeRequestHook: (config, options) => {
const { apiUrl, joinPrefix, joinParamsToUrl, formatDate, joinTime = true } = options;
if (joinPrefix) {
config.url = `${urlPrefix}${config.url}`;
}
if (apiUrl && isString(apiUrl)) {
config.url = `${apiUrl}${config.url}`;
}
const params = config.params || {};
const data = config.data || false;
formatDate && data && !isString(data) && formatRequestDate(data);
if (config.method?.toUpperCase() === RequestEnum.GET) {
if (!isString(params)) {
// 给 get 请求加上时间戳参数,避免从缓存中拿数据。
config.params = Object.assign(params || {}, joinTimestamp(joinTime, false));
} else {
// 兼容restful风格
config.url = config.url + params + `${joinTimestamp(joinTime, true)}`;
config.params = undefined;
}
} else {
if (!isString(params)) {
formatDate && formatRequestDate(params);
if (Reflect.has(config, 'data') && config.data && Object.keys(config.data).length > 0) {
config.data = data;
config.params = params;
} else {
// 非GET请求如果没有提供data,则将params视为data
config.data = params;
config.params = undefined;
}
if (joinParamsToUrl) {
config.url = setObjToUrlParams(
config.url as string,
Object.assign({}, config.params, config.data)
);
}
} else {
// 兼容restful风格
config.url = config.url + params;
config.params = undefined;
}
}
return config;
},
/**
* @description: 请求拦截器处理
*/
requestInterceptors: (config, options) => {
// 请求之前处理config
const token = getJwtToken();
if (token && (config as Recordable)?.requestOptions?.withToken !== false) {
// jwt token
config.headers['X-Authorization'] = options.authenticationScheme
? `${options.authenticationScheme} ${token}`
: token;
}
return config;
},
/**
* @description: 响应拦截器处理
*/
responseInterceptors: (res: AxiosResponse<any>) => {
return res;
},
/**
* @description: 响应错误处理
*/
responseInterceptorsCatch: (error: any) => {
const { t } = useI18n();
const errorLogStore = useErrorLogStoreWithOut();
errorLogStore.addAjaxErrorInfo(error);
const { response, code, message, config } = error || {};
const errorMessageMode = config?.requestOptions?.errorMessageMode || 'none';
const msg: string = response?.data?.msg ?? '';
const err: string = error?.toString?.() ?? '';
let errMessage = '';
try {
console.log(response.data);
if (response.data.status == '401' || response.data.message == '"Authentication failed"') {
// window.localStorage.removeItem('UNDEFINED__DEVELOPMENT__2.7.1__COMMON__LOCAL__KEY__');
// window.localStorage.removeItem('UNDEFINED__DEVELOPMENT__2.7.1__LOCALE__');
window.localStorage.clear();
window.sessionStorage.clear();
router.push(PageEnum.BASE_HOME);
// doRefresh();
// console.log(router);
// router.push('/other');
// if (expireTime < nowTime) {
// // console.log('过期');
// createMessage.error('token已经过期,请退回登录');
// } else {
// // console.log('未过期');
// }
// router.push(PageEnum.BASE_LOGIN);
// if (getJwtTokenInfo) {
// if (PageEnum.BASE_LOGIN) {
// router.push(PageEnum.BASE_LOGIN);
// }
// }
// router.beforeEach((to, from, next) => {
// console.log(to);
// if (getJwtTokenInfo) {
// if (to.path !== '/login') {
// // doRefresh();
// next({ path: '/adass' });
// }
// }
// });
} else {
// doRefresh();
}
if (code === 'ECONNABORTED' && message.indexOf('timeout') !== -1) {
errMessage = t('sys.api.apiTimeoutMessage');
}
if (err?.includes('Network Error')) {
errMessage = t('sys.api.networkExceptionMsg');
}
if (errMessage) {
if (errorMessageMode === 'modal') {
createErrorModal({ title: t('sys.api.errorTip'), content: errMessage });
} else if (errorMessageMode === 'message') {
createMessage.error(errMessage);
}
return Promise.reject(error);
}
} catch (error: any) {
throw new Error(error);
}
if (!config?.requestOptions?.catchFirst) {
checkStatus(error?.response?.status, msg, errorMessageMode);
}
return Promise.reject(error);
},
};
function createAxios(opt?: Partial<CreateAxiosOptions>) {
return new VAxios(
deepMerge(
{
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication#authentication_schemes
// authentication schemes,e.g: Bearer
// authenticationScheme: 'Bearer',
authenticationScheme: 'Bearer',
timeout: 10 * 1000,
// 基础接口地址
// baseURL: globSetting.apiUrl,
// 接口可能会有通用的地址部分,可以统一抽取出来
urlPrefix: urlPrefix,
headers: { 'Content-Type': ContentTypeEnum.JSON },
// 如果是form-data格式
// headers: { 'Content-Type': ContentTypeEnum.FORM_URLENCODED },
// 数据处理方式
transform,
// 配置项,下面的选项都可以在独立的接口请求中覆盖
requestOptions: {
// 默认将prefix 添加到url
joinPrefix: true,
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
isReturnNativeResponse: false,
// 需要对返回数据进行处理
isTransformResponse: true,
// post请求的时候添加参数到url
joinParamsToUrl: false,
// 格式化提交参数时间
formatDate: true,
// 消息提示类型
errorMessageMode: 'message',
// 接口地址
apiUrl: globSetting.apiUrl,
// 是否加入时间戳
joinTime: true,
// 忽略重复请求
ignoreCancelToken: true,
// 是否携带token
withToken: true,
},
},
opt || {}
)
);
}
export const defHttp = createAxios();
// other api url
export const otherHttp = createAxios({
requestOptions: {
apiUrl: 'xxx',
},
});