-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathdoctor-service.ts
445 lines (401 loc) · 13 KB
/
doctor-service.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
import { EOL } from "os";
import * as path from "path";
import * as _ from "lodash";
import * as helpers from "../common/helpers";
import { cache } from "../common/decorators";
import {
TrackActionNames,
NODE_MODULES_FOLDER_NAME,
TNS_CORE_MODULES_NAME,
} from "../constants";
import { doctor, constants } from "@nativescript/doctor";
import { IProjectDataService } from "../definitions/project";
import { IVersionsService, IOptions } from "../declarations";
import { IPlatformEnvironmentRequirements } from "../definitions/platform";
import {
IDoctorService,
IAnalyticsService,
IHostInfo,
IChildProcess,
IFileSystem,
ISettingsService,
ISpawnResult,
} from "../common/declarations";
import { IJsonFileSettingsService } from "../common/definitions/json-file-settings-service";
import { IInjector } from "../common/definitions/yok";
import { injector } from "../common/yok";
export class DoctorService implements IDoctorService {
private static DarwinSetupScriptLocation = path.join(
__dirname,
"..",
"..",
"setup",
"mac-startup-shell-script.sh"
);
private static WindowsSetupScriptExecutable = "powershell.exe";
private static WindowsSetupScriptArguments = [
"start-process",
"-FilePath",
"PowerShell.exe",
"-NoNewWindow",
"-Wait",
"-ArgumentList",
"\"-NoProfile -ExecutionPolicy Bypass -Command iex ((new-object net.webclient).DownloadString('https://www.nativescript.org/setup/win'))\"",
];
@cache()
private get jsonFileSettingsPath(): string {
return path.join(
this.$settingsService.getProfileDir(),
"doctor-cache.json"
);
}
@cache()
private get $jsonFileSettingsService(): IJsonFileSettingsService {
return this.$injector.resolve<IJsonFileSettingsService>(
"jsonFileSettingsService",
{ jsonFileSettingsPath: this.jsonFileSettingsPath }
);
}
constructor(
private $analyticsService: IAnalyticsService,
private $hostInfo: IHostInfo,
private $logger: ILogger,
private $childProcess: IChildProcess,
private $injector: IInjector,
private $projectDataService: IProjectDataService,
private $fs: IFileSystem,
private $terminalSpinnerService: ITerminalSpinnerService,
private $versionsService: IVersionsService,
private $settingsService: ISettingsService
) {}
public async printWarnings(configOptions?: {
trackResult: boolean;
projectDir?: string;
runtimeVersion?: string;
options?: IOptions;
forceCheck?: boolean;
platform?: string;
}): Promise<void> {
configOptions = configOptions || <any>{};
const getInfosData: any = {
projectDir: configOptions.projectDir,
androidRuntimeVersion: configOptions.runtimeVersion,
platform: configOptions.platform,
};
const infos = await this.$terminalSpinnerService.execute<
NativeScriptDoctor.IInfo[]
>(
{
text: `Getting environment information ${EOL}`,
},
() =>
this.getInfos({ forceCheck: configOptions.forceCheck }, getInfosData)
);
const warnings = infos.filter(
(info) => info.type === constants.WARNING_TYPE_NAME
);
const hasWarnings = warnings.length > 0;
const hasAndroidWarnings =
warnings.filter((warning) =>
_.includes(warning.platforms, constants.ANDROID_PLATFORM_NAME)
).length > 0;
if (hasAndroidWarnings) {
this.printPackageManagerTip();
}
if (!configOptions || configOptions.trackResult) {
// TODO(Analytics): Consider sending this information to Google Analytics
// await this.$analyticsService.track("DoctorEnvironmentSetup", hasWarnings ? "incorrect" : "correct");
}
if (hasWarnings) {
this.$logger.info("There seem to be issues with your configuration.");
// cleanup the cache file as there seems to be issues with the current config
// all projects need to be rechecked
this.$fs.deleteFile(this.jsonFileSettingsPath);
} else {
this.$logger.info("No issues were detected.".bold);
await this.$jsonFileSettingsService.saveSetting(
this.getKeyForConfiguration(getInfosData),
infos
);
this.printInfosCore(infos);
}
try {
await this.$versionsService.printVersionsInformation(
configOptions.platform
);
} catch (err) {
this.$logger.error(
"Cannot get the latest versions information from npm. Please try again later."
);
}
// todo: check for deprecated imports from `tns-core-modules`
this.checkForDeprecatedShortImportsInAppDir(configOptions.projectDir);
await this.$injector
.resolve<IPlatformEnvironmentRequirements>(
"platformEnvironmentRequirements"
)
.checkEnvironmentRequirements({
platform: configOptions.platform,
projectDir: configOptions.projectDir,
runtimeVersion: configOptions.runtimeVersion,
options: configOptions.options,
});
}
public async runSetupScript(): Promise<ISpawnResult> {
await this.$analyticsService.trackEventActionInGoogleAnalytics({
action: TrackActionNames.RunSetupScript,
additionalData: "Starting",
});
if (this.$hostInfo.isLinux) {
await this.$analyticsService.trackEventActionInGoogleAnalytics({
action: TrackActionNames.RunSetupScript,
additionalData: "Skipped as OS is Linux",
});
return;
}
this.$logger.info(
"Running the setup script to try and automatically configure your environment."
);
if (this.$hostInfo.isDarwin) {
await this.runSetupScriptCore(
DoctorService.DarwinSetupScriptLocation,
[]
);
}
if (this.$hostInfo.isWindows) {
await this.runSetupScriptCore(
DoctorService.WindowsSetupScriptExecutable,
DoctorService.WindowsSetupScriptArguments
);
}
await this.$analyticsService.trackEventActionInGoogleAnalytics({
action: TrackActionNames.RunSetupScript,
additionalData: "Finished",
});
}
public async canExecuteLocalBuild(configuration?: {
platform?: string;
projectDir?: string;
runtimeVersion?: string;
forceCheck?: boolean;
}): Promise<boolean> {
await this.$analyticsService.trackEventActionInGoogleAnalytics({
action: TrackActionNames.CheckLocalBuildSetup,
additionalData: "Starting",
});
const sysInfoConfig: NativeScriptDoctor.ISysInfoConfig = {
platform: configuration.platform,
projectDir: configuration.projectDir,
androidRuntimeVersion: configuration.runtimeVersion,
};
const infos = await this.getInfos(
{ forceCheck: configuration && configuration.forceCheck },
sysInfoConfig
);
const warnings = this.filterInfosByType(infos, constants.WARNING_TYPE_NAME);
const hasWarnings = warnings.length > 0;
if (hasWarnings) {
// cleanup the cache file as there seems to be issues with the current config
// all projects need to be rechecked
this.$fs.deleteFile(this.jsonFileSettingsPath);
await this.$analyticsService.trackEventActionInGoogleAnalytics({
action: TrackActionNames.CheckLocalBuildSetup,
additionalData: `Warnings:${warnings.map((w) => w.message).join("__")}`,
});
this.printInfosCore(infos);
} else {
infos.map((info) => this.$logger.trace(info.message));
await this.$jsonFileSettingsService.saveSetting(
this.getKeyForConfiguration(sysInfoConfig),
infos
);
}
await this.$analyticsService.trackEventActionInGoogleAnalytics({
action: TrackActionNames.CheckLocalBuildSetup,
additionalData: `Finished: Is setup correct: ${!hasWarnings}`,
});
return !hasWarnings;
}
public checkForDeprecatedShortImportsInAppDir(projectDir: string): void {
if (projectDir) {
try {
const files = this.$projectDataService.getAppExecutableFiles(
projectDir
);
const shortImports = this.getDeprecatedShortImportsInFiles(
files,
projectDir
);
if (shortImports.length) {
this.$logger.printMarkdown(
"Detected short imports in your application. Please note that `short imports are deprecated` since NativeScript 5.2.0. More information can be found in this blogpost https://www.nativescript.org/blog/say-goodbye-to-short-imports-in-nativescript"
);
shortImports.forEach((shortImport) => {
this.$logger.printMarkdown(
`In file \`${shortImport.file}\` line \`${shortImport.line}\` is short import. Add \`tns-core-modules/\` in front of the required/imported module.`
);
});
}
} catch (err) {
this.$logger.trace(
`Unable to validate if project has short imports. Error is`,
err
);
}
}
}
protected getDeprecatedShortImportsInFiles(
files: string[],
projectDir: string
): { file: string; line: string }[] {
const shortImportRegExp = this.getShortImportRegExp(projectDir);
const shortImports: { file: string; line: string }[] = [];
for (const file of files) {
const fileContent = this.$fs.readText(file);
const strippedComments = helpers.stripComments(fileContent);
const linesToCheck = _.flatten(
strippedComments.split(/\r?\n/).map((line) => line.split(";"))
);
const linesWithRequireStatements = linesToCheck.filter(
(line) =>
/\btns-core-modules\b/.exec(line) === null &&
(/\bimport\b/.exec(line) || /\brequire\b/.exec(line))
);
for (const line of linesWithRequireStatements) {
const matches = line.match(shortImportRegExp);
if (matches && matches.length) {
shortImports.push({ file, line });
}
}
}
return shortImports;
}
private getShortImportRegExp(projectDir: string): RegExp {
const pathToTnsCoreModules = path.join(
projectDir,
NODE_MODULES_FOLDER_NAME,
TNS_CORE_MODULES_NAME
);
const coreModulesSubDirs = this.$fs
.readDirectory(pathToTnsCoreModules)
.filter((entry) =>
this.$fs
.getFsStats(path.join(pathToTnsCoreModules, entry))
.isDirectory()
);
const stringRegularExpressionsPerDir = coreModulesSubDirs.map((c) => {
// require("text");
// require("text/smth");
// require( "text/smth");
// require( "text/smth" );
// import * as text from "text";
// import { a } from "text";
// import {a } from "text/abc"
const subDirPart = `[\"\']${c}[\"\'/]`;
return `(\\brequire\\s*?\\(\\s*?${subDirPart})|(\\bimport\\b.*?from\\s*?${subDirPart})`;
});
return new RegExp(stringRegularExpressionsPerDir.join("|"), "g");
}
private async runSetupScriptCore(
executablePath: string,
setupScriptArgs: string[]
): Promise<ISpawnResult> {
return this.$childProcess.spawnFromEvent(
executablePath,
setupScriptArgs,
"close",
{ stdio: "inherit" }
);
}
private printPackageManagerTip() {
if (this.$hostInfo.isWindows) {
this.$logger.info(
"TIP: To avoid setting up the necessary environment variables, you can use the chocolatey package manager to install the Android SDK and its dependencies." +
EOL
);
} else if (this.$hostInfo.isDarwin) {
this.$logger.info(
"TIP: To avoid setting up the necessary environment variables, you can use the Homebrew package manager to install the Android SDK and its dependencies." +
EOL
);
}
}
private printInfosCore(infos: NativeScriptDoctor.IInfo[]): void {
if (!helpers.isInteractive()) {
infos.map((info) => {
let message = info.message;
if (info.type === constants.WARNING_TYPE_NAME) {
message = `WARNING: ${info.message.yellow} ${EOL} ${info.additionalInformation} ${EOL}`;
}
this.$logger.info(message);
});
}
infos
.filter((info) => info.type === constants.INFO_TYPE_NAME)
.map((info) => {
const spinner = this.$terminalSpinnerService.createSpinner();
spinner.text = info.message;
spinner.succeed();
});
infos
.filter((info) => info.type === constants.WARNING_TYPE_NAME)
.map((info) => {
const spinner = this.$terminalSpinnerService.createSpinner();
spinner.text = `${info.message.yellow} ${EOL} ${info.additionalInformation} ${EOL}`;
spinner.fail();
});
}
private filterInfosByType(
infos: NativeScriptDoctor.IInfo[],
type: string
): NativeScriptDoctor.IInfo[] {
return infos.filter((info) => info.type === type);
}
private getKeyForConfiguration(
sysInfoConfig?: NativeScriptDoctor.ISysInfoConfig
): string {
const nativeScriptData =
sysInfoConfig &&
sysInfoConfig.projectDir &&
JSON.stringify(
this.$fs.readJson(path.join(sysInfoConfig.projectDir, "package.json"))
.nativescript
);
const delimiter = "__";
const key = [
JSON.stringify(sysInfoConfig),
process.env.ANDROID_HOME,
process.env.JAVA_HOME,
process.env["CommonProgramFiles(x86)"],
process.env["CommonProgramFiles"],
process.env.PROCESSOR_ARCHITEW6432,
process.env.ProgramFiles,
process.env["ProgramFiles(x86)"],
nativeScriptData,
]
.filter((a) => !!a)
.join(delimiter);
const data = helpers.getHash(key, { algorithm: "md5" });
return data;
}
private async getInfos(
cacheConfig: { forceCheck: boolean },
sysInfoConfig?: NativeScriptDoctor.ISysInfoConfig
): Promise<NativeScriptDoctor.IInfo[]> {
const key = this.getKeyForConfiguration(sysInfoConfig);
const infosFromCache = cacheConfig.forceCheck
? null
: await this.$jsonFileSettingsService.getSettingValue<
NativeScriptDoctor.IInfo[]
>(key);
this.$logger.trace(
`getInfos cacheConfig options:`,
cacheConfig,
" current info from cache: ",
infosFromCache
);
const infos = infosFromCache || (await doctor.getInfos(sysInfoConfig));
return infos;
}
}
injector.register("doctorService", DoctorService);