2023-02-06 21:16:24 +09:00
|
|
|
import type { RouteLocationNormalized } from 'vue-router'
|
|
|
|
|
2022-12-05 04:56:33 +09:00
|
|
|
export default defineNuxtRouteMiddleware((to) => {
|
2022-12-18 01:55:29 +09:00
|
|
|
if (process.server)
|
|
|
|
return
|
2023-02-05 21:10:19 +09:00
|
|
|
|
2022-12-26 17:34:30 +09:00
|
|
|
if (to.path === '/signin/callback')
|
|
|
|
return
|
|
|
|
|
2023-02-06 21:16:24 +09:00
|
|
|
if (isHydrated.value)
|
|
|
|
return handleAuth(to)
|
|
|
|
|
|
|
|
onHydrated(() => handleAuth(to))
|
2022-11-15 22:54:13 +09:00
|
|
|
})
|
2023-02-06 21:16:24 +09:00
|
|
|
|
|
|
|
function handleAuth(to: RouteLocationNormalized) {
|
2023-07-07 19:56:06 +09:00
|
|
|
if (to.path === '/') {
|
|
|
|
// Installed PWA shortcut to notifications
|
|
|
|
if (to.query['notifications-pwa-shortcut'] !== undefined) {
|
|
|
|
if (currentUser.value)
|
|
|
|
return navigateTo('/notifications')
|
|
|
|
else
|
|
|
|
return navigateTo(`/${currentServer.value}/public/local`)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Installed PWA shortcut to local
|
|
|
|
if (to.query['local-pwa-shortcut'] !== undefined)
|
|
|
|
return navigateTo(`/${currentServer.value}/public/local`)
|
|
|
|
}
|
|
|
|
|
2023-02-06 21:16:24 +09:00
|
|
|
if (!currentUser.value) {
|
|
|
|
if (to.path === '/home' && to.query['share-target'] !== undefined)
|
|
|
|
return navigateTo('/share-target')
|
|
|
|
else
|
|
|
|
return navigateTo(`/${currentServer.value}/public/local`)
|
|
|
|
}
|
2023-07-07 19:56:06 +09:00
|
|
|
|
2023-02-06 21:16:24 +09:00
|
|
|
if (to.path === '/')
|
|
|
|
return navigateTo('/home')
|
|
|
|
}
|