-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathupdate-controller.ts
248 lines (215 loc) · 11.1 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
import * as path from "path";
import * as semver from "semver";
import * as constants from "../constants";
import { UpdateControllerBase } from "./update-controller-base";
interface IPackage {
name: string;
alias?: string;
}
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.WEBPACK_PLUGIN_NAME }];
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);
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);
}
}
public async shouldUpdate({ projectDir, version }: { projectDir: string, version?: string }): Promise<boolean> {
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);
const templatePlatformData = this.$projectDataService.getNSValueFromContent(templateManifest, platformData.frameworkPackageName);
const templateRuntimeVersion = templatePlatformData && templatePlatformData.version;
if (templateRuntimeVersion && await this.shouldUpdateRuntimeVersion(templateRuntimeVersion, platformData.frameworkPackageName, platform, projectData)) {
return true;
}
}
}
private async cleanUpProject(projectData: IProjectData) {
this.$logger.info("Clean old project artefacts.");
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 artefacts complete.");
}
private async updateProject(projectData: IProjectData, version: string): Promise<void> {
const templateManifest = await this.getTemplateManifest(projectData, 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(templateManifest, 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 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(templateManifest: Object, projectData: IProjectData) {
for (const platform in this.$devicePlatformsConstants) {
const lowercasePlatform = platform.toLowerCase();
const platformData = this.$platformsDataService.getPlatformData(lowercasePlatform, projectData);
const templatePlatformData = this.$projectDataService.getNSValueFromContent(templateManifest, platformData.frameworkPackageName);
const templateRuntimeVersion = templatePlatformData && templatePlatformData.version;
if (templateRuntimeVersion && await this.shouldUpdateRuntimeVersion(templateRuntimeVersion, platformData.frameworkPackageName, platform, projectData)) {
this.$logger.info(`Updating ${platform} platform to version '${templateRuntimeVersion}'.`);
await this.$addPlatformService.setPlatformVersion(platformData, projectData, templateRuntimeVersion);
}
}
}
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);