elk/server/utils/shared.ts

92 wiersze
2.7 KiB
TypeScript
Czysty Zwykły widok Historia

// @ts-expect-error unstorage needs to provide backwards-compatible subpath types
import _fs from 'unstorage/drivers/fs'
// @ts-expect-error unstorage needs to provide backwards-compatible subpath types
import _memory from 'unstorage/drivers/memory'
2023-01-01 19:30:39 +00:00
import { stringifyQuery } from 'ufo'
import { $fetch } from 'ofetch'
import type { Storage } from 'unstorage'
import cached from '../cache-driver'
import kv from '../cloudflare-driver'
// @ts-expect-error virtual import
import { env } from '#build-info'
// @ts-expect-error virtual import
import { driver } from '#storage-config'
2022-11-15 15:48:23 +00:00
import type { AppInfo } from '~/types'
import { APP_NAME } from '~/constants'
2022-11-15 14:29:46 +00:00
const fs = _fs as typeof import('unstorage/dist/drivers/fs')['default']
const memory = _memory as typeof import('unstorage/dist/drivers/memory')['default']
const storage = useStorage() as Storage
if (driver === 'fs') {
const config = useRuntimeConfig()
storage.mount('servers', fs({ base: config.storage.fsBase }))
}
else if (driver === 'cloudflare') {
const config = useRuntimeConfig()
storage.mount('servers', cached(kv({
accountId: config.cloudflare.accountId,
namespaceId: config.cloudflare.namespaceId,
apiToken: config.cloudflare.apiToken,
})))
}
else if (driver === 'memory') {
storage.mount('servers', memory())
}
2023-01-01 19:30:39 +00:00
export function getRedirectURI(origin: string, server: string) {
return `${origin}/api/${server}/oauth?${stringifyQuery({ origin })}`
}
2023-01-01 19:30:39 +00:00
async function fetchAppInfo(origin: string, server: string) {
const app: AppInfo = await $fetch(`https://${server}/api/v1/apps`, {
method: 'POST',
body: {
client_name: APP_NAME + (env !== 'release' ? ` (${env})` : ''),
website: 'https://elk.zone',
2023-01-01 19:30:39 +00:00
redirect_uris: getRedirectURI(origin, server),
scopes: 'read write follow push',
},
2022-11-15 15:48:23 +00:00
})
return app
}
2023-01-01 19:30:39 +00:00
export async function getApp(origin: string, server: string) {
const host = origin.replace(/^https?:\/\//, '').replace(/[^\w\d]/g, '-')
const key = `servers:v2:${server}:${host}.json`.toLowerCase()
try {
if (await storage.hasItem(key))
return await storage.getItem(key) as Promise<AppInfo>
2023-01-01 19:30:39 +00:00
const appInfo = await fetchAppInfo(origin, server)
await storage.setItem(key, appInfo)
return appInfo
}
catch {
return null
}
2022-11-15 14:29:46 +00:00
}
2022-12-24 00:07:38 +00:00
2023-01-15 09:34:17 +00:00
export async function deleteApp(server: string) {
const keys = (await storage.getKeys(`servers:v2:${server}:`))
2023-01-15 09:34:17 +00:00
for (const key of keys)
await storage.removeItem(key)
}
2022-12-24 00:07:38 +00:00
export async function listServers() {
const keys = await storage.getKeys('servers:v2:')
2022-12-24 00:07:38 +00:00
const servers = new Set<string>()
for await (const key of keys) {
const id = key.split(':')[2]
2022-12-24 00:07:38 +00:00
if (id)
2022-12-24 00:51:45 +00:00
servers.add(id.toLocaleLowerCase())
2022-12-24 00:07:38 +00:00
}
return Array.from(servers).sort()
}