Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
417 lines
14 KiB
TypeScript
417 lines
14 KiB
TypeScript
import type { Dirent } from "node:fs";
|
|
// Matrix API module exposes the plugin public contract.
|
|
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import {
|
|
legacyStateFileExists,
|
|
type PluginDoctorStateMigration,
|
|
} from "openclaw/plugin-sdk/runtime-doctor";
|
|
import {
|
|
hasMatrixSyncCacheStateInStore,
|
|
openMatrixSyncCacheStoreOptions,
|
|
readLegacyMatrixSyncCacheState,
|
|
writeMatrixSyncCacheStateToStore,
|
|
type MatrixSyncCacheRecord,
|
|
} from "./src/matrix/client/file-sync-store.js";
|
|
import {
|
|
hasMatrixStorageMetaStateInStore,
|
|
normalizeMatrixStorageMetadata,
|
|
openMatrixStorageMetaStoreOptions,
|
|
writeMatrixStorageMetaStateToStore,
|
|
type MatrixStorageMetadata,
|
|
} from "./src/matrix/client/storage.js";
|
|
import {
|
|
MATRIX_IDB_SNAPSHOT_FILENAME,
|
|
MATRIX_LEGACY_CRYPTO_MIGRATION_FILENAME,
|
|
MATRIX_RECOVERY_KEY_FILENAME,
|
|
hasMatrixIdbSnapshotStateInStore,
|
|
hasMatrixLegacyCryptoMigrationStateInStore,
|
|
hasMatrixRecoveryKeyStateInStore,
|
|
openMatrixIdbSnapshotStoreOptions,
|
|
openMatrixLegacyCryptoMigrationStoreOptions,
|
|
openMatrixRecoveryKeyStoreOptions,
|
|
readLegacyMatrixLegacyCryptoMigrationState,
|
|
readLegacyMatrixRecoveryKeyState,
|
|
writeMatrixIdbSnapshotJsonToStore,
|
|
writeMatrixLegacyCryptoMigrationStateToStore,
|
|
writeMatrixRecoveryKeyStateToStore,
|
|
type MatrixIdbSnapshotRecord,
|
|
type MatrixLegacyCryptoMigrationState,
|
|
} from "./src/matrix/crypto-state-store.js";
|
|
import { readLegacyMatrixIdbSnapshotState } from "./src/matrix/sdk/idb-persistence.js";
|
|
import type { MatrixStoredRecoveryKey } from "./src/matrix/sdk/types.js";
|
|
|
|
export { normalizeCompatibilityConfig, legacyConfigRules } from "./src/doctor-contract.js";
|
|
|
|
const MATRIX_SYNC_CACHE_FILENAME = "bot-storage.json";
|
|
const MATRIX_STORAGE_META_FILENAME = "storage-meta.json";
|
|
|
|
async function collectLegacyMatrixStateRoots(
|
|
stateDir: string,
|
|
filename: string,
|
|
): Promise<string[]> {
|
|
const matrixRoot = path.join(stateDir, "matrix");
|
|
const roots: string[] = [];
|
|
async function visit(dir: string): Promise<void> {
|
|
let entries: Dirent[];
|
|
try {
|
|
entries = await fs.readdir(dir, { withFileTypes: true });
|
|
} catch {
|
|
return;
|
|
}
|
|
for (const entry of entries) {
|
|
const entryPath = path.join(dir, entry.name);
|
|
if (entry.isFile() && entry.name === filename) {
|
|
roots.push(dir);
|
|
continue;
|
|
}
|
|
if (entry.isDirectory()) {
|
|
await visit(entryPath);
|
|
}
|
|
}
|
|
}
|
|
await visit(matrixRoot);
|
|
return roots.filter((root) => path.resolve(root) !== path.resolve(matrixRoot)).toSorted();
|
|
}
|
|
|
|
async function collectLegacySyncCacheRoots(stateDir: string): Promise<string[]> {
|
|
return collectLegacyMatrixStateRoots(stateDir, MATRIX_SYNC_CACHE_FILENAME);
|
|
}
|
|
|
|
async function readLegacyMatrixStorageMetadata(
|
|
storageRootDir: string,
|
|
): Promise<MatrixStorageMetadata | null> {
|
|
try {
|
|
return normalizeMatrixStorageMetadata(
|
|
JSON.parse(
|
|
await fs.readFile(path.join(storageRootDir, MATRIX_STORAGE_META_FILENAME), "utf8"),
|
|
),
|
|
);
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
async function archiveLegacySyncCache(params: {
|
|
storageRootDir: string;
|
|
changes: string[];
|
|
warnings: string[];
|
|
}): Promise<void> {
|
|
const sourcePath = path.join(params.storageRootDir, MATRIX_SYNC_CACHE_FILENAME);
|
|
const archivedPath = `${sourcePath}.migrated`;
|
|
if (await legacyStateFileExists(archivedPath)) {
|
|
params.warnings.push(
|
|
`Left migrated Matrix sync cache in place because ${archivedPath} already exists`,
|
|
);
|
|
return;
|
|
}
|
|
try {
|
|
await fs.rename(sourcePath, archivedPath);
|
|
params.changes.push(`Archived Matrix sync cache legacy source -> ${archivedPath}`);
|
|
} catch (err) {
|
|
params.warnings.push(`Failed archiving Matrix sync cache legacy source: ${String(err)}`);
|
|
}
|
|
}
|
|
|
|
async function archiveLegacyMatrixStateFile(params: {
|
|
storageRootDir: string;
|
|
filename: string;
|
|
label: string;
|
|
changes: string[];
|
|
warnings: string[];
|
|
}): Promise<void> {
|
|
const sourcePath = path.join(params.storageRootDir, params.filename);
|
|
const archivedPath = `${sourcePath}.migrated`;
|
|
if (await legacyStateFileExists(archivedPath)) {
|
|
params.warnings.push(
|
|
`Left migrated ${params.label} in place because ${archivedPath} already exists`,
|
|
);
|
|
return;
|
|
}
|
|
try {
|
|
await fs.rename(sourcePath, archivedPath);
|
|
params.changes.push(`Archived ${params.label} legacy source -> ${archivedPath}`);
|
|
} catch (err) {
|
|
params.warnings.push(`Failed archiving ${params.label} legacy source: ${String(err)}`);
|
|
}
|
|
}
|
|
|
|
export const stateMigrations: PluginDoctorStateMigration[] = [
|
|
{
|
|
id: "matrix-storage-meta-json-to-plugin-state",
|
|
label: "Matrix storage metadata",
|
|
async detectLegacyState(params) {
|
|
const previews: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_STORAGE_META_FILENAME,
|
|
)) {
|
|
if (!(await readLegacyMatrixStorageMetadata(storageRootDir))) {
|
|
continue;
|
|
}
|
|
previews.push(`Matrix storage metadata JSON can migrate to SQLite: ${storageRootDir}`);
|
|
}
|
|
return previews.length > 0 ? { preview: previews } : null;
|
|
},
|
|
async migrateLegacyState(params) {
|
|
const changes: string[] = [];
|
|
const warnings: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_STORAGE_META_FILENAME,
|
|
)) {
|
|
const payload = await readLegacyMatrixStorageMetadata(storageRootDir);
|
|
if (!payload) {
|
|
continue;
|
|
}
|
|
const store = params.context.openPluginStateKeyedStore<MatrixStorageMetadata>(
|
|
openMatrixStorageMetaStoreOptions(storageRootDir),
|
|
);
|
|
if (await hasMatrixStorageMetaStateInStore({ store })) {
|
|
warnings.push(
|
|
`Skipped Matrix storage metadata import for ${storageRootDir} because SQLite already has metadata`,
|
|
);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_STORAGE_META_FILENAME,
|
|
label: "Matrix storage metadata",
|
|
changes,
|
|
warnings,
|
|
});
|
|
continue;
|
|
}
|
|
await writeMatrixStorageMetaStateToStore({ payload, store });
|
|
changes.push(`Migrated Matrix storage metadata JSON to SQLite for ${storageRootDir}`);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_STORAGE_META_FILENAME,
|
|
label: "Matrix storage metadata",
|
|
changes,
|
|
warnings,
|
|
});
|
|
}
|
|
return { changes, warnings };
|
|
},
|
|
},
|
|
{
|
|
id: "matrix-sync-cache-json-to-plugin-state",
|
|
label: "Matrix sync cache",
|
|
async detectLegacyState(params) {
|
|
const previews: string[] = [];
|
|
for (const storageRootDir of await collectLegacySyncCacheRoots(params.stateDir)) {
|
|
const persisted = await readLegacyMatrixSyncCacheState(storageRootDir);
|
|
if (!persisted) {
|
|
continue;
|
|
}
|
|
previews.push(`Matrix sync cache JSON can migrate to SQLite: ${storageRootDir}`);
|
|
}
|
|
return previews.length > 0 ? { preview: previews } : null;
|
|
},
|
|
async migrateLegacyState(params) {
|
|
const changes: string[] = [];
|
|
const warnings: string[] = [];
|
|
for (const storageRootDir of await collectLegacySyncCacheRoots(params.stateDir)) {
|
|
const persisted = await readLegacyMatrixSyncCacheState(storageRootDir);
|
|
if (!persisted) {
|
|
continue;
|
|
}
|
|
const store = params.context.openPluginStateKeyedStore<MatrixSyncCacheRecord>(
|
|
openMatrixSyncCacheStoreOptions(storageRootDir),
|
|
);
|
|
if (await hasMatrixSyncCacheStateInStore({ storageRootDir, store })) {
|
|
warnings.push(
|
|
`Skipped Matrix sync cache import for ${storageRootDir} because SQLite already has sync cache state`,
|
|
);
|
|
await archiveLegacySyncCache({ storageRootDir, changes, warnings });
|
|
continue;
|
|
}
|
|
await writeMatrixSyncCacheStateToStore({
|
|
storageRootDir,
|
|
payload: persisted,
|
|
store,
|
|
});
|
|
changes.push(`Migrated Matrix sync cache JSON to SQLite for ${storageRootDir}`);
|
|
await archiveLegacySyncCache({ storageRootDir, changes, warnings });
|
|
}
|
|
return { changes, warnings };
|
|
},
|
|
},
|
|
{
|
|
id: "matrix-recovery-key-json-to-plugin-state",
|
|
label: "Matrix recovery key",
|
|
async detectLegacyState(params) {
|
|
const previews: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_RECOVERY_KEY_FILENAME,
|
|
)) {
|
|
if (!readLegacyMatrixRecoveryKeyState(storageRootDir)) {
|
|
continue;
|
|
}
|
|
previews.push(`Matrix recovery-key JSON can migrate to SQLite: ${storageRootDir}`);
|
|
}
|
|
return previews.length > 0 ? { preview: previews } : null;
|
|
},
|
|
async migrateLegacyState(params) {
|
|
const changes: string[] = [];
|
|
const warnings: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_RECOVERY_KEY_FILENAME,
|
|
)) {
|
|
const payload = readLegacyMatrixRecoveryKeyState(storageRootDir);
|
|
if (!payload) {
|
|
continue;
|
|
}
|
|
const store = params.context.openPluginStateKeyedStore<MatrixStoredRecoveryKey>(
|
|
openMatrixRecoveryKeyStoreOptions(storageRootDir),
|
|
);
|
|
if (await hasMatrixRecoveryKeyStateInStore({ store })) {
|
|
warnings.push(
|
|
`Skipped Matrix recovery-key import for ${storageRootDir} because SQLite already has recovery-key state`,
|
|
);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_RECOVERY_KEY_FILENAME,
|
|
label: "Matrix recovery key",
|
|
changes,
|
|
warnings,
|
|
});
|
|
continue;
|
|
}
|
|
await writeMatrixRecoveryKeyStateToStore({ payload, store });
|
|
changes.push(`Migrated Matrix recovery-key JSON to SQLite for ${storageRootDir}`);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_RECOVERY_KEY_FILENAME,
|
|
label: "Matrix recovery key",
|
|
changes,
|
|
warnings,
|
|
});
|
|
}
|
|
return { changes, warnings };
|
|
},
|
|
},
|
|
{
|
|
id: "matrix-idb-snapshot-json-to-plugin-state",
|
|
label: "Matrix IndexedDB snapshot",
|
|
async detectLegacyState(params) {
|
|
const previews: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_IDB_SNAPSHOT_FILENAME,
|
|
)) {
|
|
const snapshot = await readLegacyMatrixIdbSnapshotState(storageRootDir);
|
|
if (!snapshot) {
|
|
continue;
|
|
}
|
|
previews.push(`Matrix IndexedDB snapshot JSON can migrate to SQLite: ${storageRootDir}`);
|
|
}
|
|
return previews.length > 0 ? { preview: previews } : null;
|
|
},
|
|
async migrateLegacyState(params) {
|
|
const changes: string[] = [];
|
|
const warnings: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_IDB_SNAPSHOT_FILENAME,
|
|
)) {
|
|
const snapshot = await readLegacyMatrixIdbSnapshotState(storageRootDir);
|
|
if (!snapshot) {
|
|
continue;
|
|
}
|
|
const store = params.context.openPluginStateKeyedStore<MatrixIdbSnapshotRecord>(
|
|
openMatrixIdbSnapshotStoreOptions(storageRootDir),
|
|
);
|
|
if (await hasMatrixIdbSnapshotStateInStore({ store })) {
|
|
warnings.push(
|
|
`Skipped Matrix IndexedDB snapshot import for ${storageRootDir} because SQLite already has snapshot state`,
|
|
);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_IDB_SNAPSHOT_FILENAME,
|
|
label: "Matrix IndexedDB snapshot",
|
|
changes,
|
|
warnings,
|
|
});
|
|
continue;
|
|
}
|
|
await writeMatrixIdbSnapshotJsonToStore({
|
|
snapshotJson: JSON.stringify(snapshot),
|
|
databaseCount: snapshot.length,
|
|
store,
|
|
});
|
|
changes.push(`Migrated Matrix IndexedDB snapshot JSON to SQLite for ${storageRootDir}`);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_IDB_SNAPSHOT_FILENAME,
|
|
label: "Matrix IndexedDB snapshot",
|
|
changes,
|
|
warnings,
|
|
});
|
|
}
|
|
return { changes, warnings };
|
|
},
|
|
},
|
|
{
|
|
id: "matrix-legacy-crypto-migration-json-to-plugin-state",
|
|
label: "Matrix legacy crypto migration",
|
|
async detectLegacyState(params) {
|
|
const previews: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_LEGACY_CRYPTO_MIGRATION_FILENAME,
|
|
)) {
|
|
if (!readLegacyMatrixLegacyCryptoMigrationState(storageRootDir)) {
|
|
continue;
|
|
}
|
|
previews.push(
|
|
`Matrix legacy crypto migration JSON can migrate to SQLite: ${storageRootDir}`,
|
|
);
|
|
}
|
|
return previews.length > 0 ? { preview: previews } : null;
|
|
},
|
|
async migrateLegacyState(params) {
|
|
const changes: string[] = [];
|
|
const warnings: string[] = [];
|
|
for (const storageRootDir of await collectLegacyMatrixStateRoots(
|
|
params.stateDir,
|
|
MATRIX_LEGACY_CRYPTO_MIGRATION_FILENAME,
|
|
)) {
|
|
const state = readLegacyMatrixLegacyCryptoMigrationState(storageRootDir);
|
|
if (!state) {
|
|
continue;
|
|
}
|
|
const store = params.context.openPluginStateKeyedStore<MatrixLegacyCryptoMigrationState>(
|
|
openMatrixLegacyCryptoMigrationStoreOptions(storageRootDir),
|
|
);
|
|
if (await hasMatrixLegacyCryptoMigrationStateInStore({ store })) {
|
|
warnings.push(
|
|
`Skipped Matrix legacy crypto migration import for ${storageRootDir} because SQLite already has migration state`,
|
|
);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_LEGACY_CRYPTO_MIGRATION_FILENAME,
|
|
label: "Matrix legacy crypto migration",
|
|
changes,
|
|
warnings,
|
|
});
|
|
continue;
|
|
}
|
|
await writeMatrixLegacyCryptoMigrationStateToStore({ state, store });
|
|
changes.push(
|
|
`Migrated Matrix legacy crypto migration JSON to SQLite for ${storageRootDir}`,
|
|
);
|
|
await archiveLegacyMatrixStateFile({
|
|
storageRootDir,
|
|
filename: MATRIX_LEGACY_CRYPTO_MIGRATION_FILENAME,
|
|
label: "Matrix legacy crypto migration",
|
|
changes,
|
|
warnings,
|
|
});
|
|
}
|
|
return { changes, warnings };
|
|
},
|
|
},
|
|
];
|