-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathdoctor-service.ts
215 lines (180 loc) · 8.75 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
import { EOL } from "os";
import * as path from "path";
import * as helpers from "../common/helpers";
import { TrackActionNames, NODE_MODULES_FOLDER_NAME, TNS_CORE_MODULES_NAME } from "../constants";
import { doctor, constants } from "nativescript-doctor";
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\'))"'];
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) { }
public async printWarnings(configOptions?: { trackResult: boolean, projectDir?: string, runtimeVersion?: string, options?: IOptions }): Promise<void> {
const infos = await this.$terminalSpinnerService.execute<NativeScriptDoctor.IInfo[]>({
text: `Getting environment information ${EOL}`
}, () => doctor.getInfos({ projectDir: configOptions && configOptions.projectDir, androidRuntimeVersion: configOptions && configOptions.runtimeVersion }));
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.");
} else {
this.$logger.out("No issues were detected.".bold);
this.printInfosCore(infos);
}
try {
await this.$versionsService.printVersionsInformation();
} catch (err) {
this.$logger.error("Cannot get the latest versions information from npm. Please try again later.");
}
this.checkForDeprecatedShortImportsInAppDir(configOptions.projectDir);
await this.$injector.resolve<IPlatformEnvironmentRequirements>("platformEnvironmentRequirements").checkEnvironmentRequirements({
platform: null,
projectDir: configOptions && configOptions.projectDir,
runtimeVersion: configOptions && configOptions.runtimeVersion,
options: configOptions && 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.out("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(platform?: string, projectDir?: string, runtimeVersion?: string): Promise<boolean> {
await this.$analyticsService.trackEventActionInGoogleAnalytics({
action: TrackActionNames.CheckLocalBuildSetup,
additionalData: "Starting",
});
const infos = await doctor.getInfos({ platform, projectDir, androidRuntimeVersion: runtimeVersion });
const warnings = this.filterInfosByType(infos, constants.WARNING_TYPE_NAME);
const hasWarnings = warnings.length > 0;
if (hasWarnings) {
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.$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 shortImportRegExps = this.getShortImportRegExps(projectDir);
const shortImports: { file: string, line: string }[] = [];
for (const file of files) {
const fileContent = this.$fs.readText(file);
const strippedComments = helpers.stripComments(fileContent);
const linesWithRequireStatements = strippedComments
.split(/\r?\n/)
.filter(line => /\btns-core-modules\b/.exec(line) === null && (/\bimport\b/.exec(line) || /\brequire\b/.exec(line)));
for (const line of linesWithRequireStatements) {
for (const regExp of shortImportRegExps) {
const matches = line.match(regExp);
if (matches && matches.length) {
shortImports.push({ file, line });
break;
}
}
}
}
return shortImports;
}
private getShortImportRegExps(projectDir: string): RegExp[] {
const pathToTnsCoreModules = path.join(projectDir, NODE_MODULES_FOLDER_NAME, TNS_CORE_MODULES_NAME);
const contents = this.$fs.readDirectory(pathToTnsCoreModules)
.filter(entry => this.$fs.getFsStats(path.join(pathToTnsCoreModules, entry)).isDirectory());
const regExps = contents.map(c => new RegExp(`[\"\']${c}[\"\'/]`, "g"));
return regExps;
}
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.out("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.out("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.out(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);
}
}
$injector.register("doctorService", DoctorService);