forked from NativeScript/nativescript-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-controller.ts
579 lines (529 loc) · 15.3 KB
/
update-controller.ts
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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
import * as path from "path";
import * as semver from "semver";
import * as constants from "../constants";
import { UpdateControllerBase } from "./update-controller-base";
import { IProjectDataService, IProjectData } from "../definitions/project";
import {
IPlatformsDataService,
IAddPlatformService,
} from "../definitions/platform";
import {
IPlatformCommandHelper,
IPackageInstallationManager,
IPackageManager,
} from "../declarations";
import { IPluginsService } from "../definitions/plugins";
import { IFileSystem, IErrors, IDictionary } from "../common/declarations";
import { injector } from "../common/yok";
import { PackageVersion } from "../constants";
interface IPackage {
name: string;
alias?: string;
isDev?: boolean;
}
export class UpdateController
extends UpdateControllerBase
implements IUpdateController {
static readonly updatableDependencies: IPackage[] = [
{
name: constants.SCOPED_TNS_CORE_MODULES,
alias: constants.TNS_CORE_MODULES_NAME,
},
{ name: constants.TNS_CORE_MODULES_NAME },
{ name: constants.TNS_CORE_MODULES_WIDGETS_NAME },
{
name: constants.SCOPED_IOS_RUNTIME_NAME,
alias: constants.TNS_IOS_RUNTIME_NAME,
isDev: true,
},
{
name: constants.SCOPED_ANDROID_RUNTIME_NAME,
alias: constants.TNS_ANDROID_RUNTIME_NAME,
isDev: true,
},
{ name: constants.WEBPACK_PLUGIN_NAME, isDev: true },
];
static readonly folders: string[] = [
constants.LIB_DIR_NAME,
constants.HOOKS_DIR_NAME,
constants.WEBPACK_CONFIG_NAME,
constants.PACKAGE_JSON_FILE_NAME,
constants.PACKAGE_LOCK_JSON_FILE_NAME,
];
static readonly backupFolder: string = ".update_backup";
static readonly updateFailMessage: string = "Could not update the project!";
static readonly backupFailMessage: string =
"Could not backup project folders!";
static readonly failedToGetTemplateManifestMessage =
"Failed to get template information for the specified version. Original error: %s";
constructor(
protected $fs: IFileSystem,
protected $platformsDataService: IPlatformsDataService,
protected $platformCommandHelper: IPlatformCommandHelper,
protected $packageInstallationManager: IPackageInstallationManager,
protected $packageManager: IPackageManager,
private $devicePlatformsConstants: Mobile.IDevicePlatformsConstants,
private $addPlatformService: IAddPlatformService,
private $logger: ILogger,
private $errors: IErrors,
private $pluginsService: IPluginsService,
protected $pacoteService: IPacoteService,
private $projectDataService: IProjectDataService
) {
super(
$fs,
$platformCommandHelper,
$platformsDataService,
$packageInstallationManager,
$packageManager,
$pacoteService
);
}
public async update(updateOptions: IUpdateOptions): Promise<void> {
const projectData = this.$projectDataService.getProjectData(
updateOptions.projectDir
);
try {
// this is a preventive check to make sure the passed version exists before doing any backups, however
// the update can still fail if the specified tag doesn't exist in one of the updatableDependencies
// at this stage we only care to check a single dependency to catch invalid versions early.
await this.getVersionFromTag(
UpdateController.updatableDependencies[0].name,
updateOptions.version
);
} catch (error) {
this.$errors.fail(
`${UpdateController.updateFailMessage} Reason is: ${error.message}`
);
}
const backupDir = path.join(
updateOptions.projectDir,
UpdateController.backupFolder
);
try {
this.backup(UpdateController.folders, backupDir, projectData.projectDir);
} catch (error) {
this.$logger.error(UpdateController.backupFailMessage);
this.$fs.deleteDirectory(backupDir);
return;
}
try {
await this.cleanUpProject(projectData);
await this.updateProject(projectData, updateOptions.version);
} catch (error) {
this.restoreBackup(
UpdateController.folders,
backupDir,
projectData.projectDir
);
this.$logger.error(
`${UpdateController.updateFailMessage} Reason is: ${error.message}`
);
}
}
public async shouldUpdate({
projectDir,
version,
}: {
projectDir: string;
version?: string;
}): Promise<boolean> {
if (version && !semver.valid(version) && !semver.validRange(version)) {
// probably npm tag here
return true;
}
const projectData = this.$projectDataService.getProjectData(projectDir);
const templateManifest = await this.getTemplateManifest(
projectData,
version
);
const dependencies = this.getUpdatableDependencies(
templateManifest.dependencies
);
const devDependencies = this.getUpdatableDependencies(
templateManifest.devDependencies
);
if (
(await this.hasDependenciesToUpdate({
dependencies,
areDev: false,
projectData,
})) ||
(await this.hasDependenciesToUpdate({
dependencies: devDependencies,
areDev: true,
projectData,
}))
) {
return true;
}
for (const platform in this.$devicePlatformsConstants) {
const lowercasePlatform = platform.toLowerCase();
const platformData = this.$platformsDataService.getPlatformData(
lowercasePlatform,
projectData
);
if (
await this.shouldUpdateRuntimeVersion(
// templateRuntimeVersion is only set if the template has the legacy nativescript key in package.json
// in other cases, we are just going to default to using the latest
PackageVersion.LATEST,
platformData.frameworkPackageName,
platform,
projectData
)
) {
return true;
}
}
}
private async cleanUpProject(projectData: IProjectData) {
this.$logger.info("Clean old project artifacts.");
this.$fs.deleteDirectory(
path.join(projectData.projectDir, constants.HOOKS_DIR_NAME)
);
this.$fs.deleteDirectory(
path.join(projectData.projectDir, constants.PLATFORMS_DIR_NAME)
);
this.$fs.deleteDirectory(
path.join(projectData.projectDir, constants.NODE_MODULES_FOLDER_NAME)
);
if (
projectData.projectType === constants.ProjectTypes.ReactFlavorName ||
projectData.projectType === constants.ProjectTypes.SvelteFlavorName
) {
this.$logger.warn(
`As this project is of type ${projectData.projectType}, CLI will not update its ${constants.WEBPACK_CONFIG_NAME} file. Consider updating it manually.`
);
} else {
this.$fs.deleteFile(
path.join(projectData.projectDir, constants.WEBPACK_CONFIG_NAME)
);
}
this.$fs.deleteFile(
path.join(projectData.projectDir, constants.PACKAGE_LOCK_JSON_FILE_NAME)
);
this.$logger.info("Clean old project artifacts complete.");
}
private async updateProject(
projectData: IProjectData,
version: string
): Promise<void> {
let templateManifest: any = {};
if (!version || semver.valid(version) || semver.validRange(version)) {
templateManifest = await this.getTemplateManifest(projectData, version);
} else {
templateManifest = await this.constructTemplateManifestForTag(version);
}
const dependencies = this.getUpdatableDependencies(
templateManifest.dependencies
);
const devDependencies = this.getUpdatableDependencies(
templateManifest.devDependencies
);
this.$logger.info("Start updating dependencies.");
await this.updateDependencies({ dependencies, areDev: false, projectData });
this.$logger.info("Finished updating dependencies.");
this.$logger.info("Start updating devDependencies.");
await this.updateDependencies({
dependencies: devDependencies,
areDev: true,
projectData,
});
this.$logger.info("Finished updating devDependencies.");
this.$logger.info("Start updating runtimes.");
await this.updateRuntimes(projectData);
this.$logger.info("Finished updating runtimes.");
this.$logger.info("Install packages.");
await this.$packageManager.install(
projectData.projectDir,
projectData.projectDir,
{
disableNpmInstall: false,
frameworkPath: null,
ignoreScripts: false,
path: projectData.projectDir,
}
);
}
private async constructTemplateManifestForTag(tag: string): Promise<any> {
this.$logger.trace(
`Will construct manually template manifest for tag ${tag}`
);
const templateManifest: any = {};
templateManifest.dependencies = {};
templateManifest.devDependencies = {};
for (const updatableDependency of UpdateController.updatableDependencies) {
const version = await this.getVersionFromTag(
updatableDependency.name,
tag
);
if (!version) {
this.$errors.fail(
`Unable to execute update as package '${updatableDependency.name}' does not have version or tag '${tag}'`
);
}
const dictionaryToModify = updatableDependency.isDev
? templateManifest.devDependencies
: templateManifest.dependencies;
dictionaryToModify[updatableDependency.name] = version;
if (updatableDependency.alias) {
const aliasVersion = await this.getVersionFromTag(
updatableDependency.name,
tag
);
dictionaryToModify[updatableDependency.alias] = aliasVersion;
}
}
templateManifest.nativescript = {
[constants.TNS_ANDROID_RUNTIME_NAME]: {
version: await this.getVersionFromTag(
constants.TNS_ANDROID_RUNTIME_NAME,
tag
),
},
[constants.TNS_IOS_RUNTIME_NAME]: {
version: await this.$packageManager.getTagVersion(
constants.TNS_IOS_RUNTIME_NAME,
tag
),
},
};
this.$logger.trace(
`Manually constructed template manifest for tag ${tag}. Content is: ${JSON.stringify(
templateManifest,
null,
2
)}`
);
return templateManifest;
}
private async getVersionFromTag(
packageName: string,
tag: string
): Promise<string> {
const version = await this.$packageManager.getTagVersion(packageName, tag);
if (!version) {
this.$errors.fail(
`Unable to execute update as package ${packageName} does not have version/tag ${tag}. Please enter valid version or npm tag.`
);
}
return version;
}
private async updateDependencies({
dependencies,
areDev,
projectData,
}: {
dependencies: IDictionary<string>;
areDev: boolean;
projectData: IProjectData;
}) {
for (const dependency in dependencies) {
const templateVersion = dependencies[dependency];
if (
!this.hasDependency(
{ packageName: dependency, isDev: areDev },
projectData
)
) {
continue;
}
if (
await this.shouldUpdateDependency(
dependency,
templateVersion,
projectData
)
) {
this.$logger.info(
`Updating '${dependency}' to version '${templateVersion}'.`
);
this.$pluginsService.addToPackageJson(
dependency,
templateVersion,
areDev,
projectData.projectDir
);
}
}
}
private async shouldUpdateDependency(
dependency: string,
targetVersion: string,
projectData: IProjectData
) {
const devDependencies = projectData.devDependencies || {};
const dependencies = projectData.dependencies || {};
const projectVersion =
dependencies[dependency] || devDependencies[dependency];
const maxSatisfyingTargetVersion = await this.$packageInstallationManager.getMaxSatisfyingVersionSafe(
dependency,
targetVersion
);
const maxSatisfyingProjectVersion = await this.$packageInstallationManager.getMaxSatisfyingVersionSafe(
dependency,
projectVersion
);
return (
maxSatisfyingProjectVersion &&
maxSatisfyingTargetVersion &&
semver.gt(maxSatisfyingTargetVersion, maxSatisfyingProjectVersion)
);
}
private async hasDependenciesToUpdate({
dependencies,
areDev,
projectData,
}: {
dependencies: IDictionary<string>;
areDev: boolean;
projectData: IProjectData;
}) {
for (const dependency in dependencies) {
const templateVersion = dependencies[dependency];
if (
!this.hasDependency(
{ packageName: dependency, isDev: areDev },
projectData
)
) {
continue;
}
if (
await this.shouldUpdateDependency(
dependency,
templateVersion,
projectData
)
) {
return true;
}
}
}
private async updateRuntimes(projectData: IProjectData) {
for (const platform in this.$devicePlatformsConstants) {
const lowercasePlatform = platform.toLowerCase();
const platformData = this.$platformsDataService.getPlatformData(
lowercasePlatform,
projectData
);
if (
await this.shouldUpdateRuntimeVersion(
// templateRuntimeVersion is only set if the template has the legacy nativescript key in package.json
// in other cases, we are just going to default to using the latest
PackageVersion.LATEST,
platformData.frameworkPackageName,
platform,
projectData
)
) {
const version = await this.$packageInstallationManager.getMaxSatisfyingVersionSafe(
platformData.frameworkPackageName,
PackageVersion.LATEST
);
this.$logger.info(
`Updating ${platform} platform to version '${version}'.`
);
await this.$addPlatformService.setPlatformVersion(
platformData,
projectData,
version
);
}
}
}
private async shouldUpdateRuntimeVersion(
templateRuntimeVersion: string,
frameworkPackageName: string,
platform: string,
projectData: IProjectData
): Promise<boolean> {
const hasRuntimeDependency = this.hasRuntimeDependency({
platform,
projectData,
});
if (!hasRuntimeDependency) {
return false;
}
const maxTemplateRuntimeVersion = await this.$packageInstallationManager.getMaxSatisfyingVersionSafe(
frameworkPackageName,
templateRuntimeVersion
);
const maxRuntimeVersion = await this.getMaxRuntimeVersion({
platform,
projectData,
});
return (
maxTemplateRuntimeVersion &&
maxRuntimeVersion &&
semver.gt(maxTemplateRuntimeVersion, maxRuntimeVersion)
);
}
private getUpdatableDependencies(
dependencies: IDictionary<string>
): IDictionary<string> {
const updatableDependencies: IDictionary<string> = {};
UpdateController.updatableDependencies.forEach((updatableDependency) => {
if (dependencies[updatableDependency.name]) {
updatableDependencies[updatableDependency.name] =
dependencies[updatableDependency.name];
} else if (
updatableDependency.alias &&
dependencies[updatableDependency.alias]
) {
updatableDependencies[updatableDependency.name] =
dependencies[updatableDependency.alias];
}
});
return updatableDependencies;
}
private getTemplateName(projectData: IProjectData) {
let template;
switch (projectData.projectType) {
case constants.ProjectTypes.NgFlavorName: {
template = constants.RESERVED_TEMPLATE_NAMES.angular;
break;
}
case constants.ProjectTypes.VueFlavorName: {
template = constants.RESERVED_TEMPLATE_NAMES.vue;
break;
}
case constants.ProjectTypes.TsFlavorName: {
template = constants.RESERVED_TEMPLATE_NAMES.typescript;
break;
}
case constants.ProjectTypes.JsFlavorName: {
template = constants.RESERVED_TEMPLATE_NAMES.javascript;
break;
}
default: {
template = constants.RESERVED_TEMPLATE_NAMES.javascript;
break;
}
}
return template;
}
private async getTemplateManifest(
projectData: IProjectData,
version: string
): Promise<any> {
let templateManifest;
const templateName = this.getTemplateName(projectData);
version =
version ||
(await this.$packageInstallationManager.getLatestCompatibleVersionSafe(
templateName
));
try {
templateManifest = await this.getPackageManifest(templateName, version);
} catch (err) {
this.$errors.fail(
UpdateController.failedToGetTemplateManifestMessage,
err.message
);
}
return templateManifest;
}
}
injector.register("updateController", UpdateController);