elk/pages/[...permalink].vue

44 lines
1 KiB
Vue
Raw Normal View History

2022-11-29 20:51:52 +00:00
<script setup lang="ts">
import { parseURL } from 'ufo'
definePageMeta({
name: 'permalink',
2022-11-29 20:51:52 +00:00
middleware: async (to) => {
const HANDLED_MASTO_URL = /^(https?:\/\/)?(\w+\.)+\w+\/(@[@\w\d\.]+)(\/\d+)?$/
try {
let permalink = Array.isArray(to.params.permalink)
? to.params.permalink.join('/')
: to.params.permalink
2022-11-29 20:51:52 +00:00
if (!HANDLED_MASTO_URL.test(permalink))
return '/home'
2022-11-29 20:51:52 +00:00
if (!permalink.startsWith('http'))
permalink = `https://${permalink}`
if (!currentUser.value) {
const { host, pathname } = parseURL(permalink)
await loginTo({ server: host! })
return pathname
}
2022-11-29 20:51:52 +00:00
const { value } = await useMasto().search({ q: permalink, resolve: true, limit: 1 }).next()
2022-11-29 20:51:52 +00:00
const { accounts, statuses } = value
if (statuses[0])
return getStatusRoute(statuses[0])
if (accounts[0])
return getAccountRoute(accounts[0])
2022-11-29 20:51:52 +00:00
}
catch {}
2022-11-29 20:51:52 +00:00
return '/home'
},
})
</script>
<template>
<div />
</template>