mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-29 21:33:54 +00:00
60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
import { Log } from "../util/log"
|
|
import { App } from "../app/app"
|
|
import { Bus } from "../bus"
|
|
import path from "path"
|
|
import z from "zod"
|
|
import fs from "fs/promises"
|
|
|
|
export namespace Storage {
|
|
const log = Log.create({ service: "storage" })
|
|
|
|
export const Event = {
|
|
Write: Bus.event(
|
|
"storage.write",
|
|
z.object({ key: z.string(), content: z.any() }),
|
|
),
|
|
}
|
|
|
|
const state = App.state("storage", () => {
|
|
const app = App.info()
|
|
const dir = path.join(app.path.data, "storage")
|
|
log.info("init", { path: dir })
|
|
return {
|
|
dir,
|
|
}
|
|
})
|
|
|
|
export async function remove(key: string) {
|
|
const target = path.join(state().dir, key + ".json")
|
|
await fs.unlink(target).catch(() => {})
|
|
}
|
|
|
|
export async function readJSON<T>(key: string) {
|
|
return Bun.file(path.join(state().dir, key + ".json")).json() as Promise<T>
|
|
}
|
|
|
|
export async function writeJSON<T>(key: string, content: T) {
|
|
const target = path.join(state().dir, key + ".json")
|
|
const tmp = target + Date.now() + ".tmp"
|
|
await Bun.write(tmp, JSON.stringify(content))
|
|
await fs.rename(tmp, target).catch(() => {})
|
|
await fs.unlink(tmp).catch(() => {})
|
|
Bus.publish(Event.Write, { key, content })
|
|
}
|
|
|
|
const glob = new Bun.Glob("**/*")
|
|
export async function* list(prefix: string) {
|
|
try {
|
|
for await (const item of glob.scan({
|
|
cwd: path.join(state().dir, prefix),
|
|
onlyFiles: true,
|
|
})) {
|
|
const result = path.join(prefix, item.slice(0, -5))
|
|
yield result
|
|
}
|
|
} catch {
|
|
return
|
|
}
|
|
}
|
|
}
|