The installer now dynamically detects and uses the appropriate config directory based on whether opencode CLI or opencode-desktop (Tauri) is being used: - opencode CLI: ~/.config/opencode/ (all platforms) - opencode-desktop on Linux: ~/.config/ai.opencode.desktop/ - opencode-desktop on macOS: ~/Library/Application Support/ai.opencode.desktop/ - opencode-desktop on Windows: %APPDATA%/ai.opencode.desktop/ Key changes: - Add new opencode-config-dir.ts module with platform-specific path resolution - Support dev builds with ai.opencode.desktop.dev identifier - Backward compatibility: checks legacy ~/.config/opencode/ first - Refactor config-manager.ts to use dynamic paths via config context - Update doctor plugin check to use shared path utilities Fixes #440 Co-authored-by: sisyphus-dev-ai <sisyphus-dev-ai@users.noreply.github.com>
125 lines
3.3 KiB
TypeScript
125 lines
3.3 KiB
TypeScript
import { existsSync, readFileSync } from "node:fs"
|
|
import type { CheckResult, CheckDefinition, PluginInfo } from "../types"
|
|
import { CHECK_IDS, CHECK_NAMES, PACKAGE_NAME } from "../constants"
|
|
import { parseJsonc, getOpenCodeConfigPaths } from "../../../shared"
|
|
|
|
function detectConfigPath(): { path: string; format: "json" | "jsonc" } | null {
|
|
const paths = getOpenCodeConfigPaths({ binary: "opencode", version: null })
|
|
|
|
if (existsSync(paths.configJsonc)) {
|
|
return { path: paths.configJsonc, format: "jsonc" }
|
|
}
|
|
if (existsSync(paths.configJson)) {
|
|
return { path: paths.configJson, format: "json" }
|
|
}
|
|
return null
|
|
}
|
|
|
|
function findPluginEntry(plugins: string[]): { entry: string; isPinned: boolean; version: string | null } | null {
|
|
for (const plugin of plugins) {
|
|
if (plugin === PACKAGE_NAME || plugin.startsWith(`${PACKAGE_NAME}@`)) {
|
|
const isPinned = plugin.includes("@")
|
|
const version = isPinned ? plugin.split("@")[1] : null
|
|
return { entry: plugin, isPinned, version }
|
|
}
|
|
}
|
|
return null
|
|
}
|
|
|
|
export function getPluginInfo(): PluginInfo {
|
|
const configInfo = detectConfigPath()
|
|
|
|
if (!configInfo) {
|
|
return {
|
|
registered: false,
|
|
configPath: null,
|
|
entry: null,
|
|
isPinned: false,
|
|
pinnedVersion: null,
|
|
}
|
|
}
|
|
|
|
try {
|
|
const content = readFileSync(configInfo.path, "utf-8")
|
|
const config = parseJsonc<{ plugin?: string[] }>(content)
|
|
const plugins = config.plugin ?? []
|
|
const pluginEntry = findPluginEntry(plugins)
|
|
|
|
if (!pluginEntry) {
|
|
return {
|
|
registered: false,
|
|
configPath: configInfo.path,
|
|
entry: null,
|
|
isPinned: false,
|
|
pinnedVersion: null,
|
|
}
|
|
}
|
|
|
|
return {
|
|
registered: true,
|
|
configPath: configInfo.path,
|
|
entry: pluginEntry.entry,
|
|
isPinned: pluginEntry.isPinned,
|
|
pinnedVersion: pluginEntry.version,
|
|
}
|
|
} catch {
|
|
return {
|
|
registered: false,
|
|
configPath: configInfo.path,
|
|
entry: null,
|
|
isPinned: false,
|
|
pinnedVersion: null,
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function checkPluginRegistration(): Promise<CheckResult> {
|
|
const info = getPluginInfo()
|
|
|
|
if (!info.configPath) {
|
|
const expectedPaths = getOpenCodeConfigPaths({ binary: "opencode", version: null })
|
|
return {
|
|
name: CHECK_NAMES[CHECK_IDS.PLUGIN_REGISTRATION],
|
|
status: "fail",
|
|
message: "OpenCode config file not found",
|
|
details: [
|
|
"Run: bunx oh-my-opencode install",
|
|
`Expected: ${expectedPaths.configJson} or ${expectedPaths.configJsonc}`,
|
|
],
|
|
}
|
|
}
|
|
|
|
if (!info.registered) {
|
|
return {
|
|
name: CHECK_NAMES[CHECK_IDS.PLUGIN_REGISTRATION],
|
|
status: "fail",
|
|
message: "Plugin not registered in config",
|
|
details: [
|
|
"Run: bunx oh-my-opencode install",
|
|
`Config: ${info.configPath}`,
|
|
],
|
|
}
|
|
}
|
|
|
|
const message = info.isPinned
|
|
? `Registered (pinned: ${info.pinnedVersion})`
|
|
: "Registered"
|
|
|
|
return {
|
|
name: CHECK_NAMES[CHECK_IDS.PLUGIN_REGISTRATION],
|
|
status: "pass",
|
|
message,
|
|
details: [`Config: ${info.configPath}`],
|
|
}
|
|
}
|
|
|
|
export function getPluginCheckDefinition(): CheckDefinition {
|
|
return {
|
|
id: CHECK_IDS.PLUGIN_REGISTRATION,
|
|
name: CHECK_NAMES[CHECK_IDS.PLUGIN_REGISTRATION],
|
|
category: "installation",
|
|
check: checkPluginRegistration,
|
|
critical: true,
|
|
}
|
|
}
|