2020-09-28 20:19:10 +08:00
|
|
|
import type { Router, RouteRecordRaw } from 'vue-router';
|
|
|
|
|
|
|
|
|
|
import { userStore } from '/@/store/modules/user';
|
|
|
|
|
import { permissionStore } from '/@/store/modules/permission';
|
2020-10-30 21:32:05 +08:00
|
|
|
|
2020-09-28 20:19:10 +08:00
|
|
|
import { PageEnum } from '/@/enums/pageEnum';
|
|
|
|
|
import { getToken } from '/@/utils/auth';
|
2020-10-30 21:32:05 +08:00
|
|
|
|
|
|
|
|
import { PAGE_NOT_FOUND_ROUTE } from '/@/router/constant';
|
2020-09-28 20:19:10 +08:00
|
|
|
import { RootRoute } from '../routes/index';
|
|
|
|
|
|
|
|
|
|
const LOGIN_PATH = PageEnum.BASE_LOGIN;
|
|
|
|
|
|
|
|
|
|
const whitePathList: PageEnum[] = [LOGIN_PATH];
|
|
|
|
|
|
|
|
|
|
export function createPermissionGuard(router: Router) {
|
|
|
|
|
router.beforeEach(async (to, from, next) => {
|
|
|
|
|
// Jump to the 404 page after processing the login
|
|
|
|
|
if (from.path === LOGIN_PATH && to.name === PAGE_NOT_FOUND_ROUTE.name) {
|
|
|
|
|
next(PageEnum.BASE_HOME);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Whitelist can be directly entered
|
|
|
|
|
if (whitePathList.includes(to.path as PageEnum)) {
|
|
|
|
|
next();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const token = getToken();
|
|
|
|
|
|
|
|
|
|
// token does not exist
|
|
|
|
|
if (!token) {
|
|
|
|
|
// You can access without permission. You need to set the routing meta.ignoreAuth to true
|
|
|
|
|
if (
|
|
|
|
|
to.meta.ignoreAuth
|
|
|
|
|
// || to.name === FULL_PAGE_NOT_FOUND_ROUTE.name
|
|
|
|
|
) {
|
|
|
|
|
next();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// redirect login page
|
|
|
|
|
const redirectPath = to.path ? `${LOGIN_PATH}?redirect=${to.path}` : LOGIN_PATH;
|
|
|
|
|
next(redirectPath);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (permissionStore.getIsDynamicAddedRouteState) {
|
|
|
|
|
next();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const routes = await permissionStore.buildRoutesAction();
|
|
|
|
|
routes.forEach((route) => {
|
|
|
|
|
router.addRoute(RootRoute.name!, route as RouteRecordRaw);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const redirectPath = (from.query.redirect || to.path) as string;
|
|
|
|
|
const redirect = decodeURIComponent(redirectPath);
|
|
|
|
|
const nextData = to.path === redirect ? { ...to, replace: true } : { path: redirect };
|
|
|
|
|
permissionStore.commitDynamicAddedRouteState(true);
|
|
|
|
|
next(nextData);
|
|
|
|
|
});
|
2020-10-30 21:32:05 +08:00
|
|
|
|
2020-09-28 20:19:10 +08:00
|
|
|
router.afterEach((to) => {
|
|
|
|
|
// Just enter the login page and clear the authentication information
|
|
|
|
|
if (to.path === LOGIN_PATH) {
|
|
|
|
|
userStore.resumeAllState();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|