forked from ultraworkers/claw-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathofficialMarketplaceStartupCheck.ts
More file actions
439 lines (407 loc) · 14.8 KB
/
Copy pathofficialMarketplaceStartupCheck.ts
File metadata and controls
439 lines (407 loc) · 14.8 KB
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
/**
* Auto-install logic for the official Anthropic marketplace.
*
* This module handles automatically installing the official marketplace
* on startup for new users, with appropriate checks for:
* - Enterprise policy restrictions
* - Git availability
* - Previous installation attempts
*/
import { join } from 'path'
import { getFeatureValue_CACHED_MAY_BE_STALE } from '../../services/analytics/growthbook.js'
import { logEvent } from '../../services/analytics/index.js'
import { getGlobalConfig, saveGlobalConfig } from '../config.js'
import { logForDebugging } from '../debug.js'
import { isEnvTruthy } from '../envUtils.js'
import { toError } from '../errors.js'
import { logError } from '../log.js'
import { checkGitAvailable, markGitUnavailable } from './gitAvailability.js'
import { isSourceAllowedByPolicy } from './marketplaceHelpers.js'
import {
addMarketplaceSource,
getMarketplacesCacheDir,
loadKnownMarketplacesConfig,
saveKnownMarketplacesConfig,
} from './marketplaceManager.js'
import {
OFFICIAL_MARKETPLACE_NAME,
OFFICIAL_MARKETPLACE_SOURCE,
} from './officialMarketplace.js'
import { fetchOfficialMarketplaceFromGcs } from './officialMarketplaceGcs.js'
/**
* Reason why the official marketplace was not installed
*/
export type OfficialMarketplaceSkipReason =
| 'already_attempted'
| 'already_installed'
| 'policy_blocked'
| 'git_unavailable'
| 'gcs_unavailable'
| 'unknown'
/**
* Check if official marketplace auto-install is disabled via environment variable.
*/
export function isOfficialMarketplaceAutoInstallDisabled(): boolean {
return isEnvTruthy(
process.env.CLAUDE_CODE_DISABLE_OFFICIAL_MARKETPLACE_AUTOINSTALL,
)
}
/**
* Configuration for retry logic
*/
export const RETRY_CONFIG = {
MAX_ATTEMPTS: 10,
INITIAL_DELAY_MS: 60 * 60 * 1000, // 1 hour
BACKOFF_MULTIPLIER: 2,
MAX_DELAY_MS: 7 * 24 * 60 * 60 * 1000, // 1 week
}
/**
* Calculate next retry delay using exponential backoff
*/
function calculateNextRetryDelay(retryCount: number): number {
const delay =
RETRY_CONFIG.INITIAL_DELAY_MS *
Math.pow(RETRY_CONFIG.BACKOFF_MULTIPLIER, retryCount)
return Math.min(delay, RETRY_CONFIG.MAX_DELAY_MS)
}
/**
* Determine if installation should be retried based on failure reason and retry state
*/
function shouldRetryInstallation(
config: ReturnType<typeof getGlobalConfig>,
): boolean {
// If never attempted, should try
if (!config.officialMarketplaceAutoInstallAttempted) {
return true
}
// If already installed successfully, don't retry
if (config.officialMarketplaceAutoInstalled) {
return false
}
const failReason = config.officialMarketplaceAutoInstallFailReason
const retryCount = config.officialMarketplaceAutoInstallRetryCount || 0
const nextRetryTime = config.officialMarketplaceAutoInstallNextRetryTime
const now = Date.now()
// Check if we've exceeded max attempts
if (retryCount >= RETRY_CONFIG.MAX_ATTEMPTS) {
return false
}
// Permanent failures - don't retry
if (failReason === 'policy_blocked') {
return false
}
// Check if enough time has passed for next retry
if (nextRetryTime && now < nextRetryTime) {
return false
}
// Retry for temporary failures (unknown), semi-permanent (git_unavailable),
// and legacy state (undefined failReason from before retry logic existed)
return (
failReason === 'unknown' ||
failReason === 'git_unavailable' ||
failReason === 'gcs_unavailable' ||
failReason === undefined
)
}
/**
* Result of the auto-install check
*/
export type OfficialMarketplaceCheckResult = {
/** Whether the marketplace was successfully installed */
installed: boolean
/** Whether the installation was skipped (and why) */
skipped: boolean
/** Reason for skipping, if applicable */
reason?: OfficialMarketplaceSkipReason
/** Whether saving retry metadata to config failed */
configSaveFailed?: boolean
}
/**
* Check and install the official marketplace on startup.
*
* This function is designed to be called as a fire-and-forget operation
* during startup. It will:
* 1. Check if installation was already attempted
* 2. Check if marketplace is already installed
* 3. Check enterprise policy restrictions
* 4. Check git availability
* 5. Attempt installation
* 6. Record the result in GlobalConfig
*
* @returns Result indicating whether installation succeeded or was skipped
*/
export async function checkAndInstallOfficialMarketplace(): Promise<OfficialMarketplaceCheckResult> {
const config = getGlobalConfig()
// Check if we should retry installation
if (!shouldRetryInstallation(config)) {
const reason: OfficialMarketplaceSkipReason =
config.officialMarketplaceAutoInstallFailReason ?? 'already_attempted'
logForDebugging(`Official marketplace auto-install skipped: ${reason}`)
return {
installed: false,
skipped: true,
reason,
}
}
try {
// Check if auto-install is disabled via env var
if (isOfficialMarketplaceAutoInstallDisabled()) {
logForDebugging(
'Official marketplace auto-install disabled via env var, skipping',
)
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: false,
officialMarketplaceAutoInstallFailReason: 'policy_blocked',
}))
logEvent('tengu_official_marketplace_auto_install', {
installed: false,
skipped: true,
policy_blocked: true,
})
return { installed: false, skipped: true, reason: 'policy_blocked' }
}
// Check if marketplace is already installed
const knownMarketplaces = await loadKnownMarketplacesConfig()
if (knownMarketplaces[OFFICIAL_MARKETPLACE_NAME]) {
logForDebugging(
`Official marketplace '${OFFICIAL_MARKETPLACE_NAME}' already installed, skipping`,
)
// Mark as attempted so we don't check again
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: true,
}))
return { installed: false, skipped: true, reason: 'already_installed' }
}
// Check enterprise policy restrictions
if (!isSourceAllowedByPolicy(OFFICIAL_MARKETPLACE_SOURCE)) {
logForDebugging(
'Official marketplace blocked by enterprise policy, skipping',
)
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: false,
officialMarketplaceAutoInstallFailReason: 'policy_blocked',
}))
logEvent('tengu_official_marketplace_auto_install', {
installed: false,
skipped: true,
policy_blocked: true,
})
return { installed: false, skipped: true, reason: 'policy_blocked' }
}
// inc-5046: try GCS mirror first — doesn't need git, doesn't hit GitHub.
// Backend (anthropic#317037) publishes a marketplace zip to the same
// bucket as the native binary. If GCS succeeds, register the marketplace
// with source:'github' (still true — GCS is a mirror) and skip git
// entirely.
const cacheDir = getMarketplacesCacheDir()
const installLocation = join(cacheDir, OFFICIAL_MARKETPLACE_NAME)
const gcsSha = await fetchOfficialMarketplaceFromGcs(
installLocation,
cacheDir,
)
if (gcsSha !== null) {
const known = await loadKnownMarketplacesConfig()
known[OFFICIAL_MARKETPLACE_NAME] = {
source: OFFICIAL_MARKETPLACE_SOURCE,
installLocation,
lastUpdated: new Date().toISOString(),
}
await saveKnownMarketplacesConfig(known)
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: true,
officialMarketplaceAutoInstallFailReason: undefined,
officialMarketplaceAutoInstallRetryCount: undefined,
officialMarketplaceAutoInstallLastAttemptTime: undefined,
officialMarketplaceAutoInstallNextRetryTime: undefined,
}))
logEvent('tengu_official_marketplace_auto_install', {
installed: true,
skipped: false,
via_gcs: true,
})
return { installed: true, skipped: false }
}
// GCS failed (404 until backend writes, or network). Fall through to git
// ONLY if the kill-switch allows — same gate as refreshMarketplace().
if (
!getFeatureValue_CACHED_MAY_BE_STALE(
'tengu_plugin_official_mkt_git_fallback',
true,
)
) {
logForDebugging(
'Official marketplace GCS failed; git fallback disabled by flag — skipping install',
)
// Same retry-with-backoff metadata as git_unavailable below — transient
// GCS failures should retry with exponential backoff, not give up.
const retryCount =
(config.officialMarketplaceAutoInstallRetryCount || 0) + 1
const now = Date.now()
const nextRetryTime = now + calculateNextRetryDelay(retryCount)
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: false,
officialMarketplaceAutoInstallFailReason: 'gcs_unavailable',
officialMarketplaceAutoInstallRetryCount: retryCount,
officialMarketplaceAutoInstallLastAttemptTime: now,
officialMarketplaceAutoInstallNextRetryTime: nextRetryTime,
}))
logEvent('tengu_official_marketplace_auto_install', {
installed: false,
skipped: true,
gcs_unavailable: true,
retry_count: retryCount,
})
return { installed: false, skipped: true, reason: 'gcs_unavailable' }
}
// Check git availability
const gitAvailable = await checkGitAvailable()
if (!gitAvailable) {
logForDebugging(
'Git not available, skipping official marketplace auto-install',
)
const retryCount =
(config.officialMarketplaceAutoInstallRetryCount || 0) + 1
const now = Date.now()
const nextRetryDelay = calculateNextRetryDelay(retryCount)
const nextRetryTime = now + nextRetryDelay
let configSaveFailed = false
try {
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: false,
officialMarketplaceAutoInstallFailReason: 'git_unavailable',
officialMarketplaceAutoInstallRetryCount: retryCount,
officialMarketplaceAutoInstallLastAttemptTime: now,
officialMarketplaceAutoInstallNextRetryTime: nextRetryTime,
}))
} catch (saveError) {
configSaveFailed = true
// Log the error properly so it gets tracked
const configError = toError(saveError)
logError(configError)
logForDebugging(
`Failed to save marketplace auto-install git_unavailable state: ${saveError}`,
{ level: 'error' },
)
}
logEvent('tengu_official_marketplace_auto_install', {
installed: false,
skipped: true,
git_unavailable: true,
retry_count: retryCount,
})
return {
installed: false,
skipped: true,
reason: 'git_unavailable',
configSaveFailed,
}
}
// Attempt installation
logForDebugging('Attempting to auto-install official marketplace')
await addMarketplaceSource(OFFICIAL_MARKETPLACE_SOURCE)
// Success
logForDebugging('Successfully auto-installed official marketplace')
const previousRetryCount =
config.officialMarketplaceAutoInstallRetryCount || 0
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: true,
// Clear retry metadata on success
officialMarketplaceAutoInstallFailReason: undefined,
officialMarketplaceAutoInstallRetryCount: undefined,
officialMarketplaceAutoInstallLastAttemptTime: undefined,
officialMarketplaceAutoInstallNextRetryTime: undefined,
}))
logEvent('tengu_official_marketplace_auto_install', {
installed: true,
skipped: false,
retry_count: previousRetryCount,
})
return { installed: true, skipped: false }
} catch (error) {
// Handle installation failure
const errorMessage = error instanceof Error ? error.message : String(error)
// On macOS, /usr/bin/git is an xcrun shim that always exists on PATH, so
// checkGitAvailable() (which only does `which git`) passes even without
// Xcode CLT installed. The shim then fails at clone time with
// "xcrun: error: invalid active developer path (...)". Poison the memoized
// availability check so other git callers in this session skip cleanly,
// then return silently without recording any attempt state — next startup
// tries fresh (no backoff machinery for what is effectively "git absent").
if (errorMessage.includes('xcrun: error:')) {
markGitUnavailable()
logForDebugging(
'Official marketplace auto-install: git is a non-functional macOS xcrun shim, treating as git_unavailable',
)
logEvent('tengu_official_marketplace_auto_install', {
installed: false,
skipped: true,
git_unavailable: true,
macos_xcrun_shim: true,
})
return {
installed: false,
skipped: true,
reason: 'git_unavailable',
}
}
logForDebugging(
`Failed to auto-install official marketplace: ${errorMessage}`,
{ level: 'error' },
)
logError(toError(error))
const retryCount =
(config.officialMarketplaceAutoInstallRetryCount || 0) + 1
const now = Date.now()
const nextRetryDelay = calculateNextRetryDelay(retryCount)
const nextRetryTime = now + nextRetryDelay
let configSaveFailed = false
try {
saveGlobalConfig(current => ({
...current,
officialMarketplaceAutoInstallAttempted: true,
officialMarketplaceAutoInstalled: false,
officialMarketplaceAutoInstallFailReason: 'unknown',
officialMarketplaceAutoInstallRetryCount: retryCount,
officialMarketplaceAutoInstallLastAttemptTime: now,
officialMarketplaceAutoInstallNextRetryTime: nextRetryTime,
}))
} catch (saveError) {
configSaveFailed = true
// Log the error properly so it gets tracked
const configError = toError(saveError)
logError(configError)
logForDebugging(
`Failed to save marketplace auto-install failure state: ${saveError}`,
{ level: 'error' },
)
// Still return the failure result even if config save failed
// This ensures we report the installation failure correctly
}
logEvent('tengu_official_marketplace_auto_install', {
installed: false,
skipped: true,
failed: true,
retry_count: retryCount,
})
return {
installed: false,
skipped: true,
reason: 'unknown',
configSaveFailed,
}
}
}