forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfetch-npm-module.ts
More file actions
543 lines (464 loc) · 14.7 KB
/
fetch-npm-module.ts
File metadata and controls
543 lines (464 loc) · 14.7 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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
import * as pathUtils from '@codesandbox/common/lib/utils/path';
import { CSB_PKG_PROTOCOL } from '@codesandbox/common/lib/utils/ci';
import resolve from 'browser-resolve';
import DependencyNotFoundError from 'sandbox-hooks/errors/dependency-not-found-error';
import delay from 'sandbox/utils/delay';
import { Module } from '../types/module';
import Manager from '../manager';
import getDependencyName from '../utils/get-dependency-name';
import { packageFilter } from '../utils/resolve-utils';
import TranspiledModule from '../transpiled-module';
type Meta = {
[path: string]: any;
};
type Metas = {
[dependencyAndVersion: string]: Meta;
};
type Packages = {
[path: string]: Promise<Module>;
};
type MetaFiles = Array<{
path: string;
type: 'file' | 'directory';
files?: MetaFiles;
}>;
const metas: Metas = {};
export let combinedMetas: Meta = {}; // eslint-disable-line
const normalizedMetas: { [key: string]: Meta } = {};
const packages: Packages = {};
function normalize(files: MetaFiles, fileObject: Meta = {}, rootPath: string) {
for (let i = 0; i < files.length; i += 1) {
if (files[i].type === 'file') {
const absolutePath = rootPath + files[i].path;
fileObject[absolutePath] = true; // eslint-disable-line no-param-reassign
}
if (files[i].files) {
normalize(files[i].files, fileObject, rootPath);
}
}
return fileObject;
}
function normalizeJSDelivr(files: any, fileObject: Meta = {}, rootPath) {
for (let i = 0; i < files.length; i += 1) {
const absolutePath = pathUtils.join(rootPath, files[i].name);
fileObject[absolutePath] = true; // eslint-disable-line no-param-reassign
}
return fileObject;
}
/**
* Converts urls like "https://github.com/user/repo.git" to "user/repo".
*/
const convertGitHubURLToVersion = (version: string) => {
const result = version.match(/https:\/\/github\.com\/(.*)$/);
if (result && result[1]) {
const repo = result[1];
return repo.replace(/\.git$/, '');
}
return version;
};
const urlProtocols = {
csbGH: {
file: async (name: string, version: string, path: string) =>
`${version.replace(/\/_pkg.tgz$/, '')}${path}`,
meta: async (name: string, version: string) =>
`${version.replace(/\/\.pkg.tgz$/, '')}/_csb-meta.json`,
normalizeMeta: normalize,
},
unpkg: {
file: async (name: string, version: string, path: string) =>
`https://unpkg.com/${name}@${version}${path}`,
meta: async (name: string, version: string) =>
`https://unpkg.com/${name}@${version}/?meta`,
normalizeMeta: normalize,
},
jsDelivrNPM: {
file: async (name: string, version: string, path: string) =>
`https://cdn.jsdelivr.net/npm/${name}@${version}${path}`,
meta: async (name: string, version: string) => {
// if it's a tag it won't work, so we fetch latest version otherwise
const latestVersion = /^\d/.test(version)
? version
: JSON.parse(
(await downloadDependency(name, version, '/package.json')).code
).version;
return `https://data.jsdelivr.com/v1/package/npm/${name}@${latestVersion}/flat`;
},
normalizeMeta: normalizeJSDelivr,
},
jsDelivrGH: {
file: async (name: string, version: string, path: string) =>
`https://cdn.jsdelivr.net/gh/${convertGitHubURLToVersion(
version
)}${path}`,
meta: async (name: string, version: string) => {
// First get latest sha from GitHub API
const sha = await fetch(
`https://api.github.com/repos/${convertGitHubURLToVersion(
version
)}/commits/master`
)
.then(x => x.json())
.then(x => x.sha);
return `https://data.jsdelivr.com/v1/package/gh/${convertGitHubURLToVersion(
version
)}@${sha}/flat`;
},
normalizeMeta: normalizeJSDelivr,
},
};
async function fetchWithRetries(url: string, retries = 6): Promise<Response> {
const doFetch = () =>
window.fetch(url).then(x => {
if (x.ok) {
return x;
}
throw new Error(`Could not fetch ${url}`);
});
let lastTryTime = 0;
for (let i = 0; i < retries; i++) {
if (Date.now() - lastTryTime < 3000) {
// Ensure that we at least wait 3s before retrying a request to prevent rate limits
// eslint-disable-next-line
await delay(3000 - (Date.now() - lastTryTime));
}
try {
lastTryTime = Date.now();
// eslint-disable-next-line
return await doFetch();
} catch (e) {
console.error(e);
if (i === retries - 1) {
throw e;
}
}
}
throw new Error('Could not fetch');
}
export function setCombinedMetas(givenCombinedMetas: Meta) {
combinedMetas = givenCombinedMetas;
}
const getFetchProtocol = (depVersion: string, useFallback = false) => {
const isDraftProtocol = CSB_PKG_PROTOCOL.test(depVersion);
if (isDraftProtocol) {
return urlProtocols.csbGH;
}
const isGitHub = /\//.test(depVersion);
if (isGitHub) {
return urlProtocols.jsDelivrGH;
}
return useFallback ? urlProtocols.unpkg : urlProtocols.jsDelivrNPM;
};
// Strips the version of a path, eg. test/1.3.0 -> test
const ALIAS_REGEX = /\/\d*\.\d*\.\d*.*?(\/|$)/;
/*
* Resolve name and version from npm aliases
* e.g. "my-react": "npm:react@16.0.0
*/
const resolveNPMAlias = (name: string, version: string): string[] => {
const IS_ALIAS = /^npm:/;
if (!version.match(IS_ALIAS)) {
return [name, version];
}
const parts = version.match(/^npm:(.+)@(.+)/);
return [parts[1], parts[2]];
};
async function getMeta(
name: string,
packageJSONPath: string | null,
version: string,
useFallback = false
) {
const [depName, depVersion] = resolveNPMAlias(name, version);
const nameWithoutAlias = depName.replace(ALIAS_REGEX, '');
const id = `${packageJSONPath || depName}@${depVersion}`;
if (metas[id]) {
return metas[id];
}
const protocol = getFetchProtocol(depVersion, useFallback);
metas[id] = protocol
.meta(nameWithoutAlias, depVersion)
.then(fetchWithRetries)
.then(x => x.json())
.catch(e => {
delete metas[id];
throw e;
});
return metas[id];
}
export async function downloadDependency(
name: string,
version: string,
path: string
): Promise<Module> {
const [depName, depVersion] = resolveNPMAlias(name, version);
const id = depName + depVersion + path;
if (packages[id]) {
return packages[id];
}
const relativePath = path
.replace(
new RegExp(
`.*${pathUtils.join('/node_modules', depName)}`.replace('/', '\\/')
),
''
)
.replace(/#/g, '%23');
const nameWithoutAlias = depName.replace(ALIAS_REGEX, '');
const protocol = getFetchProtocol(depVersion);
packages[id] = protocol
.file(nameWithoutAlias, depVersion, relativePath)
.then(fetchWithRetries)
.then(x => x.text())
.catch(async () => {
const fallbackProtocol = getFetchProtocol(depVersion, true);
const fallbackUrl = await fallbackProtocol.file(
nameWithoutAlias,
depVersion,
relativePath
);
return fetchWithRetries(fallbackUrl).then(x => x.text());
})
.then(x => ({
path,
code: x,
downloaded: true,
}));
return packages[id];
}
function resolvePath(
path: string,
currentTModule: TranspiledModule,
manager: Manager,
defaultExtensions: Array<string> = ['js', 'jsx', 'json'],
meta = {}
): Promise<string> {
const currentPath = currentTModule.module.path;
const isFile = (p, c, cb) => {
const callback = cb || c;
callback(null, Boolean(manager.transpiledModules[p]) || Boolean(meta[p]));
};
return new Promise((res, reject) => {
resolve(
path,
{
filename: currentPath,
extensions: defaultExtensions.map(ext => '.' + ext),
packageFilter,
moduleDirectory: [
'node_modules',
manager.envVariables.NODE_PATH,
].filter(Boolean),
isFile,
readFile: async (p, c, cb) => {
const callback = cb || c;
try {
const tModule = manager.resolveTranspiledModule(p, '/');
tModule.initiators.add(currentTModule);
currentTModule.dependencies.add(tModule);
return callback(null, tModule.module.code);
} catch (e) {
const depPath = p.replace(/.*\/node_modules\//, '');
const depName = getDependencyName(depPath);
// To prevent infinite loops we keep track of which dependencies have been requested before.
if (!manager.transpiledModules[p] && !meta[p]) {
const err = new Error('Could not find ' + p);
// @ts-ignore
err.code = 'ENOENT';
return callback(err);
}
// eslint-disable-next-line
const subDepVersionVersionInfo = await getDependencyVersion(
currentTModule,
manager,
defaultExtensions,
depName
);
if (subDepVersionVersionInfo) {
const { version: subDepVersion } = subDepVersionVersionInfo;
try {
const module = await downloadDependency(
depName,
subDepVersion,
p
);
if (module) {
manager.addModule(module);
const tModule = manager.addTranspiledModule(module, '');
tModule.initiators.add(currentTModule);
currentTModule.dependencies.add(tModule);
callback(null, module.code);
return null;
}
} catch (er) {
// Let it throw the error
}
}
return callback(e);
}
},
},
(err, resolvedPath) => {
if (err) {
return reject(err);
}
return res(resolvedPath);
}
);
});
}
type DependencyVersionResult =
| {
version: string;
packageJSONPath: string;
}
| {
version: string;
packageJSONPath: null;
}
| {
version: string;
name: string | null;
packageJSONPath: null;
};
async function getDependencyVersion(
currentTModule: TranspiledModule,
manager: Manager,
defaultExtensions: string[] = ['js', 'jsx', 'json'],
dependencyName: string
): Promise<DependencyVersionResult | null> {
const { manifest } = manager;
try {
const foundPackageJSONPath = await resolvePath(
pathUtils.join(dependencyName, 'package.json'),
currentTModule,
manager,
defaultExtensions
);
// If the dependency is in the root we get it from the manifest, as the manifest
// contains all the versions that we really wanted to resolve in the first place.
// An example of this is csb.dev packages, the package.json version doesn't say the
// actual version, but the semver it relates to. In this case we really want to have
// the actual url
if (
foundPackageJSONPath ===
pathUtils.join('/node_modules', dependencyName, 'package.json')
) {
const rootDependency = manifest.dependencies.find(
dep => dep.name === dependencyName
);
if (rootDependency) {
return {
packageJSONPath: foundPackageJSONPath,
version: rootDependency.version,
};
}
}
const packageJSON =
manager.transpiledModules[foundPackageJSONPath] &&
manager.transpiledModules[foundPackageJSONPath].module.code;
const { version } = JSON.parse(packageJSON);
const savedDepDep = manifest.dependencyDependencies[dependencyName];
if (
savedDepDep &&
savedDepDep.resolved === version &&
savedDepDep.semver.startsWith('https://')
) {
return {
packageJSONPath: foundPackageJSONPath,
version: savedDepDep.semver,
};
}
if (packageJSON !== '//empty.js') {
return { packageJSONPath: foundPackageJSONPath, version };
}
} catch (e) {
/* do nothing */
}
let version = null;
if (manifest.dependencyDependencies[dependencyName]) {
if (
manifest.dependencyDependencies[dependencyName].semver.startsWith(
'https://'
)
) {
version = manifest.dependencyDependencies[dependencyName].semver;
} else {
version = manifest.dependencyDependencies[dependencyName].resolved;
}
} else {
const dep = manifest.dependencies.find(m => m.name === dependencyName);
if (dep) {
// eslint-disable-next-line
version = dep.version;
}
}
if (version) {
return { packageJSONPath: null, version };
}
return null;
}
export default async function fetchModule(
path: string,
currentTModule: TranspiledModule,
manager: Manager,
defaultExtensions: Array<string> = ['js', 'jsx', 'json']
): Promise<Module> {
const currentPath = currentTModule.module.path;
// Get the last part of the path as dependency name for paths like
// instantsearch.js/node_modules/lodash/sum.js
// In this case we want to get the lodash dependency info
const dependencyName = getDependencyName(
path.replace(/.*\/node_modules\//, '')
);
const versionInfo = await getDependencyVersion(
currentTModule,
manager,
defaultExtensions,
dependencyName
);
if (versionInfo === null) {
throw new DependencyNotFoundError(path);
}
const { packageJSONPath, version } = versionInfo;
let meta: Meta;
let normalizeFunction: typeof normalize;
try {
normalizeFunction = getFetchProtocol(version).normalizeMeta;
meta = await getMeta(dependencyName, packageJSONPath, version);
} catch (e) {
// Use fallback
meta = await getMeta(dependencyName, packageJSONPath, version, true);
normalizeFunction = getFetchProtocol(version, true).normalizeMeta;
}
const rootPath = packageJSONPath
? pathUtils.dirname(packageJSONPath)
: pathUtils.join('/node_modules', dependencyName);
const normalizedCacheKey = dependencyName + rootPath;
const normalizedMeta =
normalizedMetas[normalizedCacheKey] ||
normalizeFunction(meta.files, {}, rootPath);
normalizedMetas[normalizedCacheKey] = normalizedMeta;
combinedMetas = { ...combinedMetas, ...normalizedMeta };
const foundPath = await resolvePath(
path,
currentTModule,
manager,
defaultExtensions,
normalizedMeta
);
if (foundPath === '//empty.js') {
// Mark the path of the module as the real module, because during evaluation
// we don't have meta to find which modules are browser modules and we still
// need to return an empty module for browser modules.
const isDependency = /^(\w|@\w)/.test(path);
return {
path: isDependency
? pathUtils.join('/node_modules', path)
: pathUtils.join(currentPath, path),
code: 'module.exports = {};',
requires: [],
stubbed: true,
};
}
return downloadDependency(dependencyName, version, foundPath);
}