123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- /* eslint-disable vue/one-component-per-file */
- import { createApp } from "vue";
- import VueTippy, { Tippy } from "vue-tippy";
- import { createRouter, createWebHistory } from "vue-router";
- import { createPinia } from "pinia";
- import "lofig";
- import { useUserAuthStore } from "@/stores/userAuth";
- import { useUserPreferencesStore } from "@/stores/userPreferences";
- import { useModalsStore } from "@/stores/modals";
- import ws from "@/ws";
- import ms from "@/ms";
- import AppComponent from "./App.vue";
- const defaultConfigURL = new URL(
- "/config/default.json",
- import.meta.url
- ).toString();
- const REQUIRED_CONFIG_VERSION = 13;
- lofig.folder = defaultConfigURL;
- const handleMetadata = attrs => {
- lofig.get("siteSettings.sitename").then(siteName => {
- if (siteName) {
- document.title = `${siteName} | ${attrs.title}`;
- } else {
- document.title = `Musare | ${attrs.title}`;
- }
- });
- };
- const app = createApp(AppComponent);
- app.use(VueTippy, {
- directive: "tippy", // => v-tippy
- flipDuration: 0,
- popperOptions: {
- modifiers: {
- preventOverflow: {
- enabled: true
- }
- }
- },
- allowHTML: true,
- defaultProps: { animation: "scale", touch: "hold" }
- });
- app.use(createPinia());
- app.component("Tippy", Tippy);
- app.component("PageMetadata", {
- watch: {
- $attrs: {
- // eslint-disable-next-line vue/no-arrow-functions-in-watch
- handler: attrs => {
- handleMetadata(attrs);
- },
- deep: true,
- immediate: true
- }
- },
- render() {
- return null;
- }
- });
- app.directive("scroll", {
- mounted(el, binding) {
- const f = evt => {
- clearTimeout(window.scrollDebounceId);
- window.scrollDebounceId = setTimeout(() => {
- if (binding.value(evt, el)) {
- window.removeEventListener("scroll", f);
- }
- }, 200);
- };
- window.addEventListener("scroll", f);
- }
- });
- app.directive("focus", {
- mounted(el) {
- window.focusedElementBefore = document.activeElement;
- el.focus();
- }
- });
- const router = createRouter({
- history: createWebHistory(),
- routes: [
- {
- name: "home",
- path: "/",
- component: () => import("@/pages/Home.vue")
- },
- {
- path: "/login",
- name: "login",
- redirect: "/"
- },
- {
- path: "/register",
- name: "register",
- redirect: "/"
- },
- {
- path: "/404",
- alias: ["/:pathMatch(.*)*"],
- component: () => import("@/pages/404.vue")
- },
- {
- path: "/terms",
- component: () => import("@/pages/Terms.vue")
- },
- {
- path: "/privacy",
- component: () => import("@/pages/Privacy.vue")
- },
- {
- path: "/team",
- component: () => import("@/pages/Team.vue")
- },
- {
- path: "/news",
- component: () => import("@/pages/News.vue")
- },
- {
- path: "/about",
- component: () => import("@/pages/About.vue")
- },
- {
- name: "profile",
- path: "/u/:username",
- component: () => import("@/pages/Profile/index.vue")
- },
- {
- path: "/settings",
- component: () => import("@/pages/Settings/index.vue"),
- meta: {
- loginRequired: true
- }
- },
- {
- path: "/reset_password",
- component: () => import("@/pages/ResetPassword.vue")
- },
- {
- path: "/set_password",
- props: { mode: "set" },
- component: () => import("@/pages/ResetPassword.vue"),
- meta: {
- loginRequired: true
- }
- },
- {
- path: "/admin",
- name: "admin",
- component: () => import("@/pages/Admin/index.vue"),
- children: [
- {
- path: "songs",
- component: () => import("@/pages/Admin/Songs/index.vue"),
- meta: { permissionRequired: "admin.view.songs" }
- },
- {
- path: "songs/import",
- component: () => import("@/pages/Admin/Songs/Import.vue"),
- meta: { permissionRequired: "admin.view.import" }
- },
- {
- path: "reports",
- component: () => import("@/pages/Admin/Reports.vue"),
- meta: { permissionRequired: "admin.view.reports" }
- },
- {
- path: "stations",
- component: () => import("@/pages/Admin/Stations.vue"),
- meta: { permissionRequired: "admin.view.stations" }
- },
- {
- path: "playlists",
- component: () => import("@/pages/Admin/Playlists.vue"),
- meta: { permissionRequired: "admin.view.playlists" }
- },
- {
- path: "users",
- component: () => import("@/pages/Admin/Users/index.vue"),
- meta: { permissionRequired: "admin.view.users" }
- },
- {
- path: "users/data-requests",
- component: () =>
- import("@/pages/Admin/Users/DataRequests.vue"),
- meta: { permissionRequired: "admin.view.dataRequests" }
- },
- {
- path: "users/punishments",
- component: () =>
- import("@/pages/Admin/Users/Punishments.vue"),
- meta: {
- permissionRequired: "admin.view.punishments"
- }
- },
- {
- path: "news",
- component: () => import("@/pages/Admin/News.vue"),
- meta: { permissionRequired: "admin.view.news" }
- },
- {
- path: "statistics",
- component: () => import("@/pages/Admin/Statistics.vue"),
- meta: {
- permissionRequired: "admin.view.statistics"
- }
- },
- {
- path: "youtube",
- component: () => import("@/pages/Admin/YouTube/index.vue"),
- meta: { permissionRequired: "admin.view.youtube" }
- },
- {
- path: "youtube/videos",
- component: () => import("@/pages/Admin/YouTube/Videos.vue"),
- meta: {
- permissionRequired: "admin.view.youtubeVideos"
- }
- }
- ],
- meta: {
- permissionRequired: "admin.view"
- }
- },
- {
- name: "station",
- path: "/:id",
- component: () => import("@/pages//Station/index.vue")
- }
- ]
- });
- const userAuthStore = useUserAuthStore();
- const modalsStore = useModalsStore();
- router.beforeEach((to, from, next) => {
- if (window.stationInterval) {
- clearInterval(window.stationInterval);
- window.stationInterval = 0;
- }
- // if (to.name === "station") {
- // modalsStore.closeModal("manageStation");
- // }
- modalsStore.closeAllModals();
- if (ws.socket && to.fullPath !== from.fullPath) {
- ws.clearCallbacks();
- ws.destroyListeners();
- }
- if (
- to.meta.loginRequired ||
- to.meta.permissionRequired ||
- to.meta.guestsOnly
- ) {
- const gotData = () => {
- if (to.meta.loginRequired && !userAuthStore.loggedIn)
- next({ path: "/login" });
- else if (
- to.meta.permissionRequired &&
- !userAuthStore.hasPermission(to.meta.permissionRequired)
- )
- next({ path: "/" });
- else if (to.meta.guestsOnly && userAuthStore.loggedIn)
- next({ path: "/" });
- else next();
- };
- if (userAuthStore.gotData && userAuthStore.gotPermissions) gotData();
- else {
- const unsubscribe = userAuthStore.$onAction(
- ({ name, after, onError }) => {
- if (name === "authData" || name === "updatePermissions") {
- after(() => {
- if (
- userAuthStore.gotData &&
- userAuthStore.gotPermissions
- )
- gotData();
- unsubscribe();
- });
- onError(() => {
- unsubscribe();
- });
- }
- }
- );
- }
- } else next();
- });
- app.use(router);
- lofig.folder = defaultConfigURL;
- (async () => {
- lofig.fetchConfig().then(config => {
- const { configVersion, skipConfigVersionCheck } = config;
- if (
- configVersion !== REQUIRED_CONFIG_VERSION &&
- !skipConfigVersionCheck
- ) {
- // eslint-disable-next-line no-alert
- alert(
- "CONFIG VERSION IS WRONG. PLEASE UPDATE YOUR CONFIG WITH THE HELP OF THE TEMPLATE FILE AND THE README FILE."
- );
- window.stop();
- }
- });
- const websocketsDomain = await lofig.get("backend.websocketsDomain");
- ws.init(websocketsDomain);
- if (await lofig.get("siteSettings.mediasession")) ms.init();
- ws.socket.on("ready", res => {
- const { loggedIn, role, username, userId, email } = res.data;
- userAuthStore.authData({
- loggedIn,
- role,
- username,
- email,
- userId
- });
- });
- ws.socket.on("keep.event:user.banned", res =>
- userAuthStore.banUser(res.data.ban)
- );
- ws.socket.on("keep.event:user.username.updated", res =>
- userAuthStore.updateUsername(res.data.username)
- );
- ws.socket.on("keep.event:user.preferences.updated", res => {
- const { preferences } = res.data;
- const {
- changeAutoSkipDisliked,
- changeNightmode,
- changeActivityLogPublic,
- changeAnonymousSongRequests,
- changeActivityWatch
- } = useUserPreferencesStore();
- if (preferences.autoSkipDisliked !== undefined)
- changeAutoSkipDisliked(preferences.autoSkipDisliked);
- if (preferences.nightmode !== undefined) {
- localStorage.setItem("nightmode", preferences.nightmode);
- changeNightmode(preferences.nightmode);
- }
- if (preferences.activityLogPublic !== undefined)
- changeActivityLogPublic(preferences.activityLogPublic);
- if (preferences.anonymousSongRequests !== undefined)
- changeAnonymousSongRequests(preferences.anonymousSongRequests);
- if (preferences.activityWatch !== undefined)
- changeActivityWatch(preferences.activityWatch);
- });
- ws.socket.on("keep.event:user.role.updated", res => {
- userAuthStore.updateRole(res.data.role);
- userAuthStore.updatePermissions().then(() => {
- const { meta } = router.currentRoute.value;
- if (
- meta &&
- meta.permissionRequired &&
- !userAuthStore.hasPermission(meta.permissionRequired)
- )
- window.location.href =
- "/?msg=You no longer have access to the page you were viewing.";
- });
- });
- app.mount("#root");
- })();
|