-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlockfile.ts
More file actions
240 lines (224 loc) · 7.12 KB
/
lockfile.ts
File metadata and controls
240 lines (224 loc) · 7.12 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
/**
* @file Package pin generation for dlx installs. `generatePackagePin` resolves
* an npm package against the registry using Arborist's lockfile-only mode and
* fetches its top-level tarball to return both hash formats plus the lockfile
* content — everything needed to vendor a reproducible install. The
* `LockfileSpec` type is also exported here for use as the `lockfile` option
* on `downloadPackage`. Sniff/write handling lives inline in `./package.ts` —
* no helper.
*/
import os from 'node:os'
import pacote from '../external/pacote'
import { safeDelete, safeMkdir } from '../fs/safe'
import { safeIdealTree, writeSafeNpmrc } from './arborist'
import { computeHashes } from '../integrity'
import type { ComputedHashes } from '../integrity'
import { DateCtor, DateNow } from '../primordials/date'
import { JSONStringify } from '../primordials/json'
import {
StringPrototypeLastIndexOf,
StringPrototypeSlice,
} from '../primordials/string'
import { getNodeFs } from '../node/fs'
import { getNodePath } from '../node/path'
/**
* Lockfile source for the `lockfile` option on `downloadPackage`.
*
* Bare strings are sniffed: a leading `{` (after whitespace) means JSON
* content, anything else is treated as a filesystem path. Pass the explicit `{
* type, value }` form to override sniffing.
*
* @example
* // Sniffed as path:
* './scripts/dlx/claude/package-lock.json'
* // Sniffed as content:
* '{ "lockfileVersion": 3, ... }'
* // Explicit:
* { type: 'path', value: '/abs/package-lock.json' }
* { type: 'content', value: '{ ... }' }
*/
export type LockfileSpec =
| string
| { type: 'path'; value: string }
| { type: 'content'; value: string }
/**
* Default minimum release age in days applied when a caller passes neither
* `minReleaseDays` nor `minReleaseMins`. Pass `minReleaseDays: 0` to disable
* the cutoff explicitly.
*/
export const DEFAULT_MIN_RELEASE_DAYS = 7
/**
* Options for generating a vendorable pin for an npm package.
*/
export interface GeneratePackagePinOptions {
/**
* Package spec, e.g. `'@anthropic-ai/claude-code@2.1.92'`.
*/
package: string
/**
* Minimum release age in days. Refuses to resolve any version (direct or
* transitive) published more recently than `Date.now() - N days`.
*
* Matches npm's `min-release-age` config (unit: days). Mutually exclusive
* with {@link minReleaseMins}. Defaults to {@link DEFAULT_MIN_RELEASE_DAYS}
* (7) when neither field is set. Pass `0` to disable.
*/
minReleaseDays?: number | undefined
/**
* Minimum release age in minutes. Refuses to resolve any version published
* more recently than `Date.now() - N minutes`.
*
* Matches pnpm's `minimumReleaseAge` config (unit: minutes). Mutually
* exclusive with {@link minReleaseDays}.
*/
minReleaseMins?: number | undefined
}
/**
* Result of {@link generatePackagePin}. All file data is returned as content —
* the caller decides whether/where to write it.
*/
export interface PinDetails {
/**
* Resolved package name.
*/
name: string
/**
* Resolved package version.
*/
version: string
/**
* Both hash formats of the top-level tarball.
*/
hash: ComputedHashes
/**
* `package.json` JSON content, ready to write to disk.
*/
packageJson: string
/**
* `package-lock.json` JSON content, ready to write to disk.
*/
lockfile: string
}
/**
* Thrown when a lockfile spec is malformed (unrecognized string, missing file,
* invalid JSON) or drifts from its package.json.
*/
export class DlxLockfileError extends Error {
constructor(message: string, options?: { cause?: unknown } | undefined) {
super(message, options)
this.name = 'DlxLockfileError'
}
}
/**
* Generate a vendorable pin for an npm package without installing it.
*
* Runs Arborist in lockfile-only mode (`packageLockOnly: true`) against a
* temporary directory, fetches the top-level tarball once to compute sha256 hex
* (since Arborist only exposes SRI from the registry), then tears the tmp
* directory down before returning.
*
* The result contains everything a caller needs to pin the package for future
* installs: the exact resolved name/version, both hash formats, and the
* lockfile content (ready to commit).
*
* @example
* ;```ts
* const pin = await generatePackagePin({
* package: '@anthropic-ai/claude-code@2.1.92',
* })
* await fs.writeFile('./claude.lock.json', pin.lockfile, 'utf8')
* // pin.hash.integrity → 'sha512-…'
* // pin.hash.checksum → hex
* ```
*/
export async function generatePackagePin(
options: GeneratePackagePinOptions,
): Promise<PinDetails> {
const fs = getNodeFs()
const path = getNodePath()
const { minReleaseDays, minReleaseMins, package: spec } = options
if (typeof spec !== 'string' || spec.length === 0) {
throw new DlxLockfileError('generatePackagePin requires a package spec')
}
if (minReleaseDays !== undefined && minReleaseMins !== undefined) {
throw new DlxLockfileError(
'generatePackagePin: minReleaseDays and minReleaseMins are mutually exclusive',
)
}
const effectiveDays =
minReleaseDays !== undefined
? minReleaseDays
: minReleaseMins !== undefined
? undefined
: DEFAULT_MIN_RELEASE_DAYS
const ageMs =
effectiveDays !== undefined
? effectiveDays * 86_400_000
: minReleaseMins !== undefined
? minReleaseMins * 60_000
: 0
const before = ageMs > 0 ? new DateCtor(DateNow() - ageMs) : undefined
const scratch = path.join(
os.tmpdir(),
`socket-lib-pin-${process.pid}-${Date.now()}`,
)
await safeMkdir(scratch, { recursive: true })
try {
const packageJson = JSONStringify(
{
name: 'socket-lib-pin',
version: '0.0.0',
private: true,
dependencies: { [specName(spec)]: specRange(spec) },
},
undefined,
2,
)
await fs.promises.writeFile(
path.join(scratch, 'package.json'),
packageJson + '\n',
'utf8',
)
await writeSafeNpmrc(scratch, {
minReleaseDays: effectiveDays,
minReleaseMins,
})
const ideal = await safeIdealTree({ path: scratch, before })
const tarball = await pacote.tarball(`${ideal.name}@${ideal.version}`)
const hash = computeHashes(tarball)
return {
name: ideal.name,
version: ideal.version,
hash,
packageJson,
lockfile: ideal.lockfile,
}
} finally {
// Swallow cleanup failures so a scratch-dir-delete error doesn't
// mask the real exception from the try-block.
try {
await safeDelete(scratch, { force: true })
} catch {}
}
}
/**
* Extract the package name from a spec like `'name@range'` or
* `'@scope/name@range'` or a bare `'name'`.
*/
export function specName(spec: string): string {
const atIdx = StringPrototypeLastIndexOf(spec, '@')
if (atIdx <= 0) {
return spec
}
return StringPrototypeSlice(spec, 0, atIdx)
}
/**
* Extract the version range (or `'latest'`) from a spec.
*/
export function specRange(spec: string): string {
const atIdx = StringPrototypeLastIndexOf(spec, '@')
if (atIdx <= 0) {
return 'latest'
}
return StringPrototypeSlice(spec, atIdx + 1) || 'latest'
}