2020-12-21 11:58:15 +08:00
|
|
|
|
import axios from 'axios'
|
2022-05-22 17:33:39 +08:00
|
|
|
|
import {Message, MessageBox, Notification} from 'element-ui'
|
2020-12-21 11:58:15 +08:00
|
|
|
|
import store from '@/store'
|
2022-05-22 20:09:48 +08:00
|
|
|
|
import {getAccessToken, getRefreshToken, getTenantId, setToken} from '@/utils/auth'
|
2020-12-21 11:58:15 +08:00
|
|
|
|
import errorCode from '@/utils/errorCode'
|
2022-04-18 21:15:01 +08:00
|
|
|
|
import {getPath, getTenantEnable} from "@/utils/ruoyi";
|
2022-05-09 22:46:52 +08:00
|
|
|
|
import {refreshToken} from "@/api/login";
|
2020-12-21 11:58:15 +08:00
|
|
|
|
|
2022-05-22 17:33:39 +08:00
|
|
|
|
// 需要忽略的提示。忽略后,自动 Promise.reject('error')
|
|
|
|
|
const ignoreMsgs = [
|
|
|
|
|
"无效的刷新令牌", // 刷新令牌被删除时,不用提示
|
|
|
|
|
"刷新令牌已过期" // 使用刷新令牌,刷新获取新的访问令牌时,结果因为过期失败,此时需要忽略。否则,会导致继续 401,无法跳转到登出界面
|
|
|
|
|
]
|
|
|
|
|
|
2022-02-17 19:05:06 +08:00
|
|
|
|
// 是否显示重新登录
|
2022-03-20 21:59:02 +08:00
|
|
|
|
export let isRelogin = { show: false };
|
2022-05-09 22:49:42 +08:00
|
|
|
|
// Axios 无感知刷新令牌,参考 https://www.dashingdog.cn/article/11 与 https://segmentfault.com/a/1190000020210980 实现
|
2022-05-09 22:46:52 +08:00
|
|
|
|
// 请求队列
|
|
|
|
|
let requestList = []
|
|
|
|
|
// 是否正在刷新中
|
|
|
|
|
let isRefreshToken = false
|
2022-02-17 19:05:06 +08:00
|
|
|
|
|
2020-12-21 11:58:15 +08:00
|
|
|
|
axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8'
|
|
|
|
|
// 创建axios实例
|
|
|
|
|
const service = axios.create({
|
|
|
|
|
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
2022-02-01 22:59:43 +08:00
|
|
|
|
baseURL: process.env.VUE_APP_BASE_API + '/admin-api/', // 此处的 /admin-api/ 地址,原因是后端的基础路径为 /admin-api/
|
2020-12-21 11:58:15 +08:00
|
|
|
|
// 超时
|
2022-05-22 20:09:48 +08:00
|
|
|
|
timeout: 30000,
|
|
|
|
|
// 禁用 Cookie 等信息
|
|
|
|
|
withCredentials: false,
|
2020-12-21 11:58:15 +08:00
|
|
|
|
})
|
|
|
|
|
// request拦截器
|
|
|
|
|
service.interceptors.request.use(config => {
|
|
|
|
|
// 是否需要设置 token
|
|
|
|
|
const isToken = (config.headers || {}).isToken === false
|
2022-05-09 19:40:10 +08:00
|
|
|
|
if (getAccessToken() && !isToken) {
|
|
|
|
|
config.headers['Authorization'] = 'Bearer ' + getAccessToken() // 让每个请求携带自定义token 请根据实际情况自行修改
|
2020-12-21 11:58:15 +08:00
|
|
|
|
}
|
2021-12-04 23:27:39 +08:00
|
|
|
|
// 设置租户
|
2022-02-20 00:33:12 +08:00
|
|
|
|
if (getTenantEnable()) {
|
2022-05-22 20:09:48 +08:00
|
|
|
|
const tenantId = getTenantId();
|
2022-02-20 00:33:12 +08:00
|
|
|
|
if (tenantId) {
|
|
|
|
|
config.headers['tenant-id'] = tenantId;
|
|
|
|
|
}
|
2021-12-04 23:27:39 +08:00
|
|
|
|
}
|
2020-12-21 11:58:15 +08:00
|
|
|
|
// get请求映射params参数
|
|
|
|
|
if (config.method === 'get' && config.params) {
|
|
|
|
|
let url = config.url + '?';
|
|
|
|
|
for (const propName of Object.keys(config.params)) {
|
|
|
|
|
const value = config.params[propName];
|
2022-11-08 13:31:08 +08:00
|
|
|
|
const part = encodeURIComponent(propName) + '='
|
2020-12-21 11:58:15 +08:00
|
|
|
|
if (value !== null && typeof(value) !== "undefined") {
|
|
|
|
|
if (typeof value === 'object') {
|
|
|
|
|
for (const key of Object.keys(value)) {
|
|
|
|
|
let params = propName + '[' + key + ']';
|
2022-11-08 13:31:08 +08:00
|
|
|
|
const subPart = encodeURIComponent(params) + '='
|
2020-12-21 11:58:15 +08:00
|
|
|
|
url += subPart + encodeURIComponent(value[key]) + "&";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
url += part + encodeURIComponent(value) + "&";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
url = url.slice(0, -1);
|
|
|
|
|
config.params = {};
|
|
|
|
|
config.url = url;
|
|
|
|
|
}
|
|
|
|
|
return config
|
|
|
|
|
}, error => {
|
|
|
|
|
console.log(error)
|
|
|
|
|
Promise.reject(error)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 响应拦截器
|
2022-05-22 17:33:39 +08:00
|
|
|
|
service.interceptors.response.use(async res => {
|
|
|
|
|
// 未设置状态码则默认成功状态
|
|
|
|
|
const code = res.data.code || 200;
|
|
|
|
|
// 获取错误信息
|
|
|
|
|
const msg = res.data.msg || errorCode[code] || errorCode['default']
|
|
|
|
|
if (ignoreMsgs.indexOf(msg) !== -1) { // 如果是忽略的错误码,直接返回 msg 异常
|
|
|
|
|
return Promise.reject(msg)
|
|
|
|
|
} else if (code === 401) {
|
|
|
|
|
// 如果未认证,并且未进行刷新令牌,说明可能是访问令牌过期了
|
|
|
|
|
if (!isRefreshToken) {
|
|
|
|
|
isRefreshToken = true;
|
|
|
|
|
// 1. 如果获取不到刷新令牌,则只能执行登出操作
|
|
|
|
|
if (!getRefreshToken()) {
|
|
|
|
|
return handleAuthorized();
|
2022-02-17 19:05:06 +08:00
|
|
|
|
}
|
2022-05-22 17:33:39 +08:00
|
|
|
|
// 2. 进行刷新访问令牌
|
|
|
|
|
try {
|
|
|
|
|
const refreshTokenRes = await refreshToken()
|
|
|
|
|
// 2.1 刷新成功,则回放队列的请求 + 当前请求
|
|
|
|
|
setToken(refreshTokenRes.data)
|
|
|
|
|
requestList.forEach(cb => cb())
|
|
|
|
|
return service(res.config)
|
|
|
|
|
} catch (e) {// 为什么需要 catch 异常呢?刷新失败时,请求因为 Promise.reject 触发异常。
|
|
|
|
|
// 2.2 刷新失败,只回放队列的请求
|
|
|
|
|
requestList.forEach(cb => cb())
|
|
|
|
|
// 提示是否要登出。即不回放当前请求!不然会形成递归
|
|
|
|
|
return handleAuthorized();
|
|
|
|
|
} finally {
|
|
|
|
|
requestList = []
|
|
|
|
|
isRefreshToken = false
|
2022-05-13 20:28:56 +08:00
|
|
|
|
}
|
2020-12-21 11:58:15 +08:00
|
|
|
|
} else {
|
2022-05-22 17:33:39 +08:00
|
|
|
|
// 添加到队列,等待刷新获取到新的令牌
|
|
|
|
|
return new Promise(resolve => {
|
|
|
|
|
requestList.push(() => {
|
|
|
|
|
res.config.headers['Authorization'] = 'Bearer ' + getAccessToken() // 让每个请求携带自定义token 请根据实际情况自行修改
|
|
|
|
|
resolve(service(res.config))
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
} else if (code === 500) {
|
|
|
|
|
Message({
|
|
|
|
|
message: msg,
|
|
|
|
|
type: 'error'
|
|
|
|
|
})
|
2023-02-04 20:38:51 +08:00
|
|
|
|
return Promise.reject(new Error(msg))
|
|
|
|
|
} else if (code === 501) {
|
|
|
|
|
Message({
|
|
|
|
|
type: 'error',
|
|
|
|
|
duration: 0,
|
|
|
|
|
message: msg
|
|
|
|
|
})
|
2022-05-22 17:33:39 +08:00
|
|
|
|
return Promise.reject(new Error(msg))
|
|
|
|
|
} else if (code === 901) {
|
|
|
|
|
Message({
|
|
|
|
|
type: 'error',
|
|
|
|
|
duration: 0,
|
|
|
|
|
dangerouslyUseHTMLString: true,
|
|
|
|
|
message: '<div>演示模式,无法进行写操作</div>'
|
|
|
|
|
+ '<div> </div>'
|
|
|
|
|
+ '<div>参考 https://doc.iocoder.cn/ 教程</div>'
|
|
|
|
|
+ '<div> </div>'
|
|
|
|
|
+ '<div>5 分钟搭建本地环境</div>',
|
|
|
|
|
})
|
|
|
|
|
return Promise.reject(new Error(msg))
|
|
|
|
|
} else if (code !== 200) {
|
|
|
|
|
if (msg === '无效的刷新令牌') { // hard coding:忽略这个提示,直接登出
|
|
|
|
|
console.log(msg)
|
|
|
|
|
} else {
|
|
|
|
|
Notification.error({
|
|
|
|
|
title: msg
|
|
|
|
|
})
|
2020-12-21 11:58:15 +08:00
|
|
|
|
}
|
2022-05-22 17:33:39 +08:00
|
|
|
|
return Promise.reject('error')
|
|
|
|
|
} else {
|
|
|
|
|
return res.data
|
|
|
|
|
}
|
|
|
|
|
}, error => {
|
2020-12-21 11:58:15 +08:00
|
|
|
|
console.log('err' + error)
|
2022-05-22 17:33:39 +08:00
|
|
|
|
let {message} = error;
|
2021-01-03 03:21:35 +08:00
|
|
|
|
if (message === "Network Error") {
|
2020-12-21 11:58:15 +08:00
|
|
|
|
message = "后端接口连接异常";
|
2022-05-22 17:33:39 +08:00
|
|
|
|
} else if (message.includes("timeout")) {
|
2020-12-21 11:58:15 +08:00
|
|
|
|
message = "系统接口请求超时";
|
2022-05-22 17:33:39 +08:00
|
|
|
|
} else if (message.includes("Request failed with status code")) {
|
2020-12-21 11:58:15 +08:00
|
|
|
|
message = "系统接口" + message.substr(message.length - 3) + "异常";
|
|
|
|
|
}
|
|
|
|
|
Message({
|
|
|
|
|
message: message,
|
|
|
|
|
type: 'error',
|
|
|
|
|
duration: 5 * 1000
|
|
|
|
|
})
|
|
|
|
|
return Promise.reject(error)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
2022-01-03 18:46:00 +08:00
|
|
|
|
export function getBaseHeader() {
|
|
|
|
|
return {
|
2022-05-09 19:40:10 +08:00
|
|
|
|
'Authorization': "Bearer " + getAccessToken(),
|
2022-05-22 20:09:48 +08:00
|
|
|
|
'tenant-id': getTenantId(),
|
2022-01-03 18:46:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-09 22:46:52 +08:00
|
|
|
|
function handleAuthorized() {
|
|
|
|
|
if (!isRelogin.show) {
|
|
|
|
|
isRelogin.show = true;
|
|
|
|
|
MessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', {
|
|
|
|
|
confirmButtonText: '重新登录',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}
|
|
|
|
|
).then(() => {
|
|
|
|
|
isRelogin.show = false;
|
|
|
|
|
store.dispatch('LogOut').then(() => {
|
|
|
|
|
location.href = getPath('/index');
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
isRelogin.show = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return Promise.reject('无效的会话,或者会话已过期,请重新登录。')
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 11:58:15 +08:00
|
|
|
|
export default service
|