87 lines
2.1 KiB
JavaScript
87 lines
2.1 KiB
JavaScript
import axios from 'axios'
|
|
import store from '@/store'
|
|
import storage from 'store'
|
|
import notification from 'ant-design-vue/es/notification'
|
|
import { VueAxios } from './axios'
|
|
import { ACCESS_TOKEN, APP_NAMESPACE } from '@/store/mutation-types'
|
|
|
|
// 创建 axios 实例
|
|
const request = axios.create({
|
|
// API 请求的默认前缀
|
|
baseURL: process.env.VUE_APP_API_BASE_URL,
|
|
timeout: 6000 // 请求超时时间
|
|
})
|
|
|
|
// 异常拦截处理器
|
|
const errorHandler = (error) => {
|
|
if (error.response) {
|
|
const data = error.response.data
|
|
// 从 localstorage 获取 token
|
|
const token = storage.get(ACCESS_TOKEN)
|
|
if (error.response.status === 403) {
|
|
notification.error({
|
|
message: 'Forbidden',
|
|
description: data.message
|
|
})
|
|
}
|
|
if (error.response.status === 401 && !(data.result && data.result.isLogin)) {
|
|
notification.error({
|
|
message: 'Unauthorized',
|
|
description: 'Authorization verification failed'
|
|
})
|
|
if (token) {
|
|
store.dispatch('Logout').then(() => {
|
|
setTimeout(() => {
|
|
window.location.reload()
|
|
}, 1500)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
return Promise.reject(error)
|
|
}
|
|
|
|
// request interceptor
|
|
request.interceptors.request.use(config => {
|
|
const token = storage.get(ACCESS_TOKEN)
|
|
const namespaceId = storage.get(APP_NAMESPACE)
|
|
// 如果 token 存在
|
|
// 让每个请求携带自定义 token 请根据实际情况自行修改
|
|
if (token) {
|
|
config.headers['EASY-RETRY-AUTH'] = token
|
|
}
|
|
if (namespaceId) {
|
|
config.headers['EASY-RETRY-NAMESPACE-ID'] = namespaceId
|
|
}
|
|
|
|
return config
|
|
}, errorHandler)
|
|
|
|
// response interceptor
|
|
request.interceptors.response.use((response) => {
|
|
const { status, message } = response.data
|
|
if (status === 0) {
|
|
notification.error({
|
|
message: message || 'Error',
|
|
duration: 3
|
|
})
|
|
return Promise.reject(new Error(message || 'Error'))
|
|
} else {
|
|
return response.data
|
|
}
|
|
}, errorHandler)
|
|
|
|
const installer = {
|
|
vm: {},
|
|
install (Vue) {
|
|
Vue.use(VueAxios, request)
|
|
}
|
|
}
|
|
|
|
export default request
|
|
|
|
export {
|
|
installer as VueAxios,
|
|
request as axios
|
|
}
|