File size: 11,107 Bytes
1f21206 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | import * as fs from 'fs/promises'
import * as os from 'os'
import * as path from 'path'
import { randomBytes } from 'node:crypto'
import { normalizeLegacyDeepSeekManagedEnv } from '../../utils/providerManagedEnvCompat.js'
import { isOpenAIOfficialProviderId } from './openaiOfficialProvider.js'
export const CURRENT_PROVIDER_INDEX_SCHEMA_VERSION = 1
type MigrationReport = {
migratedEntries: string[]
failures: string[]
}
type JsonObject = Record<string, unknown>
type LegacyProviderModel = {
id: string
name?: string
}
type LegacyRootProvider = {
id: string
name: string
baseUrl: string
apiKey: string
models: LegacyProviderModel[]
isActive?: boolean
notes?: string
}
let migrationPromise: Promise<MigrationReport> | null = null
let migrationConfigDir: string | null = null
function getConfigDir(): string {
return process.env.CLAUDE_CONFIG_DIR || path.join(os.homedir(), '.claude')
}
function isRecord(value: unknown): value is JsonObject {
return !!value && typeof value === 'object' && !Array.isArray(value)
}
function isProviderModels(value: unknown): value is JsonObject {
return (
isRecord(value) &&
typeof value.main === 'string' &&
typeof value.haiku === 'string' &&
typeof value.sonnet === 'string' &&
typeof value.opus === 'string'
)
}
function isSavedProvider(value: unknown): value is JsonObject {
return (
isRecord(value) &&
typeof value.id === 'string' &&
typeof value.presetId === 'string' &&
typeof value.name === 'string' &&
typeof value.apiKey === 'string' &&
typeof value.baseUrl === 'string' &&
isProviderModels(value.models)
)
}
function isLegacyProviderModel(value: unknown): value is LegacyProviderModel {
return isRecord(value) && typeof value.id === 'string'
}
function isLegacyRootProvider(value: unknown): value is LegacyRootProvider {
return (
isRecord(value) &&
typeof value.id === 'string' &&
typeof value.name === 'string' &&
typeof value.baseUrl === 'string' &&
typeof value.apiKey === 'string' &&
Array.isArray(value.models) &&
value.models.every(isLegacyProviderModel)
)
}
function errnoCode(error: unknown): string | undefined {
return error && typeof error === 'object' && 'code' in error && typeof error.code === 'string'
? error.code
: undefined
}
function stableStringify(value: unknown): string {
return JSON.stringify(value, null, 2) + '\n'
}
async function readJsonFile(filePath: string): Promise<{ missing: boolean; value: unknown; raw: string }> {
try {
const raw = await fs.readFile(filePath, 'utf-8')
return { missing: false, value: JSON.parse(raw), raw }
} catch (error) {
if (errnoCode(error) === 'ENOENT') {
return { missing: true, value: undefined, raw: '' }
}
throw error
}
}
async function backupFile(filePath: string, suffix: string): Promise<void> {
const backupPath = `${filePath}.${suffix}-${Date.now()}-${randomBytes(3).toString('hex')}`
await fs.copyFile(filePath, backupPath)
}
async function writeJsonFile(filePath: string, value: unknown): Promise<void> {
await fs.mkdir(path.dirname(filePath), { recursive: true })
const tmpPath = `${filePath}.tmp.${Date.now()}-${randomBytes(3).toString('hex')}`
try {
await fs.writeFile(tmpPath, stableStringify(value), 'utf-8')
await fs.rename(tmpPath, filePath)
} catch (error) {
await fs.unlink(tmpPath).catch(() => {})
throw error
}
}
async function quarantineMalformedFile(filePath: string): Promise<void> {
const invalidPath = `${filePath}.invalid-${Date.now()}-${randomBytes(3).toString('hex')}`
await fs.rename(filePath, invalidPath)
}
function migrateProvidersIndex(value: unknown): JsonObject {
if (!isRecord(value) || !Array.isArray(value.providers)) {
return {
schemaVersion: CURRENT_PROVIDER_INDEX_SCHEMA_VERSION,
activeId: null,
providers: [],
}
}
const { activeProviderId: _legacyActiveProviderId, ...rest } = value
const providers = value.providers.filter(isSavedProvider)
const rawActiveId =
typeof value.activeId === 'string'
? value.activeId
: typeof _legacyActiveProviderId === 'string'
? _legacyActiveProviderId
: null
const activeId = rawActiveId && (
providers.some((provider) => provider.id === rawActiveId) ||
isOpenAIOfficialProviderId(rawActiveId)
)
? rawActiveId
: null
return {
...rest,
schemaVersion: CURRENT_PROVIDER_INDEX_SCHEMA_VERSION,
activeId,
providers,
}
}
function migrateManagedSettings(value: unknown): JsonObject {
if (!isRecord(value)) return {}
if (value.env !== undefined && !isRecord(value.env)) {
return { ...value, env: {} }
}
if (isRecord(value.env)) {
const { env, changed } = normalizeLegacyDeepSeekManagedEnv(value.env as Record<string, string>)
if (changed) return { ...value, env }
}
return value
}
async function migrateJsonEntry(
filePath: string,
entryName: string,
report: MigrationReport,
migrate: (value: unknown) => JsonObject,
): Promise<void> {
try {
const current = await readJsonFile(filePath)
if (current.missing) return
const migrated = migrate(current.value)
if (stableStringify(migrated) === stableStringify(current.value)) return
await backupFile(filePath, 'bak-before-migration')
await writeJsonFile(filePath, migrated)
report.migratedEntries.push(entryName)
} catch (error) {
if (error instanceof SyntaxError) {
try {
await quarantineMalformedFile(filePath)
await writeJsonFile(filePath, {})
report.migratedEntries.push(entryName)
return
} catch (recoveryError) {
report.failures.push(`${entryName}: ${recoveryError instanceof Error ? recoveryError.message : String(recoveryError)}`)
return
}
}
report.failures.push(`${entryName}: ${error instanceof Error ? error.message : String(error)}`)
}
}
function legacyProviderModelId(
provider: LegacyRootProvider,
preferredModelId: unknown,
): string {
if (
typeof preferredModelId === 'string' &&
provider.models.some((model) => model.id === preferredModelId)
) {
return preferredModelId
}
return provider.models[0]?.id ?? ''
}
function migrateLegacyRootProvidersConfig(value: unknown): JsonObject | null {
if (!isRecord(value) || !Array.isArray(value.providers)) {
return null
}
const providers = value.providers
.filter(isLegacyRootProvider)
.map((provider) => {
const main = legacyProviderModelId(provider, value.activeModel)
return {
id: provider.id,
presetId: 'custom',
name: provider.name,
apiKey: provider.apiKey,
baseUrl: provider.baseUrl,
apiFormat: 'anthropic',
models: {
main,
haiku: main,
sonnet: main,
opus: main,
},
...(provider.notes !== undefined && { notes: provider.notes }),
}
})
if (providers.length === 0) {
return null
}
const activeLegacyProvider = value.providers
.filter(isLegacyRootProvider)
.find((provider) =>
provider.isActive === true ||
(typeof value.activeModel === 'string' &&
provider.models.some((model) => model.id === value.activeModel)),
)
const activeId =
activeLegacyProvider && providers.some((provider) => provider.id === activeLegacyProvider.id)
? activeLegacyProvider.id
: null
return {
schemaVersion: CURRENT_PROVIDER_INDEX_SCHEMA_VERSION,
activeId,
providers,
}
}
function buildManagedSettingsForMigratedProvider(provider: JsonObject | undefined): JsonObject | null {
if (!provider || !isProviderModels(provider.models)) return null
const apiKey = typeof provider.apiKey === 'string' ? provider.apiKey : ''
const baseUrl = typeof provider.baseUrl === 'string' ? provider.baseUrl : ''
if (!apiKey || !baseUrl) return null
return {
env: {
ANTHROPIC_BASE_URL: baseUrl,
ANTHROPIC_AUTH_TOKEN: apiKey,
ANTHROPIC_MODEL: provider.models.main,
ANTHROPIC_DEFAULT_HAIKU_MODEL: provider.models.haiku,
ANTHROPIC_DEFAULT_SONNET_MODEL: provider.models.sonnet,
ANTHROPIC_DEFAULT_OPUS_MODEL: provider.models.opus,
},
}
}
async function migrateLegacyRootProviders(
configDir: string,
ccHahaDir: string,
report: MigrationReport,
): Promise<void> {
const targetPath = path.join(ccHahaDir, 'providers.json')
try {
await fs.access(targetPath)
return
} catch (error) {
if (errnoCode(error) !== 'ENOENT') {
report.failures.push(`cc-haha/providers.json: ${error instanceof Error ? error.message : String(error)}`)
return
}
}
const legacyPath = path.join(configDir, 'providers.json')
try {
const legacy = await readJsonFile(legacyPath)
if (legacy.missing) return
const migrated = migrateLegacyRootProvidersConfig(legacy.value)
if (!migrated) return
await writeJsonFile(targetPath, migrated)
report.migratedEntries.push('providers.json -> cc-haha/providers.json')
const settingsPath = path.join(ccHahaDir, 'settings.json')
const settings = await readJsonFile(settingsPath).catch(() => ({ missing: false, value: undefined, raw: '' }))
if (!settings.missing) return
const activeId = typeof migrated.activeId === 'string' ? migrated.activeId : null
const activeProvider = Array.isArray(migrated.providers)
? migrated.providers.find((provider) => isRecord(provider) && provider.id === activeId)
: undefined
const managedSettings = buildManagedSettingsForMigratedProvider(
isRecord(activeProvider) ? activeProvider : undefined,
)
if (managedSettings) {
await writeJsonFile(settingsPath, managedSettings)
report.migratedEntries.push('providers.json -> cc-haha/settings.json')
}
} catch (error) {
if (error instanceof SyntaxError) {
report.failures.push(`providers.json: ${error.message}`)
return
}
report.failures.push(`providers.json: ${error instanceof Error ? error.message : String(error)}`)
}
}
async function runPersistentStorageMigrations(configDir: string): Promise<MigrationReport> {
const report: MigrationReport = { migratedEntries: [], failures: [] }
const ccHahaDir = path.join(configDir, 'cc-haha')
await migrateLegacyRootProviders(configDir, ccHahaDir, report)
await migrateJsonEntry(
path.join(ccHahaDir, 'providers.json'),
'cc-haha/providers.json',
report,
migrateProvidersIndex,
)
await migrateJsonEntry(
path.join(ccHahaDir, 'settings.json'),
'cc-haha/settings.json',
report,
migrateManagedSettings,
)
return report
}
export function ensurePersistentStorageUpgraded(): Promise<MigrationReport> {
const configDir = getConfigDir()
if (!migrationPromise || migrationConfigDir !== configDir) {
migrationConfigDir = configDir
migrationPromise = runPersistentStorageMigrations(configDir)
}
return migrationPromise
}
export function resetPersistentStorageMigrationsForTests(): void {
migrationPromise = null
migrationConfigDir = null
}
|