2022-08-16 23:30:23 +08:00
|
|
|
|
import axios, { AxiosInstance, AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
|
|
|
import { ResultData } from '@/api/interface';
|
|
|
|
|
import { ResultEnum } from '@/enums/http-enum';
|
|
|
|
|
import { checkStatus } from './helper/check-status';
|
|
|
|
|
import { ElMessage } from 'element-plus';
|
|
|
|
|
import router from '@/routers';
|
|
|
|
|
import { GlobalStore } from '@/store';
|
|
|
|
|
|
|
|
|
|
const globalStore = GlobalStore();
|
|
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
|
baseURL: import.meta.env.VITE_API_URL as string,
|
|
|
|
|
timeout: ResultEnum.TIMEOUT as number,
|
|
|
|
|
// 跨域时候允许携带凭证
|
|
|
|
|
withCredentials: true,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class RequestHttp {
|
|
|
|
|
service: AxiosInstance;
|
|
|
|
|
public constructor(config: AxiosRequestConfig) {
|
|
|
|
|
this.service = axios.create(config);
|
|
|
|
|
this.service.interceptors.request.use(
|
|
|
|
|
(config: AxiosRequestConfig) => {
|
|
|
|
|
if (config.method != 'get') {
|
|
|
|
|
config.headers = {
|
|
|
|
|
'X-CSRF-TOKEN': globalStore.csrfToken,
|
|
|
|
|
...config.headers,
|
|
|
|
|
};
|
|
|
|
|
}
|
2022-08-25 17:54:52 +08:00
|
|
|
|
|
2022-08-16 23:30:23 +08:00
|
|
|
|
return {
|
|
|
|
|
...config,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
(error: AxiosError) => {
|
|
|
|
|
return Promise.reject(error);
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
this.service.interceptors.response.use(
|
|
|
|
|
(response: AxiosResponse) => {
|
2022-08-25 17:54:52 +08:00
|
|
|
|
const { data } = response;
|
2022-08-16 23:30:23 +08:00
|
|
|
|
if (response.headers['x-csrf-token']) {
|
|
|
|
|
globalStore.setCsrfToken(response.headers['x-csrf-token']);
|
|
|
|
|
}
|
2022-08-17 11:47:56 +08:00
|
|
|
|
if (data.code == ResultEnum.OVERDUE || data.code == ResultEnum.FORBIDDEN) {
|
2022-08-16 23:30:23 +08:00
|
|
|
|
ElMessage.error(data.msg);
|
|
|
|
|
router.replace({
|
|
|
|
|
path: '/login',
|
|
|
|
|
});
|
|
|
|
|
return Promise.reject(data);
|
|
|
|
|
}
|
|
|
|
|
if (data.code && data.code !== ResultEnum.SUCCESS) {
|
|
|
|
|
ElMessage.error(data.msg);
|
|
|
|
|
return Promise.reject(data);
|
|
|
|
|
}
|
|
|
|
|
return data;
|
|
|
|
|
},
|
|
|
|
|
async (error: AxiosError) => {
|
|
|
|
|
const { response } = error;
|
|
|
|
|
if (error.message.indexOf('timeout') !== -1) ElMessage.error('请求超时!请您稍后重试');
|
|
|
|
|
if (response) checkStatus(response.status);
|
|
|
|
|
if (!window.navigator.onLine) router.replace({ path: '/500' });
|
|
|
|
|
return Promise.reject(error);
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get<T>(url: string, params?: object, _object = {}): Promise<ResultData<T>> {
|
|
|
|
|
return this.service.get(url, { params, ..._object });
|
|
|
|
|
}
|
|
|
|
|
post<T>(url: string, params?: object, _object = {}): Promise<ResultData<T>> {
|
|
|
|
|
return this.service.post(url, params, _object);
|
|
|
|
|
}
|
|
|
|
|
put<T>(url: string, params?: object, _object = {}): Promise<ResultData<T>> {
|
|
|
|
|
return this.service.put(url, params, _object);
|
|
|
|
|
}
|
|
|
|
|
delete<T>(url: string, params?: any, _object = {}): Promise<ResultData<T>> {
|
|
|
|
|
return this.service.delete(url, { params, ..._object });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default new RequestHttp(config);
|