2022-11-27 15:13:04 +00:00
|
|
|
import type { MastoClient } from 'masto'
|
2022-12-17 16:55:29 +00:00
|
|
|
import type { ElkMasto } from '~/types'
|
2022-11-26 15:42:58 +00:00
|
|
|
|
2022-12-17 16:55:29 +00:00
|
|
|
export default defineNuxtPlugin(async (nuxtApp) => {
|
|
|
|
const api = shallowRef<MastoClient | null>(null)
|
|
|
|
const apiPromise = ref<Promise<MastoClient> | null>(null)
|
|
|
|
const initialised = computed(() => !!api.value)
|
|
|
|
|
|
|
|
const masto = new Proxy({} as ElkMasto, {
|
|
|
|
get(_, key: keyof ElkMasto) {
|
|
|
|
if (key === 'loggedIn')
|
|
|
|
return initialised
|
|
|
|
|
|
|
|
if (key === 'loginTo') {
|
|
|
|
return (...args: any[]) => {
|
|
|
|
apiPromise.value = loginTo(...args).then((r) => {
|
|
|
|
api.value = r
|
|
|
|
return masto
|
|
|
|
}).catch(() => {
|
|
|
|
// Show error page when Mastodon server is down
|
|
|
|
throw createError({
|
|
|
|
fatal: true,
|
|
|
|
statusMessage: 'Could not log into account.',
|
|
|
|
})
|
|
|
|
})
|
|
|
|
return apiPromise
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (api.value && key in api.value)
|
|
|
|
return api.value[key as keyof MastoClient]
|
|
|
|
|
|
|
|
if (!api) {
|
|
|
|
return new Proxy({}, {
|
|
|
|
get(_, subkey) {
|
|
|
|
return (...args: any[]) => apiPromise.value?.then((r: any) => r[key][subkey](...args))
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
if (process.client) {
|
2022-11-27 15:13:04 +00:00
|
|
|
const { query } = useRoute()
|
|
|
|
const user = typeof query.server === 'string' && typeof query.token === 'string'
|
2022-12-17 23:29:16 +00:00
|
|
|
? {
|
|
|
|
server: query.server,
|
|
|
|
token: query.token,
|
|
|
|
vapidKey: typeof query.vapid_key === 'string' ? query.vapid_key : undefined,
|
|
|
|
}
|
2022-11-27 15:13:04 +00:00
|
|
|
: currentUser.value
|
2022-11-26 19:33:36 +00:00
|
|
|
|
2022-12-17 16:55:29 +00:00
|
|
|
nuxtApp.hook('app:suspense:resolve', () => {
|
|
|
|
// TODO: improve upstream to make this synchronous (delayed auth)
|
|
|
|
masto.loginTo(user)
|
2022-11-26 15:42:58 +00:00
|
|
|
})
|
|
|
|
}
|
2022-11-28 09:01:14 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
provide: {
|
2022-12-17 16:55:29 +00:00
|
|
|
masto,
|
2022-11-28 09:01:14 +00:00
|
|
|
},
|
|
|
|
}
|
2022-11-26 15:42:58 +00:00
|
|
|
})
|