rt-sim-training-client/src/utils/auth.js

80 lines
2.2 KiB
JavaScript
Raw Normal View History

2019-07-05 10:18:17 +08:00
import SessionStorage from 'sessionstorage';
2019-07-02 16:29:52 +08:00
import { LoginParams } from '@/utils/login';
const TokenKey = 'Admin-Token';
const TokenScreenKey = 'Screen-Token';
const TokenPlanKey = 'Plan-Token';
// 设置教学实训仿真系统token
export function getToken() {
2019-07-05 10:18:17 +08:00
return SessionStorage.getItem(TokenKey);
2019-07-02 16:29:52 +08:00
}
export function setToken(token) {
2019-07-05 10:18:17 +08:00
return SessionStorage.setItem(TokenKey, token);
2019-07-02 16:29:52 +08:00
}
export function removeToken() {
2019-07-05 10:18:17 +08:00
return SessionStorage.removeItem(TokenKey);
2019-07-02 16:29:52 +08:00
}
// 设置大屏token
export function getScreenToken() {
2019-07-05 10:18:17 +08:00
return SessionStorage.getItem(TokenScreenKey);
2019-07-02 16:29:52 +08:00
}
export function setScreenToken(token) {
2019-07-05 10:18:17 +08:00
return SessionStorage.setItem(TokenScreenKey, token);
2019-07-02 16:29:52 +08:00
}
export function removeScreenToken() {
2019-07-05 10:18:17 +08:00
return SessionStorage.removeItem(TokenScreenKey);
2019-07-02 16:29:52 +08:00
}
// 设置琏计划token
export function getPlanToken() {
2019-07-05 10:18:17 +08:00
return SessionStorage.getItem(TokenPlanKey);
2019-07-02 16:29:52 +08:00
}
export function setPlanToken(token) {
2019-07-05 10:18:17 +08:00
return SessionStorage.setItem(TokenPlanKey, token);
2019-07-02 16:29:52 +08:00
}
export function removePlanToken() {
2019-07-05 10:18:17 +08:00
return SessionStorage.removeItem(TokenPlanKey);
2019-07-02 16:29:52 +08:00
}
// 根据路径判断获取token
export function handleToken() {
let path = window.location.href;
if (path.includes('/dp/') || path.includes('/display/dp')) {
return getScreenToken();
} else if (path.includes('/plan') || path.includes('/display/plan')) {
return getPlanToken();
} else {
return getToken();
}
}
// 根据路径清除token
export function handleRemoveToken() {
let path = window.location.href;
if (path.includes('/dp/') || path.includes('/display/dp')) {
return removeScreenToken();
} else if (path.includes('/plan') || path.includes('/display/plan')) {
return removePlanToken();
} else {
return removeToken();
}
}
// 根据route路径判断系统类型
export function gainClientId() {
let path = window.location.href;
let clientId = null;
if (path.includes('/dp/') || path.includes('/display/dp')) {
clientId = LoginParams.DaPing.clientId;
} else if (path.includes('/plan') || path.includes('/display/plan')) {
clientId = LoginParams.LianJiHua.clientId;
}
return clientId;
2019-07-05 10:18:17 +08:00
}