243 lines
5.1 KiB
JavaScript
243 lines
5.1 KiB
JavaScript
import { createRouter, createWebHistory } from "vue-router";
|
|
import Login from "@/views/Login.vue";
|
|
import Layout from "@/views/Layout.vue";
|
|
import Files from "@/views/Files.vue";
|
|
import Share from "@/views/Share.vue";
|
|
import Users from "@/views/settings/Users.vue";
|
|
import User from "@/views/settings/User.vue";
|
|
import Settings from "@/views/Settings.vue";
|
|
import GlobalSettings from "@/views/settings/Global.vue";
|
|
import ProfileSettings from "@/views/settings/Profile.vue";
|
|
import Shares from "@/views/settings/Shares.vue";
|
|
import Errors from "@/views/Errors.vue";
|
|
import { useAuthStore } from "@/stores/auth";
|
|
import { baseURL, name } from "@/utils/constants";
|
|
import { i18n, rtlLanguages } from "@/i18n";
|
|
import { recaptcha, loginPage } from "@/utils/constants";
|
|
import { login, validateLogin } from "@/utils/auth";
|
|
|
|
const titles = {
|
|
Login: "sidebar.login",
|
|
Share: "buttons.share",
|
|
Files: "files.files",
|
|
Settings: "sidebar.settings",
|
|
ProfileSettings: "settings.profileSettings",
|
|
Shares: "settings.shareManagement",
|
|
GlobalSettings: "settings.globalSettings",
|
|
Users: "settings.users",
|
|
User: "settings.user",
|
|
Forbidden: "errors.forbidden",
|
|
NotFound: "errors.notFound",
|
|
InternalServerError: "errors.internal",
|
|
};
|
|
|
|
const routes = [
|
|
{
|
|
path: "/login",
|
|
name: "Login",
|
|
component: Login,
|
|
},
|
|
{
|
|
path: "/share",
|
|
component: Layout,
|
|
children: [
|
|
{
|
|
path: ":path*",
|
|
name: "Share",
|
|
component: Share,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "/files",
|
|
component: Layout,
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
children: [
|
|
{
|
|
path: ":path*",
|
|
name: "Files",
|
|
component: Files,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "/settings",
|
|
component: Layout,
|
|
meta: {
|
|
requiresAuth: true,
|
|
},
|
|
children: [
|
|
{
|
|
path: "",
|
|
name: "Settings",
|
|
component: Settings,
|
|
redirect: {
|
|
path: "/settings/profile",
|
|
},
|
|
children: [
|
|
{
|
|
path: "profile",
|
|
name: "ProfileSettings",
|
|
component: ProfileSettings,
|
|
},
|
|
{
|
|
path: "shares",
|
|
name: "Shares",
|
|
component: Shares,
|
|
},
|
|
{
|
|
path: "global",
|
|
name: "GlobalSettings",
|
|
component: GlobalSettings,
|
|
meta: {
|
|
requiresAdmin: true,
|
|
},
|
|
},
|
|
{
|
|
path: "users",
|
|
name: "Users",
|
|
component: Users,
|
|
meta: {
|
|
requiresAdmin: true,
|
|
},
|
|
},
|
|
{
|
|
path: "users/:id(.*)*",
|
|
name: "User",
|
|
component: User,
|
|
meta: {
|
|
requiresAdmin: true,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: "/403",
|
|
name: "Forbidden",
|
|
component: Errors,
|
|
props: {
|
|
errorCode: 403,
|
|
showHeader: true,
|
|
},
|
|
},
|
|
{
|
|
path: "/404",
|
|
name: "NotFound",
|
|
component: Errors,
|
|
props: {
|
|
errorCode: 404,
|
|
showHeader: true,
|
|
},
|
|
},
|
|
{
|
|
path: "/500",
|
|
name: "InternalServerError",
|
|
component: Errors,
|
|
props: {
|
|
errorCode: 500,
|
|
showHeader: true,
|
|
},
|
|
},
|
|
// {
|
|
// path: "/files",
|
|
// redirect: {
|
|
// path: "/files/",
|
|
// },
|
|
// },
|
|
{
|
|
path: "/:catchAll(.*)*",
|
|
redirect: (to) => `/files${to.params.catchAll}`,
|
|
},
|
|
];
|
|
|
|
async function start() {
|
|
try {
|
|
if (loginPage) {
|
|
await validateLogin();
|
|
} else {
|
|
await login("", "", "");
|
|
}
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
|
|
if (recaptcha) {
|
|
await new Promise((resolve) => {
|
|
const check = () => {
|
|
if (typeof window.grecaptcha === "undefined") {
|
|
setTimeout(check, 100);
|
|
} else {
|
|
resolve();
|
|
}
|
|
};
|
|
|
|
check();
|
|
});
|
|
}
|
|
}
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(baseURL),
|
|
routes,
|
|
});
|
|
|
|
router.beforeResolve(async (to, from, next) => {
|
|
let title;
|
|
try {
|
|
title = i18n.global.t(titles[to.name]);
|
|
} catch (error) {
|
|
title = to.name;
|
|
}
|
|
// const title = titles[to.name];
|
|
document.title = title + " - " + name;
|
|
|
|
/*** RTL related settings per route ****/
|
|
const rtlSet = document.querySelector("body").classList.contains("rtl");
|
|
const shouldSetRtl = rtlLanguages.includes(i18n.global.locale);
|
|
switch (true) {
|
|
case shouldSetRtl && !rtlSet:
|
|
document.querySelector("body").classList.add("rtl");
|
|
break;
|
|
case !shouldSetRtl && rtlSet:
|
|
document.querySelector("body").classList.remove("rtl");
|
|
break;
|
|
}
|
|
|
|
const authStore = useAuthStore();
|
|
|
|
if (from.name == null) {
|
|
await start();
|
|
}
|
|
|
|
if (to.path.endsWith("/login") && authStore.isLoggedIn) {
|
|
next({ path: "/files/" });
|
|
return;
|
|
}
|
|
|
|
if (to.matched.some((record) => record.meta.requiresAuth)) {
|
|
if (!authStore.isLoggedIn) {
|
|
next({
|
|
path: "/login",
|
|
query: { redirect: to.fullPath },
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
if (to.matched.some((record) => record.meta.requiresAdmin)) {
|
|
if (!authStore.user.perm.admin) {
|
|
next({ path: "/403" });
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
next();
|
|
});
|
|
|
|
export { router, router as default };
|