mirror of
https://github.com/jumpserver/lina.git
synced 2026-01-14 03:46:26 +00:00
Co-authored-by: Jiangjie.Bai <bugatti_it@163.com> Co-authored-by: Jiangjie.Bai <32935519+BaiJiangJie@users.noreply.github.com>
158 lines
4.0 KiB
JavaScript
158 lines
4.0 KiB
JavaScript
import axios from 'axios'
|
|
import i18n from '@/i18n/i18n'
|
|
import { getTokenFromCookie } from '@/utils/auth'
|
|
import { getErrorResponseMsg } from '@/utils/common'
|
|
import { refreshSessionIdAge } from '@/api/users'
|
|
import { Message, MessageBox } from 'element-ui'
|
|
import store from '@/store'
|
|
import axiosRetry from 'axios-retry'
|
|
import router from '@/router'
|
|
import { DEFAULT_ORG_ID } from '@/utils/org'
|
|
|
|
// create an axios instance
|
|
const service = axios.create({
|
|
baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url
|
|
// withCredentials: true, // send cookies when cross-domain requests
|
|
timeout: 60 * 1000 // request timeout
|
|
})
|
|
|
|
function beforeRequestAddToken(config) {
|
|
const csrfToken = getTokenFromCookie()
|
|
if (csrfToken) {
|
|
config.headers['X-CSRFToken'] = csrfToken
|
|
}
|
|
const queryOrgId = router.currentRoute.query?.oid
|
|
const storeOrgId = store.getters.currentOrg?.id
|
|
let orgId = queryOrgId || storeOrgId
|
|
if (!store.getters.publicSettings?.XPACK_ENABLED) {
|
|
orgId = DEFAULT_ORG_ID
|
|
}
|
|
if (orgId) {
|
|
config.headers['X-JMS-ORG'] = orgId
|
|
}
|
|
}
|
|
|
|
function beforeRequestAddTimezone(config) {
|
|
try {
|
|
config.headers['X-TZ'] = Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
} catch (e) {
|
|
// debug('Current browser not support Intl tools')
|
|
}
|
|
}
|
|
|
|
// request interceptor
|
|
service.interceptors.request.use(
|
|
config => {
|
|
// do something before request is sent
|
|
// NProgress.start()
|
|
beforeRequestAddToken(config)
|
|
beforeRequestAddTimezone(config)
|
|
return config
|
|
},
|
|
error => {
|
|
// do something with request error
|
|
// debug(error) // for debug
|
|
return Promise.reject(error)
|
|
}
|
|
)
|
|
|
|
function ifUnauthorized({ response, error }) {
|
|
if (response.status === 401) {
|
|
response.config.disableFlashErrorMsg = true
|
|
if (response.request.responseURL.indexOf('/users/profile/') !== -1) {
|
|
window.location = '/core/auth/login/'
|
|
return
|
|
}
|
|
const title = i18n.t('common.Info')
|
|
const msg = i18n.t('auth.LoginRequiredMsg')
|
|
MessageBox.confirm(msg, title, {
|
|
confirmButtonText: i18n.t('auth.ReLogin'),
|
|
cancelButtonText: i18n.t('common.Cancel'),
|
|
type: 'warning'
|
|
}).then(() => {
|
|
window.location = '/core/auth/login/'
|
|
})
|
|
}
|
|
}
|
|
|
|
function ifBadRequest({ response, error }) {
|
|
if (response.status === 400) {
|
|
error.message = i18n.t('common.BadRequestErrorMsg')
|
|
}
|
|
if (response.status === 403) {
|
|
error.message = i18n.t('common.BadRoleErrorMsg')
|
|
}
|
|
if (response.status === 409) {
|
|
error.response.status = 409
|
|
error.message = i18n.t('common.BadConflictErrorMsg')
|
|
}
|
|
}
|
|
|
|
export function flashErrorMsg({ response, error }) {
|
|
if (!response.config.disableFlashErrorMsg) {
|
|
const responseErrorMsg = getErrorResponseMsg(error)
|
|
const msg = responseErrorMsg || error.message
|
|
Message({
|
|
message: msg,
|
|
type: 'error',
|
|
duration: 5 * 1000
|
|
})
|
|
}
|
|
}
|
|
|
|
let timer = null
|
|
function refreshSessionAgeDelay(response) {
|
|
if (response.request.responseURL.indexOf('/users/profile/') !== -1) {
|
|
return
|
|
}
|
|
if (timer) {
|
|
clearTimeout(timer)
|
|
}
|
|
timer = setTimeout(function() {
|
|
refreshSessionIdAge()
|
|
}, 30 * 1000)
|
|
}
|
|
|
|
// response interceptor
|
|
service.interceptors.response.use(
|
|
/**
|
|
* If you want to get http information such as headers or status
|
|
* Please return response => response
|
|
*/
|
|
|
|
/**
|
|
* Determine the request status by custom code
|
|
* Here is just an example
|
|
* You can also judge the status by HTTP Status Code
|
|
*/
|
|
response => {
|
|
// NProgress.done()
|
|
refreshSessionAgeDelay(response)
|
|
const res = response.data
|
|
|
|
if (response.config.raw === 1) {
|
|
return response
|
|
}
|
|
return res
|
|
},
|
|
error => {
|
|
// NProgress.done()
|
|
if (!error.response) {
|
|
return Promise.reject(error)
|
|
}
|
|
|
|
const response = error.response
|
|
ifUnauthorized({ response, error })
|
|
ifBadRequest({ response, error })
|
|
flashErrorMsg({ response, error })
|
|
return Promise.reject(error)
|
|
}
|
|
)
|
|
|
|
axiosRetry(service, {
|
|
// 默认不开启请求重试
|
|
retries: 0
|
|
})
|
|
|
|
export default service
|