- Added a new script `bundle-openclaw.mjs` to bundle OpenClaw runtime dependencies. - Updated `after-pack.cjs` to copy bundled OpenClaw runtime and its node_modules. - Improved cleanup of unnecessary development files in node_modules. - Adjusted paths for resources in the packaging process. style: update loading indicator styles in ChatHistoryPanel - Changed the border radius and padding for the loading indicator in ChatHistoryPanel. fix: improve ProvidersSection to handle provider account syncing - Added logic to sync model configuration to provider accounts. - Introduced error handling and loading states during the sync process. - Enhanced vendor resolution and account management logic. fix: fallback session handling in chat store - Implemented fallback session logic in loadSessions to ensure a valid session is always available on error.
143 lines
3.7 KiB
TypeScript
143 lines
3.7 KiB
TypeScript
import { app } from 'electron';
|
|
import { existsSync, mkdirSync, realpathSync } from 'node:fs';
|
|
import { homedir } from 'node:os';
|
|
import { join } from 'node:path';
|
|
|
|
export const OPENCLAW_CONFIG_DIR_NAME = '.openclaw';
|
|
export const OPENCLAW_RUNTIME_DIR_NAME = 'runtime';
|
|
export const OPENCLAW_PACKAGE_DIR_NAME = 'openclaw';
|
|
export const OPENCLAW_ENTRY_FILE_NAME = 'openclaw.mjs';
|
|
export const USER_DATA_DIR_ENV_NAME = 'ZN_AI_USER_DATA_DIR';
|
|
|
|
export interface OpenClawRuntimePaths {
|
|
configDir: string;
|
|
runtimeDir: string;
|
|
dir: string;
|
|
resolvedDir: string;
|
|
entryPath: string;
|
|
}
|
|
|
|
export function getOpenClawConfigDir(): string {
|
|
return join(homedir(), OPENCLAW_CONFIG_DIR_NAME);
|
|
}
|
|
|
|
export function getUserDataDir(): string {
|
|
const override = process.env[USER_DATA_DIR_ENV_NAME]?.trim();
|
|
if (override) {
|
|
return override;
|
|
}
|
|
return app.getPath('userData');
|
|
}
|
|
|
|
export function getOpenClawRuntimeDir(): string {
|
|
return join(getOpenClawConfigDir(), OPENCLAW_RUNTIME_DIR_NAME);
|
|
}
|
|
|
|
export function getOpenClawDir(): string {
|
|
if (app.isPackaged) {
|
|
return join(process.resourcesPath, OPENCLAW_PACKAGE_DIR_NAME);
|
|
}
|
|
return join(app.getAppPath(), 'node_modules', OPENCLAW_PACKAGE_DIR_NAME);
|
|
}
|
|
|
|
export function getResourcesDir(): string {
|
|
if (app.isPackaged) {
|
|
return process.resourcesPath;
|
|
}
|
|
return join(app.getAppPath(), 'resources');
|
|
}
|
|
|
|
export function getOpenClawResolvedDir(): string {
|
|
const dir = getOpenClawDir();
|
|
if (!existsSync(dir)) {
|
|
return dir;
|
|
}
|
|
|
|
try {
|
|
return realpathSync(dir);
|
|
} catch {
|
|
return dir;
|
|
}
|
|
}
|
|
|
|
export function getOpenClawEntryPath(): string {
|
|
return join(getOpenClawDir(), OPENCLAW_ENTRY_FILE_NAME);
|
|
}
|
|
|
|
export function getOpenClawNodeModulesDir(): string {
|
|
return join(getOpenClawDir(), 'node_modules');
|
|
}
|
|
|
|
export function getOpenClawBuildDir(): string {
|
|
return join(app.getAppPath(), 'build', OPENCLAW_PACKAGE_DIR_NAME);
|
|
}
|
|
|
|
export function getOpenClawPackageStatus(): {
|
|
dir: string;
|
|
entryPath: string;
|
|
nodeModulesDir: string;
|
|
packageExists: boolean;
|
|
entryExists: boolean;
|
|
nodeModulesExists: boolean;
|
|
};
|
|
|
|
export function getOpenClawPackageStatus(
|
|
overrides?: Partial<Pick<OpenClawRuntimePaths, 'dir' | 'entryPath'>>,
|
|
): {
|
|
dir: string;
|
|
entryPath: string;
|
|
nodeModulesDir: string;
|
|
packageExists: boolean;
|
|
entryExists: boolean;
|
|
nodeModulesExists: boolean;
|
|
} {
|
|
const dir = overrides?.dir ?? getOpenClawDir();
|
|
const entryPath = overrides?.entryPath ?? join(dir, OPENCLAW_ENTRY_FILE_NAME);
|
|
const nodeModulesDir = join(dir, 'node_modules');
|
|
const entryExists = existsSync(entryPath);
|
|
const nodeModulesExists = existsSync(nodeModulesDir);
|
|
|
|
return {
|
|
dir,
|
|
entryPath,
|
|
nodeModulesDir,
|
|
packageExists: existsSync(dir),
|
|
entryExists,
|
|
nodeModulesExists,
|
|
};
|
|
}
|
|
|
|
export function getClawHubCliBinPath(): string {
|
|
const binName = process.platform === 'win32' ? 'clawhub.cmd' : 'clawhub';
|
|
return join(app.getAppPath(), 'node_modules', '.bin', binName);
|
|
}
|
|
|
|
export function getClawHubCliEntryPath(): string {
|
|
return join(app.getAppPath(), 'node_modules', 'clawhub', 'bin', 'clawdhub.js');
|
|
}
|
|
|
|
export function ensureDir(dir: string): string {
|
|
if (!existsSync(dir)) {
|
|
mkdirSync(dir, { recursive: true });
|
|
}
|
|
return dir;
|
|
}
|
|
|
|
export function ensureOpenClawRuntimeLayout(
|
|
paths: OpenClawRuntimePaths = getOpenClawRuntimePaths(),
|
|
): OpenClawRuntimePaths {
|
|
ensureDir(paths.configDir);
|
|
ensureDir(paths.runtimeDir);
|
|
return paths;
|
|
}
|
|
|
|
export function getOpenClawRuntimePaths(): OpenClawRuntimePaths {
|
|
return {
|
|
configDir: getOpenClawConfigDir(),
|
|
runtimeDir: getOpenClawRuntimeDir(),
|
|
dir: getOpenClawDir(),
|
|
resolvedDir: getOpenClawResolvedDir(),
|
|
entryPath: getOpenClawEntryPath(),
|
|
};
|
|
}
|