2023-04-13 18:59:33 +08:00
|
|
|
import axios, { AxiosResponse, InternalAxiosRequestConfig } from 'axios';
|
2023-04-02 01:01:56 +08:00
|
|
|
import { useUserStore } from '@/store/modules/user';
|
|
|
|
import { getToken } from '@/utils/auth';
|
|
|
|
import { tansParams, blobValidate } from '@/utils/ruoyi';
|
|
|
|
import cache from '@/plugins/cache';
|
|
|
|
import { HttpStatus } from '@/enums/RespEnum';
|
|
|
|
import { errorCode } from '@/utils/errorCode';
|
|
|
|
import { LoadingInstance } from 'element-plus/es/components/loading/src/loading';
|
|
|
|
import FileSaver from 'file-saver';
|
2023-04-19 11:05:30 +08:00
|
|
|
import { getLanguage } from '@/lang';
|
2023-11-20 19:27:03 +08:00
|
|
|
import { encryptBase64, encryptWithAes, generateAesKey, decryptWithAes, decryptBase64 } from '@/utils/crypto';
|
|
|
|
import { encrypt, decrypt } from '@/utils/jsencrypt';
|
2024-09-06 17:58:28 +08:00
|
|
|
import router from "@/router";
|
2023-04-02 01:01:56 +08:00
|
|
|
|
2023-11-20 19:27:03 +08:00
|
|
|
const encryptHeader = 'encrypt-key';
|
2023-04-02 01:01:56 +08:00
|
|
|
let downloadLoadingInstance: LoadingInstance;
|
|
|
|
// 是否显示重新登录
|
|
|
|
export const isRelogin = { show: false };
|
2023-08-09 12:59:18 +08:00
|
|
|
export const globalHeaders = () => {
|
|
|
|
return {
|
2023-08-11 17:58:58 +08:00
|
|
|
Authorization: 'Bearer ' + getToken(),
|
2023-08-09 12:59:18 +08:00
|
|
|
clientid: import.meta.env.VITE_APP_CLIENT_ID
|
2023-08-11 17:58:58 +08:00
|
|
|
};
|
|
|
|
};
|
2023-04-02 01:01:56 +08:00
|
|
|
|
|
|
|
axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8';
|
2023-07-24 11:22:20 +00:00
|
|
|
axios.defaults.headers['clientid'] = import.meta.env.VITE_APP_CLIENT_ID;
|
2023-04-02 01:01:56 +08:00
|
|
|
// 创建 axios 实例
|
|
|
|
const service = axios.create({
|
2023-04-03 00:05:09 +08:00
|
|
|
baseURL: import.meta.env.VITE_APP_BASE_API,
|
|
|
|
timeout: 50000
|
2023-04-02 01:01:56 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// 请求拦截器
|
|
|
|
service.interceptors.request.use(
|
2023-04-03 00:05:09 +08:00
|
|
|
(config: InternalAxiosRequestConfig) => {
|
2023-04-19 11:05:30 +08:00
|
|
|
// 对应国际化资源文件后缀
|
|
|
|
config.headers['Content-Language'] = getLanguage();
|
|
|
|
|
2024-01-16 09:51:51 +08:00
|
|
|
const isToken = config.headers?.isToken === false;
|
2023-04-03 00:05:09 +08:00
|
|
|
// 是否需要防止数据重复提交
|
2024-01-16 09:51:51 +08:00
|
|
|
const isRepeatSubmit = config.headers?.repeatSubmit === false;
|
2023-07-10 18:20:38 +08:00
|
|
|
// 是否需要加密
|
2024-01-16 09:51:51 +08:00
|
|
|
const isEncrypt = config.headers?.isEncrypt === 'true';
|
|
|
|
|
2023-04-03 00:05:09 +08:00
|
|
|
if (getToken() && !isToken) {
|
|
|
|
config.headers['Authorization'] = 'Bearer ' + getToken(); // 让每个请求携带自定义token 请根据实际情况自行修改
|
|
|
|
}
|
|
|
|
// get请求映射params参数
|
|
|
|
if (config.method === 'get' && config.params) {
|
|
|
|
let url = config.url + '?' + tansParams(config.params);
|
|
|
|
url = url.slice(0, -1);
|
|
|
|
config.params = {};
|
|
|
|
config.url = url;
|
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
|
2023-04-03 00:05:09 +08:00
|
|
|
if (!isRepeatSubmit && (config.method === 'post' || config.method === 'put')) {
|
|
|
|
const requestObj = {
|
|
|
|
url: config.url,
|
|
|
|
data: typeof config.data === 'object' ? JSON.stringify(config.data) : config.data,
|
|
|
|
time: new Date().getTime()
|
|
|
|
};
|
|
|
|
const sessionObj = cache.session.getJSON('sessionObj');
|
|
|
|
if (sessionObj === undefined || sessionObj === null || sessionObj === '') {
|
|
|
|
cache.session.setJSON('sessionObj', requestObj);
|
|
|
|
} else {
|
|
|
|
const s_url = sessionObj.url; // 请求地址
|
|
|
|
const s_data = sessionObj.data; // 请求数据
|
|
|
|
const s_time = sessionObj.time; // 请求时间
|
|
|
|
const interval = 500; // 间隔时间(ms),小于此时间视为重复提交
|
|
|
|
if (s_data === requestObj.data && requestObj.time - s_time < interval && s_url === requestObj.url) {
|
|
|
|
const message = '数据正在处理,请勿重复提交';
|
|
|
|
console.warn(`[${s_url}]: ` + message);
|
|
|
|
return Promise.reject(new Error(message));
|
|
|
|
} else {
|
|
|
|
cache.session.setJSON('sessionObj', requestObj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-04 14:18:21 +08:00
|
|
|
if (import.meta.env.VITE_APP_ENCRYPT === 'true') {
|
|
|
|
// 当开启参数加密
|
|
|
|
if (isEncrypt && (config.method === 'post' || config.method === 'put')) {
|
|
|
|
// 生成一个 AES 密钥
|
|
|
|
const aesKey = generateAesKey();
|
|
|
|
config.headers[encryptHeader] = encrypt(encryptBase64(aesKey));
|
|
|
|
config.data = typeof config.data === 'object' ? encryptWithAes(JSON.stringify(config.data), aesKey) : encryptWithAes(config.data, aesKey);
|
|
|
|
}
|
2023-07-10 18:20:38 +08:00
|
|
|
}
|
2023-04-13 18:59:33 +08:00
|
|
|
// FormData数据去请求头Content-Type
|
|
|
|
if (config.data instanceof FormData) {
|
|
|
|
delete config.headers['Content-Type'];
|
|
|
|
}
|
2023-04-03 00:05:09 +08:00
|
|
|
return config;
|
|
|
|
},
|
|
|
|
(error: any) => {
|
|
|
|
return Promise.reject(error);
|
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
);
|
|
|
|
|
|
|
|
// 响应拦截器
|
|
|
|
service.interceptors.response.use(
|
2023-04-13 18:59:33 +08:00
|
|
|
(res: AxiosResponse) => {
|
2024-03-04 14:18:21 +08:00
|
|
|
if (import.meta.env.VITE_APP_ENCRYPT === 'true') {
|
|
|
|
// 加密后的 AES 秘钥
|
|
|
|
const keyStr = res.headers[encryptHeader];
|
|
|
|
// 加密
|
|
|
|
if (keyStr != null && keyStr != '') {
|
|
|
|
const data = res.data;
|
|
|
|
// 请求体 AES 解密
|
|
|
|
const base64Str = decrypt(keyStr);
|
|
|
|
// base64 解码 得到请求头的 AES 秘钥
|
|
|
|
const aesKey = decryptBase64(base64Str.toString());
|
|
|
|
// aesKey 解码 data
|
|
|
|
const decryptData = decryptWithAes(data, aesKey);
|
|
|
|
// 将结果 (得到的是 JSON 字符串) 转为 JSON
|
|
|
|
res.data = JSON.parse(decryptData);
|
|
|
|
}
|
2023-11-20 19:27:03 +08:00
|
|
|
}
|
2023-04-03 00:05:09 +08:00
|
|
|
// 未设置状态码则默认成功状态
|
|
|
|
const code = res.data.code || HttpStatus.SUCCESS;
|
|
|
|
// 获取错误信息
|
|
|
|
const msg = errorCode[code] || res.data.msg || errorCode['default'];
|
|
|
|
// 二进制数据则直接返回
|
|
|
|
if (res.request.responseType === 'blob' || res.request.responseType === 'arraybuffer') {
|
|
|
|
return res.data;
|
|
|
|
}
|
|
|
|
if (code === 401) {
|
|
|
|
// prettier-ignore
|
|
|
|
if (!isRelogin.show) {
|
|
|
|
isRelogin.show = true;
|
|
|
|
ElMessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', {
|
|
|
|
confirmButtonText: '重新登录',
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {
|
|
|
|
isRelogin.show = false;
|
|
|
|
useUserStore().logout().then(() => {
|
2024-09-06 17:58:28 +08:00
|
|
|
router.replace({
|
|
|
|
path: '/login',
|
|
|
|
query: {
|
|
|
|
redirect: encodeURIComponent(router.currentRoute.value.fullPath || '/')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
2023-04-03 00:05:09 +08:00
|
|
|
}).catch(() => {
|
|
|
|
isRelogin.show = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return Promise.reject('无效的会话,或者会话已过期,请重新登录。');
|
|
|
|
} else if (code === HttpStatus.SERVER_ERROR) {
|
|
|
|
ElMessage({ message: msg, type: 'error' });
|
|
|
|
return Promise.reject(new Error(msg));
|
|
|
|
} else if (code === HttpStatus.WARN) {
|
|
|
|
ElMessage({ message: msg, type: 'warning' });
|
|
|
|
return Promise.reject(new Error(msg));
|
|
|
|
} else if (code !== HttpStatus.SUCCESS) {
|
|
|
|
ElNotification.error({ title: msg });
|
|
|
|
return Promise.reject('error');
|
|
|
|
} else {
|
|
|
|
return Promise.resolve(res.data);
|
|
|
|
}
|
|
|
|
},
|
2023-04-13 18:59:33 +08:00
|
|
|
(error: any) => {
|
2023-04-03 00:05:09 +08:00
|
|
|
let { message } = error;
|
|
|
|
if (message == 'Network Error') {
|
|
|
|
message = '后端接口连接异常';
|
|
|
|
} else if (message.includes('timeout')) {
|
|
|
|
message = '系统接口请求超时';
|
|
|
|
} else if (message.includes('Request failed with status code')) {
|
|
|
|
message = '系统接口' + message.substr(message.length - 3) + '异常';
|
|
|
|
}
|
|
|
|
ElMessage({ message: message, type: 'error', duration: 5 * 1000 });
|
|
|
|
return Promise.reject(error);
|
|
|
|
}
|
2023-04-02 01:01:56 +08:00
|
|
|
);
|
|
|
|
// 通用下载方法
|
|
|
|
export function download(url: string, params: any, fileName: string) {
|
2023-04-03 00:05:09 +08:00
|
|
|
downloadLoadingInstance = ElLoading.service({ text: '正在下载数据,请稍候', background: 'rgba(0, 0, 0, 0.7)' });
|
|
|
|
// prettier-ignore
|
|
|
|
return service.post(url, params, {
|
|
|
|
transformRequest: [
|
2023-04-13 18:59:33 +08:00
|
|
|
(params: any) => {
|
2023-04-03 00:05:09 +08:00
|
|
|
return tansParams(params);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
|
|
responseType: 'blob'
|
2023-04-13 18:59:33 +08:00
|
|
|
}).then(async (resp: any) => {
|
2023-04-03 00:05:09 +08:00
|
|
|
const isLogin = blobValidate(resp);
|
|
|
|
if (isLogin) {
|
2023-04-13 18:59:33 +08:00
|
|
|
const blob = new Blob([resp]);
|
2023-04-02 01:01:56 +08:00
|
|
|
FileSaver.saveAs(blob, fileName);
|
2023-04-03 00:05:09 +08:00
|
|
|
} else {
|
|
|
|
const resText = await resp.data.text();
|
|
|
|
const rspObj = JSON.parse(resText);
|
|
|
|
const errMsg = errorCode[rspObj.code] || rspObj.msg || errorCode['default'];
|
|
|
|
ElMessage.error(errMsg);
|
|
|
|
}
|
|
|
|
downloadLoadingInstance.close();
|
2023-04-13 18:59:33 +08:00
|
|
|
}).catch((r: any) => {
|
2023-04-03 00:05:09 +08:00
|
|
|
console.error(r);
|
|
|
|
ElMessage.error('下载文件出现错误,请联系管理员!');
|
|
|
|
downloadLoadingInstance.close();
|
|
|
|
});
|
2023-04-02 01:01:56 +08:00
|
|
|
}
|
|
|
|
// 导出 axios 实例
|
|
|
|
export default service;
|