2022-11-23 23:12:25 +00:00
|
|
|
// @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 _kv from 'unstorage/drivers/cloudflare-kv-http'
|
|
|
|
|
2022-11-15 14:29:46 +00:00
|
|
|
import { $fetch } from 'ohmyfetch'
|
2022-11-23 23:12:25 +00:00
|
|
|
import type { Storage } from 'unstorage'
|
|
|
|
|
|
|
|
import cached from './cache-driver'
|
|
|
|
|
2022-11-15 15:48:23 +00:00
|
|
|
import type { AppInfo } from '~/types'
|
2022-11-23 23:12:25 +00:00
|
|
|
import { APP_NAME } from '~/constants'
|
2022-11-15 14:29:46 +00:00
|
|
|
|
2022-11-25 16:57:29 +00:00
|
|
|
const runtimeConfig = useRuntimeConfig()
|
|
|
|
export const HOST_DOMAIN = runtimeConfig.deployUrl
|
|
|
|
|| (process.dev ? 'http://localhost:5314' : 'https://elk.zone')
|
|
|
|
|
2022-11-23 23:12:25 +00:00
|
|
|
const fs = _fs as typeof import('unstorage/dist/drivers/fs')['default']
|
|
|
|
const kv = _kv as typeof import('unstorage/dist/drivers/cloudflare-kv-http')['default']
|
2022-11-15 14:29:46 +00:00
|
|
|
|
2022-11-23 23:12:25 +00:00
|
|
|
const storage = useStorage() as Storage
|
|
|
|
|
|
|
|
if (process.dev) {
|
|
|
|
storage.mount('servers', fs({ base: 'node_modules/.cache/servers' }))
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const config = useRuntimeConfig()
|
|
|
|
storage.mount('servers', cached(kv({
|
|
|
|
accountId: config.cloudflare.accountId,
|
|
|
|
namespaceId: config.cloudflare.namespaceId,
|
|
|
|
apiToken: config.cloudflare.apiToken,
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
2022-11-25 16:57:29 +00:00
|
|
|
async function fetchAppInfo(host: string, server: string) {
|
2022-11-23 23:12:25 +00:00
|
|
|
const redirect_uris = [
|
|
|
|
'urn:ietf:wg:oauth:2.0:oob',
|
2022-11-25 16:57:29 +00:00
|
|
|
`${host}/api/${server}/oauth`,
|
2022-11-23 23:12:25 +00:00
|
|
|
].join('\n')
|
|
|
|
|
|
|
|
const app: AppInfo = await $fetch(`https://${server}/api/v1/apps`, {
|
|
|
|
method: 'POST',
|
|
|
|
body: {
|
|
|
|
client_name: APP_NAME,
|
|
|
|
redirect_uris,
|
|
|
|
scopes: 'read write follow push',
|
|
|
|
},
|
2022-11-15 15:48:23 +00:00
|
|
|
})
|
2022-11-23 23:12:25 +00:00
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
2022-11-25 16:57:29 +00:00
|
|
|
const serverKey = (host: string, server: string) => `servers:${host}:${server}.json`
|
2022-11-15 14:29:46 +00:00
|
|
|
|
2022-11-25 16:57:29 +00:00
|
|
|
export async function getApp(host: string, server: string) {
|
|
|
|
const key = serverKey(host, server)
|
2022-11-23 23:12:25 +00:00
|
|
|
if (await storage.hasItem(key))
|
|
|
|
return storage.getItem(key) as Promise<AppInfo>
|
|
|
|
|
|
|
|
try {
|
2022-11-25 16:57:29 +00:00
|
|
|
const appInfo = await fetchAppInfo(host, server)
|
2022-11-23 23:12:25 +00:00
|
|
|
await storage.setItem(key, appInfo)
|
|
|
|
return appInfo
|
|
|
|
}
|
|
|
|
catch {
|
|
|
|
return null
|
|
|
|
}
|
2022-11-15 14:29:46 +00:00
|
|
|
}
|