/* Copyright (c) 2018 - 2021 Michael Mayer This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . PhotoPrism® is a registered trademark of Michael Mayer. You may use it as required to describe our software, run your own server, for educational purposes, but not for offering commercial goods, products, or services without prior written permission. In other words, please ask. Feel free to send an e-mail to hello@photoprism.org if you have questions, want to support our work, or just want to say hello. Additional information can be found in our Developer Guide: https://docs.photoprism.org/developer-guide/ */ import "core-js/stable"; import "regenerator-runtime/runtime"; import Api from "common/api"; import Notify from "common/notify"; import Clipboard from "common/clipboard"; import Components from "component/components"; import Dialogs from "dialog/dialogs"; import Event from "pubsub-js"; import GetTextPlugin from "vue-gettext"; import Log from "common/log"; import PhotoPrism from "app.vue"; import Router from "vue-router"; import Routes from "routes"; import { config, session } from "session"; import { Settings } from "luxon"; import Socket from "common/websocket"; import Viewer from "common/viewer"; import Vue from "vue"; import Vuetify from "vuetify"; import VueLuxon from "vue-luxon"; import VueFilters from "vue2-filters"; import VueFullscreen from "vue-fullscreen"; import VueInfiniteScroll from "vue-infinite-scroll"; import VueModal from "vue-js-modal"; import Hls from "hls.js"; import { $gettext, Mount } from "common/vm"; import * as options from "options/options"; import offline from "offline-plugin/runtime"; // Initialize helpers const viewer = new Viewer(); const isPublic = config.get("public"); const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test( navigator.userAgent ); // Initialize language and detect alignment Vue.config.language = config.values.settings.ui.language; Settings.defaultLocale = Vue.config.language.substring(0, 2); const languages = options.Languages(); const rtl = languages.some((lang) => lang.value === Vue.config.language && lang.rtl); // HTTP Live Streaming (video support) window.Hls = Hls; // Assign helpers to VueJS prototype Vue.prototype.$event = Event; Vue.prototype.$notify = Notify; Vue.prototype.$viewer = viewer; Vue.prototype.$session = session; Vue.prototype.$api = Api; Vue.prototype.$log = Log; Vue.prototype.$socket = Socket; Vue.prototype.$config = config; Vue.prototype.$clipboard = Clipboard; Vue.prototype.$isMobile = isMobile; Vue.prototype.$rtl = rtl; // Register Vuetify Vue.use(Vuetify, { rtl, theme: config.theme.colors }); // Register other VueJS plugins Vue.use(GetTextPlugin, { translations: config.translations, silent: true, // !config.values.debug, defaultLanguage: Vue.config.language, autoAddKeyAttributes: true, }); Vue.use(VueLuxon); Vue.use(VueInfiniteScroll); Vue.use(VueFullscreen); Vue.use(VueModal, { dynamic: true, dynamicDefaults: { clickToClose: true } }); Vue.use(VueFilters); Vue.use(Components); Vue.use(Dialogs); Vue.use(Router); // Configure client-side routing const router = new Router({ routes: Routes, mode: "history", saveScrollPosition: true, scrollBehavior: (to, from, savedPosition) => { if (savedPosition) { return new Promise((resolve) => { Notify.ajaxWait().then(() => { setTimeout(() => { resolve(savedPosition); }, 200); }); }); } else { return { x: 0, y: 0 }; } }, }); router.beforeEach((to, from, next) => { if (document.querySelector(".v-dialog--active.v-dialog--fullscreen")) { // Disable back button in full-screen viewers and editors. next(false); } else if (to.matched.some((record) => record.meta.settings) && config.values.disable.settings) { next({ name: "home" }); } else if (to.matched.some((record) => record.meta.admin)) { if (isPublic || session.isAdmin()) { next(); } else { next({ name: "login", params: { nextUrl: to.fullPath }, }); } } else if (to.matched.some((record) => record.meta.auth)) { if (isPublic || session.isUser()) { next(); } else { next({ name: "login", params: { nextUrl: to.fullPath }, }); } } else { next(); } }); router.afterEach((to) => { if (to.meta.title && config.values.siteTitle !== to.meta.title) { config.page.title = $gettext(to.meta.title); window.document.title = config.values.siteTitle + ": " + config.page.title; } else { config.page.title = config.values.siteTitle; window.document.title = config.values.siteTitle + ": " + config.values.siteCaption; } }); // Pull client config every 10 minutes in case push fails (except on mobile to save battery). if (isMobile) { document.body.classList.add("mobile"); } else { setInterval(() => config.update(), 600000); } // Start application. Mount(Vue, PhotoPrism, router); offline.install();