2023-01-12 16:01:18 +00:00
|
|
|
import { createClient, fetchV1Instance } from 'masto'
|
2023-01-10 12:29:16 +00:00
|
|
|
import type { mastodon } from 'masto'
|
2023-01-14 09:55:09 +00:00
|
|
|
import type { EffectScope, Ref } from 'vue'
|
2023-01-10 07:49:49 +00:00
|
|
|
import type { MaybeComputedRef, RemovableRef } from '@vueuse/core'
|
2022-12-20 21:03:15 +00:00
|
|
|
import type { ElkMasto, UserLogin } from '~/types'
|
2022-12-17 23:29:16 +00:00
|
|
|
import {
|
|
|
|
DEFAULT_POST_CHARS_LIMIT,
|
|
|
|
STORAGE_KEY_CURRENT_USER,
|
2023-01-14 09:34:53 +00:00
|
|
|
STORAGE_KEY_CURRENT_USER_HANDLE,
|
2022-12-17 23:29:16 +00:00
|
|
|
STORAGE_KEY_NOTIFICATION,
|
|
|
|
STORAGE_KEY_NOTIFICATION_POLICY,
|
|
|
|
STORAGE_KEY_SERVERS,
|
|
|
|
STORAGE_KEY_USERS,
|
|
|
|
} from '~/constants'
|
|
|
|
import type { PushNotificationPolicy, PushNotificationRequest } from '~/composables/push-notifications/types'
|
2023-01-03 00:18:01 +00:00
|
|
|
import { useAsyncIDBKeyval } from '~/composables/idb'
|
2022-11-22 23:08:36 +00:00
|
|
|
|
2022-11-29 06:39:49 +00:00
|
|
|
const mock = process.mock
|
2023-01-01 19:38:05 +00:00
|
|
|
|
2023-01-03 00:18:01 +00:00
|
|
|
const initializeUsers = async (): Promise<Ref<UserLogin[]> | RemovableRef<UserLogin[]>> => {
|
2023-01-01 19:38:05 +00:00
|
|
|
let defaultUsers = mock ? [mock.user] : []
|
|
|
|
|
|
|
|
// Backward compatibility with localStorage
|
|
|
|
let removeUsersOnLocalStorage = false
|
|
|
|
if (globalThis?.localStorage) {
|
|
|
|
const usersOnLocalStorageString = globalThis.localStorage.getItem(STORAGE_KEY_USERS)
|
|
|
|
if (usersOnLocalStorageString) {
|
|
|
|
defaultUsers = JSON.parse(usersOnLocalStorageString)
|
|
|
|
removeUsersOnLocalStorage = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const users = process.server
|
|
|
|
? ref<UserLogin[]>(defaultUsers)
|
2023-01-03 00:18:01 +00:00
|
|
|
: await useAsyncIDBKeyval<UserLogin[]>(STORAGE_KEY_USERS, defaultUsers, { deep: true })
|
2023-01-01 19:38:05 +00:00
|
|
|
|
|
|
|
if (removeUsersOnLocalStorage)
|
|
|
|
globalThis.localStorage.removeItem(STORAGE_KEY_USERS)
|
|
|
|
|
|
|
|
return users
|
|
|
|
}
|
|
|
|
|
2023-01-03 00:18:01 +00:00
|
|
|
const users = await initializeUsers()
|
2023-01-08 09:16:15 +00:00
|
|
|
const instances = useLocalStorage<Record<string, mastodon.v1.Instance>>(STORAGE_KEY_SERVERS, mock ? mock.server : {}, { deep: true })
|
2022-11-29 06:39:49 +00:00
|
|
|
const currentUserId = useLocalStorage<string>(STORAGE_KEY_CURRENT_USER, mock ? mock.user.account.id : '')
|
2022-11-22 23:08:36 +00:00
|
|
|
|
|
|
|
export const currentUser = computed<UserLogin | undefined>(() => {
|
2022-11-23 04:25:48 +00:00
|
|
|
if (currentUserId.value) {
|
2022-12-20 14:44:19 +00:00
|
|
|
const user = users.value.find(user => user.account?.id === currentUserId.value)
|
2022-11-22 23:08:36 +00:00
|
|
|
if (user)
|
|
|
|
return user
|
|
|
|
}
|
|
|
|
// Fallback to the first account
|
2022-11-23 04:25:48 +00:00
|
|
|
return users.value[0]
|
2022-11-22 23:08:36 +00:00
|
|
|
})
|
|
|
|
|
2023-01-08 09:16:15 +00:00
|
|
|
const publicInstance = ref<mastodon.v1.Instance | null>(null)
|
|
|
|
export const currentInstance = computed<null | mastodon.v1.Instance>(() => currentUser.value ? instances.value[currentUser.value.server] ?? null : publicInstance.value)
|
2023-01-10 08:33:20 +00:00
|
|
|
export const isGlitchEdition = computed(() => currentInstance.value?.version.includes('+glitch'))
|
2022-12-13 13:49:22 +00:00
|
|
|
|
2023-01-07 21:38:31 +00:00
|
|
|
export const publicServer = ref('')
|
2022-11-29 20:51:52 +00:00
|
|
|
export const currentServer = computed<string>(() => currentUser.value?.server || publicServer.value)
|
2022-11-22 23:08:36 +00:00
|
|
|
|
2023-01-05 23:39:10 +00:00
|
|
|
// when multiple tabs: we need to reload window when sign in, switch account or sign out
|
|
|
|
if (process.client) {
|
|
|
|
const windowReload = () => {
|
|
|
|
document.visibilityState === 'visible' && window.location.reload()
|
|
|
|
}
|
|
|
|
watch(currentUserId, async (id, oldId) => {
|
|
|
|
// when sign in or switch account
|
|
|
|
if (id) {
|
|
|
|
if (id === currentUser.value?.account?.id) {
|
|
|
|
// when sign in, the other tab will not have the user, idb is not reactive
|
|
|
|
const newUser = users.value.find(user => user.account?.id === id)
|
|
|
|
// if the user is there, then we are switching account
|
|
|
|
if (newUser) {
|
|
|
|
// check if the change is on current tab: if so, don't reload
|
|
|
|
if (document.hasFocus() || document.visibilityState === 'visible')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('visibilitychange', windowReload, { capture: true })
|
|
|
|
}
|
|
|
|
// when sign out
|
|
|
|
else if (oldId) {
|
|
|
|
const oldUser = users.value.find(user => user.account?.id === oldId)
|
|
|
|
// when sign out, the other tab will not have the user, idb is not reactive
|
|
|
|
if (oldUser)
|
|
|
|
window.addEventListener('visibilitychange', windowReload, { capture: true })
|
|
|
|
}
|
|
|
|
}, { immediate: true, flush: 'post' })
|
|
|
|
|
2023-01-14 09:34:53 +00:00
|
|
|
// for injected script to read
|
2023-01-14 09:58:46 +00:00
|
|
|
const currentUserHandle = computed(() => currentUser.value?.account.acct || '')
|
|
|
|
watchEffect(() => {
|
|
|
|
localStorage.setItem(STORAGE_KEY_CURRENT_USER_HANDLE, currentUserHandle.value)
|
|
|
|
})
|
2023-01-14 09:34:53 +00:00
|
|
|
}
|
2022-11-23 03:48:01 +00:00
|
|
|
|
2022-12-20 00:16:15 +00:00
|
|
|
export const useUsers = () => users
|
2023-01-10 07:49:49 +00:00
|
|
|
export const useSelfAccount = (user: MaybeComputedRef<mastodon.v1.Account | undefined>) =>
|
|
|
|
computed(() => currentUser.value && resolveUnref(user)?.id === currentUser.value.account.id)
|
2022-11-25 14:01:28 +00:00
|
|
|
|
2022-11-25 14:21:07 +00:00
|
|
|
export const characterLimit = computed(() => currentInstance.value?.configuration.statuses.maxCharacters ?? DEFAULT_POST_CHARS_LIMIT)
|
2022-11-25 14:01:28 +00:00
|
|
|
|
2023-01-08 06:21:09 +00:00
|
|
|
async function loginTo(user?: Omit<UserLogin, 'account'> & { account?: mastodon.v1.AccountCredentials }) {
|
2022-12-04 19:56:33 +00:00
|
|
|
const route = useRoute()
|
|
|
|
const router = useRouter()
|
|
|
|
const server = user?.server || route.params.server as string || publicServer.value
|
2023-01-12 16:01:18 +00:00
|
|
|
const url = `https://${server}`
|
|
|
|
const instance = await fetchV1Instance({
|
|
|
|
url,
|
|
|
|
})
|
2023-01-12 16:04:37 +00:00
|
|
|
const masto = createClient({
|
2023-01-12 16:01:18 +00:00
|
|
|
url,
|
|
|
|
streamingApiUrl: instance.urls.streamingApi,
|
2022-11-27 15:13:04 +00:00
|
|
|
accessToken: user?.token,
|
2022-12-22 14:22:56 +00:00
|
|
|
disableVersionCheck: true,
|
2022-11-22 23:08:36 +00:00
|
|
|
})
|
2022-11-27 15:13:04 +00:00
|
|
|
|
2022-11-29 20:51:52 +00:00
|
|
|
if (!user?.token) {
|
2022-12-04 19:56:33 +00:00
|
|
|
publicServer.value = server
|
2023-01-12 16:01:18 +00:00
|
|
|
publicInstance.value = instance
|
2022-11-29 20:51:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2022-11-27 15:13:04 +00:00
|
|
|
try {
|
2023-01-12 16:01:18 +00:00
|
|
|
const [me, pushSubscription] = await Promise.all([
|
2023-01-08 06:21:09 +00:00
|
|
|
masto.v1.accounts.verifyCredentials(),
|
2022-12-23 18:28:10 +00:00
|
|
|
// if PWA is not enabled, don't get push subscription
|
|
|
|
useRuntimeConfig().public.pwaEnabled
|
|
|
|
// we get 404 response instead empty data
|
2023-01-08 06:21:09 +00:00
|
|
|
? masto.v1.webPushSubscriptions.fetch().catch(() => Promise.resolve(undefined))
|
2022-12-23 18:28:10 +00:00
|
|
|
: Promise.resolve(undefined),
|
2022-12-04 13:12:16 +00:00
|
|
|
])
|
|
|
|
|
2023-01-02 23:00:12 +00:00
|
|
|
if (!me.acct.includes('@'))
|
2023-01-08 09:16:15 +00:00
|
|
|
me.acct = `${me.acct}@${instance.uri}`
|
2023-01-02 23:00:12 +00:00
|
|
|
|
2022-11-27 15:13:04 +00:00
|
|
|
user.account = me
|
2022-12-17 23:29:16 +00:00
|
|
|
user.pushSubscription = pushSubscription
|
2022-12-04 13:12:16 +00:00
|
|
|
currentUserId.value = me.id
|
2022-12-20 00:16:15 +00:00
|
|
|
instances.value[server] = instance
|
2022-11-27 15:13:04 +00:00
|
|
|
|
|
|
|
if (!users.value.some(u => u.server === user.server && u.token === user.token))
|
|
|
|
users.value.push(user as UserLogin)
|
|
|
|
}
|
2023-01-12 05:39:22 +00:00
|
|
|
catch (err) {
|
|
|
|
console.error(err)
|
2022-11-27 15:13:04 +00:00
|
|
|
await signout()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-26 07:33:14 +00:00
|
|
|
// This only cleans up the URL; page content should stay the same
|
|
|
|
if (route.path === '/signin/callback') {
|
|
|
|
await router.push('/home')
|
|
|
|
}
|
|
|
|
|
|
|
|
else if ('server' in route.params && user?.token && !useNuxtApp()._processingMiddleware) {
|
2022-12-04 19:56:33 +00:00
|
|
|
await router.push({
|
|
|
|
...route,
|
|
|
|
force: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-11-27 15:13:04 +00:00
|
|
|
return masto
|
2022-11-22 23:08:36 +00:00
|
|
|
}
|
2022-11-23 04:20:59 +00:00
|
|
|
|
2023-01-08 06:21:09 +00:00
|
|
|
export function setAccountInfo(userId: string, account: mastodon.v1.AccountCredentials) {
|
2022-12-26 08:50:11 +00:00
|
|
|
const index = getUsersIndexByUserId(userId)
|
|
|
|
if (index === -1)
|
|
|
|
return false
|
|
|
|
|
|
|
|
users.value[index].account = account
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function pullMyAccountInfo() {
|
2023-01-08 06:21:09 +00:00
|
|
|
const account = await useMasto().v1.accounts.verifyCredentials()
|
2023-01-02 23:00:12 +00:00
|
|
|
if (!account.acct.includes('@'))
|
2023-01-08 09:16:15 +00:00
|
|
|
account.acct = `${account.acct}@${currentInstance.value!.uri}`
|
2023-01-02 23:00:12 +00:00
|
|
|
|
2023-01-01 19:42:11 +00:00
|
|
|
setAccountInfo(currentUserId.value, account)
|
2023-01-02 23:00:12 +00:00
|
|
|
cacheAccount(account, currentServer.value, true)
|
2022-12-26 08:50:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getUsersIndexByUserId(userId: string) {
|
|
|
|
return users.value.findIndex(u => u.account?.id === userId)
|
|
|
|
}
|
|
|
|
|
2022-12-22 13:48:20 +00:00
|
|
|
export async function removePushNotificationData(user: UserLogin, fromSWPushManager = true) {
|
2022-12-17 23:29:16 +00:00
|
|
|
// clear push subscription
|
|
|
|
user.pushSubscription = undefined
|
|
|
|
const { acct } = user.account
|
|
|
|
// clear request notification permission
|
|
|
|
delete useLocalStorage<PushNotificationRequest>(STORAGE_KEY_NOTIFICATION, {}).value[acct]
|
|
|
|
// clear push notification policy
|
|
|
|
delete useLocalStorage<PushNotificationPolicy>(STORAGE_KEY_NOTIFICATION_POLICY, {}).value[acct]
|
|
|
|
|
2022-12-23 18:28:10 +00:00
|
|
|
const pwaEnabled = useRuntimeConfig().public.pwaEnabled
|
2023-01-08 14:12:25 +00:00
|
|
|
const pwa = useNuxtApp().$pwa
|
|
|
|
const registrationError = pwa?.registrationError === true
|
|
|
|
const unregister = pwaEnabled && !registrationError && pwa?.registrationError === true && fromSWPushManager
|
2022-12-23 18:28:10 +00:00
|
|
|
|
2022-12-17 23:29:16 +00:00
|
|
|
// we remove the sw push manager if required and there are no more accounts with subscriptions
|
2023-01-08 14:12:25 +00:00
|
|
|
if (unregister && (users.value.length === 0 || users.value.every(u => !u.pushSubscription))) {
|
2022-12-17 23:29:16 +00:00
|
|
|
// clear sw push subscription
|
|
|
|
try {
|
|
|
|
const registration = await navigator.serviceWorker.ready
|
|
|
|
const subscription = await registration.pushManager.getSubscription()
|
|
|
|
if (subscription)
|
|
|
|
await subscription.unsubscribe()
|
|
|
|
}
|
|
|
|
catch {
|
2023-01-12 05:39:22 +00:00
|
|
|
// just ignore
|
2022-12-17 23:29:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-22 13:48:20 +00:00
|
|
|
export async function removePushNotifications(user: UserLogin) {
|
2022-12-23 18:28:10 +00:00
|
|
|
if (!user.pushSubscription)
|
2022-12-22 13:48:20 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
// unsubscribe push notifications
|
2023-01-12 05:39:22 +00:00
|
|
|
await useMasto().v1.webPushSubscriptions.remove().catch(() => Promise.resolve())
|
2022-12-22 13:48:20 +00:00
|
|
|
}
|
|
|
|
|
2022-11-23 04:20:59 +00:00
|
|
|
export async function signout() {
|
|
|
|
// TODO: confirm
|
|
|
|
if (!currentUser.value)
|
|
|
|
return
|
|
|
|
|
2022-12-20 15:56:54 +00:00
|
|
|
const masto = useMasto()
|
|
|
|
|
2022-11-26 19:33:36 +00:00
|
|
|
const _currentUserId = currentUser.value.account.id
|
|
|
|
|
|
|
|
const index = users.value.findIndex(u => u.account?.id === _currentUserId)
|
|
|
|
|
|
|
|
if (index !== -1) {
|
|
|
|
// Clear stale data
|
2022-12-13 13:22:27 +00:00
|
|
|
clearUserLocalStorage()
|
2022-12-20 00:16:15 +00:00
|
|
|
if (!users.value.some((u, i) => u.server === currentUser.value!.server && i !== index))
|
|
|
|
delete instances.value[currentUser.value.server]
|
2022-11-23 04:20:59 +00:00
|
|
|
|
2022-12-17 23:29:16 +00:00
|
|
|
await removePushNotifications(currentUser.value)
|
|
|
|
|
2022-12-22 13:48:20 +00:00
|
|
|
await removePushNotificationData(currentUser.value)
|
|
|
|
|
2022-11-29 05:43:06 +00:00
|
|
|
currentUserId.value = ''
|
2022-11-26 19:33:36 +00:00
|
|
|
// Remove the current user from the users
|
|
|
|
users.value.splice(index, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set currentUserId to next user if available
|
2022-11-23 04:25:48 +00:00
|
|
|
currentUserId.value = users.value[0]?.account?.id
|
2022-11-26 19:33:36 +00:00
|
|
|
|
2022-11-27 15:13:04 +00:00
|
|
|
if (!currentUserId.value)
|
2022-12-11 23:30:26 +00:00
|
|
|
await useRouter().push('/')
|
2022-11-23 04:20:59 +00:00
|
|
|
|
2022-12-20 15:56:54 +00:00
|
|
|
await masto.loginTo(currentUser.value)
|
2022-11-23 04:20:59 +00:00
|
|
|
}
|
2022-12-02 02:18:57 +00:00
|
|
|
|
|
|
|
export function checkLogin() {
|
|
|
|
if (!currentUser.value) {
|
|
|
|
openSigninDialog()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2022-12-13 13:22:27 +00:00
|
|
|
|
2023-01-14 09:55:09 +00:00
|
|
|
interface UseUserLocalStorageCache {
|
|
|
|
scope: EffectScope
|
|
|
|
value: Ref<Record<string, any>>
|
|
|
|
}
|
|
|
|
|
2022-12-13 13:22:27 +00:00
|
|
|
/**
|
|
|
|
* Create reactive storage for the current user
|
|
|
|
*/
|
2023-01-14 10:09:17 +00:00
|
|
|
export function useUserLocalStorage<T extends object>(key: string, initial: () => T): Ref<T> {
|
|
|
|
if (process.server)
|
|
|
|
return shallowRef(initial())
|
|
|
|
|
2023-01-14 09:55:09 +00:00
|
|
|
// @ts-expect-error bind value to the function
|
|
|
|
const map: Map<string, UseUserLocalStorageCache> = useUserLocalStorage._ = useUserLocalStorage._ || new Map()
|
|
|
|
|
|
|
|
if (!map.has(key)) {
|
|
|
|
const scope = effectScope(true)
|
|
|
|
const value = scope.run(() => {
|
|
|
|
const all = useLocalStorage<Record<string, T>>(key, {}, { deep: true })
|
|
|
|
return computed(() => {
|
|
|
|
const id = currentUser.value?.account.id
|
|
|
|
? currentUser.value.account.acct
|
|
|
|
: '[anonymous]'
|
|
|
|
all.value[id] = Object.assign(initial(), all.value[id] || {})
|
|
|
|
return all.value[id]
|
|
|
|
})
|
|
|
|
})
|
|
|
|
map.set(key, { scope, value: value! })
|
|
|
|
}
|
|
|
|
|
2023-01-14 10:09:17 +00:00
|
|
|
return map.get(key)!.value as Ref<T>
|
2022-12-13 13:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear all storages for the given account
|
|
|
|
*/
|
2023-01-08 06:21:09 +00:00
|
|
|
export function clearUserLocalStorage(account?: mastodon.v1.Account) {
|
2022-12-13 13:22:27 +00:00
|
|
|
if (!account)
|
|
|
|
account = currentUser.value?.account
|
|
|
|
if (!account)
|
|
|
|
return
|
|
|
|
|
2023-01-08 09:16:15 +00:00
|
|
|
const id = `${account.acct}@${currentInstance.value?.uri || currentServer.value}`
|
2023-01-14 09:55:09 +00:00
|
|
|
|
2022-12-13 14:03:30 +00:00
|
|
|
// @ts-expect-error bind value to the function
|
2023-01-14 09:55:09 +00:00
|
|
|
const cacheMap = useUserLocalStorage._ as Map<string, UseUserLocalStorageCache> | undefined
|
|
|
|
cacheMap?.forEach(({ value }) => {
|
|
|
|
if (value.value[id])
|
|
|
|
delete value.value[id]
|
2022-12-13 13:22:27 +00:00
|
|
|
})
|
|
|
|
}
|
2022-12-20 21:03:15 +00:00
|
|
|
|
|
|
|
export const createMasto = () => {
|
2023-01-08 06:21:09 +00:00
|
|
|
const api = shallowRef<mastodon.Client | null>(null)
|
|
|
|
const apiPromise = ref<Promise<mastodon.Client> | null>(null)
|
2022-12-20 21:03:15 +00:00
|
|
|
const initialised = computed(() => !!api.value)
|
|
|
|
|
|
|
|
const masto = new Proxy({} as ElkMasto, {
|
|
|
|
get(_, key: keyof ElkMasto) {
|
|
|
|
if (key === 'loggedIn')
|
|
|
|
return initialised
|
|
|
|
|
|
|
|
if (key === 'loginTo') {
|
2023-01-08 06:21:09 +00:00
|
|
|
return (...args: any[]): Promise<mastodon.Client> => {
|
2022-12-20 21:03:15 +00:00
|
|
|
return 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.',
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (api.value && key in api.value)
|
2023-01-08 06:21:09 +00:00
|
|
|
return api.value[key as keyof mastodon.Client]
|
2022-12-20 21:03:15 +00:00
|
|
|
|
|
|
|
if (!api.value) {
|
|
|
|
return new Proxy({}, {
|
|
|
|
get(_, subkey) {
|
2022-12-26 08:34:30 +00:00
|
|
|
if (typeof subkey === 'string' && subkey.startsWith('iterate')) {
|
|
|
|
return (...args: any[]) => {
|
|
|
|
let paginator: any
|
|
|
|
function next() {
|
|
|
|
paginator = paginator || (api.value as any)?.[key][subkey](...args)
|
|
|
|
return paginator.next()
|
|
|
|
}
|
|
|
|
return { next }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-20 21:03:15 +00:00
|
|
|
return (...args: any[]) => apiPromise.value?.then((r: any) => r[key][subkey](...args))
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
return masto
|
|
|
|
}
|