mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 15:20:44 +00:00
117 lines
3.1 KiB
TypeScript
117 lines
3.1 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import type { MigrationProviderContext } from "openclaw/plugin-sdk/plugin-entry";
|
|
import type { OpenClawConfig } from "openclaw/plugin-sdk/provider-auth";
|
|
import { resolvePreferredOpenClawTmpDir } from "openclaw/plugin-sdk/temp-path";
|
|
|
|
const tempRoots = new Set<string>();
|
|
|
|
const logger = {
|
|
info() {},
|
|
warn() {},
|
|
error() {},
|
|
debug() {},
|
|
};
|
|
|
|
export async function makeTempRoot() {
|
|
const root = await fs.mkdtemp(
|
|
path.join(resolvePreferredOpenClawTmpDir(), "openclaw-migrate-hermes-"),
|
|
);
|
|
tempRoots.add(root);
|
|
return root;
|
|
}
|
|
|
|
export async function cleanupTempRoots() {
|
|
for (const root of tempRoots) {
|
|
await fs.rm(root, { force: true, recursive: true });
|
|
}
|
|
tempRoots.clear();
|
|
}
|
|
|
|
export async function writeFile(filePath: string, content: string) {
|
|
await fs.mkdir(path.dirname(filePath), { recursive: true });
|
|
await fs.writeFile(filePath, content, "utf8");
|
|
}
|
|
|
|
export function makeConfigRuntime(
|
|
config: OpenClawConfig,
|
|
onWrite?: (next: OpenClawConfig) => void,
|
|
): NonNullable<MigrationProviderContext["runtime"]> {
|
|
const commitConfig = (next: OpenClawConfig) => {
|
|
for (const key of Object.keys(config) as Array<keyof OpenClawConfig>) {
|
|
delete config[key];
|
|
}
|
|
Object.assign(config, next);
|
|
onWrite?.(next);
|
|
};
|
|
|
|
return {
|
|
config: {
|
|
current: () => config,
|
|
mutateConfigFile: async ({
|
|
afterWrite,
|
|
mutate,
|
|
}: {
|
|
afterWrite?: unknown;
|
|
mutate: (draft: OpenClawConfig, context: unknown) => Promise<unknown> | void;
|
|
}) => {
|
|
const next = structuredClone(config);
|
|
const result = await mutate(next, {
|
|
previousHash: null,
|
|
snapshot: { config, raw: "", hash: null },
|
|
});
|
|
commitConfig(next);
|
|
return {
|
|
afterWrite,
|
|
followUp: { mode: "auto", requiresRestart: false },
|
|
nextConfig: next,
|
|
result,
|
|
};
|
|
},
|
|
replaceConfigFile: async ({
|
|
afterWrite,
|
|
nextConfig,
|
|
}: {
|
|
afterWrite?: unknown;
|
|
nextConfig: OpenClawConfig;
|
|
}) => {
|
|
commitConfig(nextConfig);
|
|
return { afterWrite, followUp: { mode: "auto", requiresRestart: false }, nextConfig };
|
|
},
|
|
},
|
|
} as NonNullable<MigrationProviderContext["runtime"]>;
|
|
}
|
|
|
|
export function makeContext(params: {
|
|
source: string;
|
|
stateDir: string;
|
|
workspaceDir: string;
|
|
config?: OpenClawConfig;
|
|
includeSecrets?: boolean;
|
|
overwrite?: boolean;
|
|
model?: NonNullable<NonNullable<OpenClawConfig["agents"]>["defaults"]>["model"];
|
|
reportDir?: string;
|
|
runtime?: MigrationProviderContext["runtime"];
|
|
}): MigrationProviderContext {
|
|
const config =
|
|
params.config ??
|
|
({
|
|
agents: {
|
|
defaults: {
|
|
workspace: params.workspaceDir,
|
|
...(params.model !== undefined ? { model: params.model } : {}),
|
|
},
|
|
},
|
|
} as OpenClawConfig);
|
|
return {
|
|
config,
|
|
stateDir: params.stateDir,
|
|
source: params.source,
|
|
includeSecrets: params.includeSecrets,
|
|
overwrite: params.overwrite,
|
|
reportDir: params.reportDir,
|
|
runtime: params.runtime,
|
|
logger,
|
|
};
|
|
}
|