48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import fs from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
|
|
import JSON5 from "json5";
|
|
import { CONFIG_DIR } from "../utils.js";
|
|
import type { CronStoreFile } from "./types.js";
|
|
|
|
export const DEFAULT_CRON_DIR = path.join(CONFIG_DIR, "cron");
|
|
export const DEFAULT_CRON_STORE_PATH = path.join(DEFAULT_CRON_DIR, "jobs.json");
|
|
|
|
export function resolveCronStorePath(storePath?: string) {
|
|
if (storePath?.trim()) {
|
|
const raw = storePath.trim();
|
|
if (raw.startsWith("~"))
|
|
return path.resolve(raw.replace("~", os.homedir()));
|
|
return path.resolve(raw);
|
|
}
|
|
return DEFAULT_CRON_STORE_PATH;
|
|
}
|
|
|
|
export async function loadCronStore(storePath: string): Promise<CronStoreFile> {
|
|
try {
|
|
const raw = await fs.promises.readFile(storePath, "utf-8");
|
|
const parsed = JSON5.parse(raw) as Partial<CronStoreFile> | null;
|
|
const jobs = Array.isArray(parsed?.jobs) ? (parsed?.jobs as never[]) : [];
|
|
return {
|
|
version: 1,
|
|
jobs: jobs.filter(Boolean) as never as CronStoreFile["jobs"],
|
|
};
|
|
} catch {
|
|
return { version: 1, jobs: [] };
|
|
}
|
|
}
|
|
|
|
export async function saveCronStore(storePath: string, store: CronStoreFile) {
|
|
await fs.promises.mkdir(path.dirname(storePath), { recursive: true });
|
|
const tmp = `${storePath}.${process.pid}.${Math.random().toString(16).slice(2)}.tmp`;
|
|
const json = JSON.stringify(store, null, 2);
|
|
await fs.promises.writeFile(tmp, json, "utf-8");
|
|
await fs.promises.rename(tmp, storePath);
|
|
try {
|
|
await fs.promises.copyFile(storePath, `${storePath}.bak`);
|
|
} catch {
|
|
// best-effort
|
|
}
|
|
}
|