mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 14:10:44 +00:00
* refactor: extract filesystem safety primitives * refactor: use fs-safe for file access helpers * refactor: reuse fs-safe for media reads * refactor: use fs-safe for image reads * refactor: reuse fs-safe in qqbot media opener * refactor: reuse fs-safe for local media checks * refactor: consume cleaner fs-safe api * refactor: align fs-safe json option names * fix: preserve fs-safe migration contracts * refactor: use fs-safe primitive subpaths * refactor: use grouped fs-safe subpaths * refactor: align fs-safe api usage * refactor: adapt private state store api * chore: refresh proof gate * refactor: follow fs-safe json api split * refactor: follow reduced fs-safe surface * build: default fs-safe python helper off * fix: preserve fs-safe plugin sdk aliases * refactor: consolidate fs-safe usage * refactor: unify fs-safe store usage * refactor: trim fs-safe temp workspace usage * refactor: hide low-level fs-safe primitives * build: use published fs-safe package * fix: preserve outbound recovery durability after rebase * chore: refresh pr checks
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
import "../infra/fs-safe-defaults.js";
|
|
import { pathExists } from "../infra/fs-safe.js";
|
|
import { tryReadJson, tryReadJsonSync, writeJson, writeJsonSync } from "../infra/json-files.js";
|
|
|
|
/** Read small JSON blobs synchronously for token/state caches. */
|
|
// oxlint-disable-next-line typescript-eslint/no-unnecessary-type-parameters -- public SDK compatibility helper.
|
|
export function loadJsonFile<T = unknown>(filePath: string): T | undefined {
|
|
return tryReadJsonSync<T>(filePath) ?? undefined;
|
|
}
|
|
|
|
/** Persist small JSON blobs synchronously with restrictive permissions. */
|
|
export const saveJsonFile = writeJsonSync;
|
|
|
|
/** Read JSON from disk and fall back cleanly when the file is missing or invalid. */
|
|
export async function readJsonFileWithFallback<T>(
|
|
filePath: string,
|
|
fallback: T,
|
|
): Promise<{ value: T; exists: boolean }> {
|
|
const parsed = await tryReadJson<T>(filePath);
|
|
if (parsed != null) {
|
|
return { value: parsed, exists: true };
|
|
}
|
|
return { value: fallback, exists: await pathExists(filePath) };
|
|
}
|
|
|
|
/** Write JSON with secure file permissions and atomic replacement semantics. */
|
|
export async function writeJsonFileAtomically(filePath: string, value: unknown): Promise<void> {
|
|
await writeJson(filePath, value, {
|
|
mode: 0o600,
|
|
dirMode: 0o700,
|
|
trailingNewline: true,
|
|
});
|
|
}
|