import type { MaybeRefOrGetter, RemovableRef } from '@vueuse/core' import type { mastodon } from 'masto' import type { EffectScope, Ref } from 'vue' import type { ElkMasto } from './masto/masto' import { withoutProtocol } from 'ufo' import type { PushNotificationPolicy, PushNotificationRequest } from '~/composables/push-notifications/types' import { DEFAULT_POST_CHARS_LIMIT, STORAGE_KEY_CURRENT_USER_HANDLE, STORAGE_KEY_NODES, STORAGE_KEY_NOTIFICATION, STORAGE_KEY_NOTIFICATION_POLICY, STORAGE_KEY_SERVERS, } from '~/constants' import type { UserLogin } from '~/types' import type { Overwrite } from '~/types/utils' const mock = process.mock const users: Ref | RemovableRef = import.meta.server ? ref([]) : ref([]) as RemovableRef const nodes = useLocalStorage>(STORAGE_KEY_NODES, {}, { deep: true }) export const currentUserHandle = useLocalStorage(STORAGE_KEY_CURRENT_USER_HANDLE, mock ? mock.user.account.id : '') export const instanceStorage = useLocalStorage>(STORAGE_KEY_SERVERS, mock ? mock.server : {}, { deep: true }) export type ElkInstance = Partial & { uri: string /** support GoToSocial */ accountDomain?: string | null } export function getInstanceCache(server: string): mastodon.v1.Instance | undefined { return instanceStorage.value[server] } export const currentUser = computed(() => { const handle = currentUserHandle.value const currentUsers = users.value if (handle) { const user = currentUsers.find(user => user.account?.acct === handle) if (user) return user } // Fallback to the first account return currentUsers.length ? currentUsers[0] : undefined }) const publicInstance = ref(null) export const currentInstance = computed(() => { const user = currentUser.value const storage = instanceStorage.value const instance = publicInstance.value return user ? storage[user.server] ?? null : instance }) export function getInstanceDomain(instance: ElkInstance) { return instance.accountDomain || withoutProtocol(instance.uri) } export const publicServer = ref('') export const currentServer = computed(() => currentUser.value?.server || publicServer.value) export const currentNodeInfo = computed>(() => nodes.value[currentServer.value] || null) export const isGotoSocial = computed(() => currentNodeInfo.value?.software?.name === 'gotosocial') export const isGlitchEdition = computed(() => currentInstance.value?.version?.includes('+glitch')) export function useUsers() { return users } export function useSelfAccount(user: MaybeRefOrGetter) { return computed(() => currentUser.value && resolveUnref(user)?.id === currentUser.value.account.id) } export const characterLimit = computed(() => currentInstance.value?.configuration?.statuses.maxCharacters ?? DEFAULT_POST_CHARS_LIMIT) export async function loginTo( masto: ElkMasto, user: Overwrite, ) { const { client } = masto const instance = mastoLogin(masto, user) // GoToSocial only API const url = `https://${user.server}` fetch(`${url}/nodeinfo/2.0`).then(r => r.json()).then((info) => { nodes.value[user.server] = info }).catch(() => undefined) if (!user?.token) { publicServer.value = user.server publicInstance.value = instance return } function getUser() { return users.value.find(u => u.server === user.server && u.token === user.token) } const account = getUser()?.account if (account) currentUserHandle.value = account.acct const [me, pushSubscription] = await Promise.all([ fetchAccountInfo(client.value, user.server), // if PWA is not enabled, don't get push subscription useAppConfig().pwaEnabled // we get 404 response instead empty data ? client.value.v1.push.subscription.fetch().catch(() => Promise.resolve(undefined)) : Promise.resolve(undefined), ]) const existingUser = getUser() if (existingUser) { existingUser.account = me existingUser.pushSubscription = pushSubscription } else { users.value.push({ ...user, account: me, pushSubscription, }) } currentUserHandle.value = me.acct } const accountPreferencesMap = new Map>() /** * @param account * @returns `true` when user ticked the preference to always expand posts with content warnings */ export function getExpandSpoilersByDefault(account: mastodon.v1.AccountCredentials) { return accountPreferencesMap.get(account.acct)?.['reading:expand:spoilers'] ?? false } /** * @param account * @returns `true` when user selected "Always show media" as Media Display preference */ export function getExpandMediaByDefault(account: mastodon.v1.AccountCredentials) { return accountPreferencesMap.get(account.acct)?.['reading:expand:media'] === 'show_all' } /** * @param account * @returns `true` when user selected "Always hide media" as Media Display preference */ export function getHideMediaByDefault(account: mastodon.v1.AccountCredentials) { return accountPreferencesMap.get(account.acct)?.['reading:expand:media'] === 'hide_all' } export async function fetchAccountInfo(client: mastodon.rest.Client, server: string) { // Try to fetch user preferences if the backend supports it. const fetchPrefs = async (): Promise> => { try { return await client.v1.preferences.fetch() } catch (e) { console.warn(`Cannot fetch preferences: ${e}`) return {} } } const [account, preferences] = await Promise.all([ client.v1.accounts.verifyCredentials(), fetchPrefs(), ]) if (!account.acct.includes('@')) { const webDomain = getInstanceDomainFromServer(server) account.acct = `${account.acct}@${webDomain}` } // TODO: lazy load preferences accountPreferencesMap.set(account.acct, preferences) cacheAccount(account, server, true) return account } export function getInstanceDomainFromServer(server: string) { const instance = getInstanceCache(server) const webDomain = instance ? getInstanceDomain(instance) : server return webDomain } export async function refreshAccountInfo() { const account = await fetchAccountInfo(useMastoClient(), currentServer.value) currentUser.value!.account = account return account } export async function removePushNotificationData(user: UserLogin, fromSWPushManager = true) { // clear push subscription user.pushSubscription = undefined const { acct } = user.account // clear request notification permission delete useLocalStorage(STORAGE_KEY_NOTIFICATION, {}).value[acct] // clear push notification policy delete useLocalStorage(STORAGE_KEY_NOTIFICATION_POLICY, {}).value[acct] const pwaEnabled = useAppConfig().pwaEnabled const pwa = useNuxtApp().$pwa const registrationError = pwa?.registrationError === true const unregister = pwaEnabled && !registrationError && pwa?.registrationError === true && fromSWPushManager // we remove the sw push manager if required and there are no more accounts with subscriptions if (unregister && (users.value.length === 0 || users.value.every(u => !u.pushSubscription))) { // clear sw push subscription try { const registration = await navigator.serviceWorker.ready const subscription = await registration.pushManager.getSubscription() if (subscription) await subscription.unsubscribe() } catch { // just ignore } } } export async function removePushNotifications(user: UserLogin) { if (!user.pushSubscription) return // unsubscribe push notifications await useMastoClient().v1.push.subscription.remove().catch(() => Promise.resolve()) } export async function switchUser(user: UserLogin) { const masto = useMasto() await loginTo(masto, user) // This only cleans up the URL; page content should stay the same const route = useRoute() const router = useRouter() if ('server' in route.params && user?.token && !useNuxtApp()._processingMiddleware) { await router.push({ ...route, force: true, }) } } export async function signOut() { // TODO: confirm if (!currentUser.value) return const masto = useMasto() const _currentUserId = currentUser.value.account.id const index = users.value.findIndex(u => u.account?.id === _currentUserId) if (index !== -1) { // Clear stale data clearUserLocalStorage() if (!users.value.some((u, i) => u.server === currentUser.value!.server && i !== index)) delete instanceStorage.value[currentUser.value.server] await removePushNotifications(currentUser.value) await removePushNotificationData(currentUser.value) currentUserHandle.value = '' // Remove the current user from the users users.value.splice(index, 1) } // Set currentUserId to next user if available currentUserHandle.value = users.value[0]?.account?.acct if (!currentUserHandle.value) await useRouter().push('/') await loginTo(masto, currentUser.value || { server: publicServer.value }) } export function checkLogin() { if (!currentUser.value) { openSigninDialog() return false } return true } interface UseUserLocalStorageCache { scope: EffectScope value: Ref> } /** * Create reactive storage for the current user * @param key * @param initial */ export function useUserLocalStorage(key: string, initial: () => T): Ref { if (import.meta.server || process.test) return shallowRef(initial()) // @ts-expect-error bind value to the function const map: Map = useUserLocalStorage._ = useUserLocalStorage._ || new Map() if (!map.has(key)) { const scope = effectScope(true) const value = scope.run(() => { const all = useLocalStorage>(key, {}, { deep: true }) return computed(() => { const id = currentUser.value?.account.id ? currentUser.value.account.acct : '[anonymous]' // Backward compatibility, respect webDomain in acct // In previous versions, acct was username@server instead of username@webDomain // for example: elk@m.webtoo.ls instead of elk@webtoo.ls if (!all.value[id]) { const [username, webDomain] = id.split('@') const server = currentServer.value if (webDomain && server && server !== webDomain) { const oldId = `${username}@${server}` const outdatedSettings = all.value[oldId] if (outdatedSettings) { const newAllValue = { ...all.value, [id]: outdatedSettings } delete newAllValue[oldId] all.value = newAllValue } } all.value[id] = Object.assign(initial(), all.value[id] || {}) } return all.value[id] }) }) map.set(key, { scope, value: value! }) } return map.get(key)!.value as Ref } /** * Clear all storages for the given account * @param account */ export function clearUserLocalStorage(account?: mastodon.v1.Account) { if (!account) account = currentUser.value?.account if (!account) return const id = `${account.acct}@${currentInstance.value ? getInstanceDomain(currentInstance.value) : currentServer.value}` // @ts-expect-error bind value to the function const cacheMap = useUserLocalStorage._ as Map | undefined cacheMap?.forEach(({ value }) => { if (value.value[id]) delete value.value[id] }) }