2022-11-24 15:48:52 +00:00
|
|
|
import type { AccountCredentials } from 'masto'
|
2022-11-22 23:08:36 +00:00
|
|
|
import { login as loginMasto } from 'masto'
|
|
|
|
import type { UserLogin } from '~/types'
|
2022-11-23 13:06:27 +00:00
|
|
|
import { DEFAULT_SERVER, STORAGE_KEY_CURRENT_USER, STORAGE_KEY_USERS } from '~/constants'
|
2022-11-22 23:08:36 +00:00
|
|
|
|
2022-11-23 13:06:27 +00:00
|
|
|
const users = useLocalStorage<UserLogin[]>(STORAGE_KEY_USERS, [], { deep: true })
|
|
|
|
const currentUserId = useLocalStorage<string>(STORAGE_KEY_CURRENT_USER, '')
|
2022-11-22 23:08:36 +00:00
|
|
|
|
|
|
|
export const currentUser = computed<UserLogin | undefined>(() => {
|
|
|
|
let user: UserLogin | undefined
|
2022-11-23 04:25:48 +00:00
|
|
|
if (currentUserId.value) {
|
|
|
|
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
|
|
|
})
|
|
|
|
|
|
|
|
export const currentServer = computed<string>(() => currentUser.value?.server || DEFAULT_SERVER)
|
|
|
|
|
2022-11-23 04:25:48 +00:00
|
|
|
export const useUsers = () => users
|
2022-11-23 03:48:01 +00:00
|
|
|
|
2022-11-24 15:48:52 +00:00
|
|
|
export async function loginTo(user: UserLogin & { account?: AccountCredentials }) {
|
2022-11-23 04:25:48 +00:00
|
|
|
const existing = users.value.findIndex(u => u.server === user.server && u.token === user.token)
|
2022-11-22 23:08:36 +00:00
|
|
|
if (existing !== -1) {
|
2022-11-23 04:25:48 +00:00
|
|
|
if (currentUserId.value === users.value[existing].account?.id)
|
2022-11-22 23:08:36 +00:00
|
|
|
return null
|
2022-11-23 04:25:48 +00:00
|
|
|
currentUserId.value = user.account?.id
|
2022-11-23 04:20:59 +00:00
|
|
|
await reloadPage()
|
2022-11-22 23:08:36 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
const masto = await loginMasto({
|
|
|
|
url: `https://${user.server}`,
|
|
|
|
accessToken: user.token,
|
|
|
|
})
|
|
|
|
const me = await masto.accounts.verifyCredentials()
|
|
|
|
user.account = me
|
|
|
|
|
2022-11-23 04:25:48 +00:00
|
|
|
users.value.push(user)
|
|
|
|
currentUserId.value = me.id
|
2022-11-23 04:20:59 +00:00
|
|
|
await reloadPage()
|
2022-11-22 23:08:36 +00:00
|
|
|
return true
|
|
|
|
}
|
2022-11-23 04:20:59 +00:00
|
|
|
|
|
|
|
export async function signout() {
|
|
|
|
// TODO: confirm
|
|
|
|
if (!currentUser.value)
|
|
|
|
return
|
|
|
|
|
2022-11-24 15:48:52 +00:00
|
|
|
const index = users.value.findIndex(u => u.account?.id === currentUser.value?.account.id)
|
2022-11-23 04:20:59 +00:00
|
|
|
if (index === -1)
|
|
|
|
return
|
|
|
|
|
2022-11-23 04:25:48 +00:00
|
|
|
users.value.splice(index, 1)
|
|
|
|
currentUserId.value = users.value[0]?.account?.id
|
2022-11-23 04:20:59 +00:00
|
|
|
await reloadPage()
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function reloadPage(path = '/') {
|
|
|
|
await nextTick()
|
|
|
|
location.pathname = path
|
|
|
|
}
|