mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-22 10:56:23 +08:00
fix(utils/request): token 過期 (301) 時重新導向至登入頁面 (#1448)
This commit is contained in:
parent
1c25f11821
commit
5ff8868d3e
|
@ -1,5 +1,6 @@
|
|||
import axios from 'axios';
|
||||
import { getCookie } from '@/utils/auth';
|
||||
import { getCookie, doLogout } from '@/utils/auth';
|
||||
import router from '@/router';
|
||||
|
||||
let baseURL = '';
|
||||
// Web 和 Electron 跑在不同端口避免同时启动时冲突
|
||||
|
@ -21,8 +22,12 @@ const service = axios.create({
|
|||
|
||||
service.interceptors.request.use(function (config) {
|
||||
if (!config.params) config.params = {};
|
||||
if (baseURL[0] !== '/' && !process.env.IS_ELECTRON) {
|
||||
config.params.cookie = `MUSIC_U=${getCookie('MUSIC_U')};`;
|
||||
if (baseURL.length) {
|
||||
if (baseURL[0] !== '/' && !process.env.IS_ELECTRON) {
|
||||
config.params.cookie = `MUSIC_U=${getCookie('MUSIC_U')};`;
|
||||
}
|
||||
} else {
|
||||
console.error("You must set up the baseURL in the service's config");
|
||||
}
|
||||
|
||||
if (!process.env.IS_ELECTRON && !config.url.includes('/login')) {
|
||||
|
@ -42,8 +47,29 @@ service.interceptors.response.use(
|
|||
const res = response.data;
|
||||
return res;
|
||||
},
|
||||
error => {
|
||||
return Promise.reject(error);
|
||||
async error => {
|
||||
/** @type {import('axios').AxiosResponse | null} */
|
||||
const response = error.response;
|
||||
const data = response.data;
|
||||
|
||||
if (
|
||||
response &&
|
||||
typeof data === 'object' &&
|
||||
data.code === 301 &&
|
||||
data.msg === '需要登录'
|
||||
) {
|
||||
console.warn('Token has expired. Logout now!');
|
||||
|
||||
// 登出帳戶
|
||||
doLogout();
|
||||
|
||||
// 導向登入頁面
|
||||
if (process.env.IS_ELECTRON === true) {
|
||||
router.push({ name: 'loginAccount' });
|
||||
} else {
|
||||
router.push({ name: 'login' });
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user