forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExplorerCommandLineParser.ts
More file actions
249 lines (213 loc) · 8.78 KB
/
ExplorerCommandLineParser.ts
File metadata and controls
249 lines (213 loc) · 8.78 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
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import express from 'express';
import yaml from 'js-yaml';
import cors from 'cors';
import process from 'process';
import open from 'open';
import updateNotifier from 'update-notifier';
import { FileSystem, type IPackageJson, JsonFile, PackageJsonLookup } from '@rushstack/node-core-library';
import { ConsoleTerminalProvider, type ITerminal, Terminal, Colorize } from '@rushstack/terminal';
import {
type CommandLineFlagParameter,
CommandLineParser,
type IRequiredCommandLineStringParameter
} from '@rushstack/ts-command-line';
import type { IAppContext } from '@rushstack/lockfile-explorer-web/lib/AppContext';
import type { Lockfile } from '@pnpm/lockfile-types';
import type { IAppState } from '../../state';
import { init } from '../../utils/init';
import { convertLockfileV6DepPathToV5DepPath, getShrinkwrapFileMajorVersion } from '../../utils/shrinkwrap';
const EXPLORER_TOOL_FILENAME: 'lockfile-explorer' = 'lockfile-explorer';
export class ExplorerCommandLineParser extends CommandLineParser {
public readonly globalTerminal: ITerminal;
private readonly _terminalProvider: ConsoleTerminalProvider;
private readonly _debugParameter: CommandLineFlagParameter;
private readonly _subspaceParameter: IRequiredCommandLineStringParameter;
public constructor() {
super({
toolFilename: EXPLORER_TOOL_FILENAME,
toolDescription:
'Lockfile Explorer is a desktop app for investigating and solving version conflicts in a PNPM workspace.'
});
this._debugParameter = this.defineFlagParameter({
parameterLongName: '--debug',
parameterShortName: '-d',
description: 'Show the full call stack if an error occurs while executing the tool'
});
this._subspaceParameter = this.defineStringParameter({
parameterLongName: '--subspace',
argumentName: 'SUBSPACE_NAME',
description: 'Specifies an individual Rush subspace to check.',
defaultValue: 'default'
});
this._terminalProvider = new ConsoleTerminalProvider();
this.globalTerminal = new Terminal(this._terminalProvider);
}
public get isDebug(): boolean {
return this._debugParameter.value;
}
protected override async onExecuteAsync(): Promise<void> {
const lockfileExplorerProjectRoot: string = PackageJsonLookup.instance.tryGetPackageFolderFor(__dirname)!;
const lockfileExplorerPackageJson: IPackageJson = JsonFile.load(
`${lockfileExplorerProjectRoot}/package.json`
);
const appVersion: string = lockfileExplorerPackageJson.version;
this.globalTerminal.writeLine(
Colorize.bold(`\nRush Lockfile Explorer ${appVersion}`) +
Colorize.cyan(' - https://lfx.rushstack.io/\n')
);
updateNotifier({
pkg: lockfileExplorerPackageJson,
// Normally update-notifier waits a day or so before it starts displaying upgrade notices.
// In debug mode, show the notice right away.
updateCheckInterval: this.isDebug ? 0 : undefined
}).notify({
// Make sure it says "-g" in the "npm install" example command line
isGlobal: true,
// Show the notice immediately, rather than waiting for process.onExit()
defer: false
});
const PORT: number = 8091;
// Must not have a trailing slash
const SERVICE_URL: string = `http://localhost:${PORT}`;
const appState: IAppState = init({
lockfileExplorerProjectRoot,
appVersion,
debugMode: this.isDebug,
subspaceName: this._subspaceParameter.value
});
// Important: This must happen after init() reads the current working directory
process.chdir(appState.lockfileExplorerProjectRoot);
const distFolderPath: string = `${appState.lockfileExplorerProjectRoot}/dist`;
const app: express.Application = express();
app.use(express.json());
app.use(cors());
// Variable used to check if the front-end client is still connected
let awaitingFirstConnect: boolean = true;
let isClientConnected: boolean = false;
let disconnected: boolean = false;
setInterval(() => {
if (!isClientConnected && !awaitingFirstConnect && !disconnected) {
console.log(Colorize.red('The client has disconnected!'));
console.log(`Please open a browser window at http://localhost:${PORT}/app`);
disconnected = true;
} else if (!awaitingFirstConnect) {
isClientConnected = false;
}
}, 4000);
// This takes precedence over the `/app` static route, which also has an `initappcontext.js` file.
app.get('/initappcontext.js', (req: express.Request, res: express.Response) => {
const appContext: IAppContext = {
serviceUrl: SERVICE_URL,
appVersion: appState.appVersion,
debugMode: this.isDebug
};
const sourceCode: string = [
`console.log('Loaded initappcontext.js');`,
`appContext = ${JSON.stringify(appContext)}`
].join('\n');
res.type('application/javascript').send(sourceCode);
});
app.use('/', express.static(distFolderPath));
app.use('/favicon.ico', express.static(distFolderPath, { index: 'favicon.ico' }));
app.get('/api/lockfile', async (req: express.Request, res: express.Response) => {
const pnpmLockfileText: string = await FileSystem.readFileAsync(appState.pnpmLockfileLocation);
const doc = yaml.load(pnpmLockfileText) as Lockfile;
const { packages, lockfileVersion } = doc;
const shrinkwrapFileMajorVersion: number = getShrinkwrapFileMajorVersion(lockfileVersion);
if (packages && shrinkwrapFileMajorVersion === 6) {
const updatedPackages: Lockfile['packages'] = {};
for (const [dependencyPath, dependency] of Object.entries(packages)) {
updatedPackages[convertLockfileV6DepPathToV5DepPath(dependencyPath)] = dependency;
}
doc.packages = updatedPackages;
}
res.send({
doc,
subspaceName: this._subspaceParameter.value
});
});
app.get('/api/health', (req: express.Request, res: express.Response) => {
awaitingFirstConnect = false;
isClientConnected = true;
if (disconnected) {
disconnected = false;
console.log(Colorize.green('The client has reconnected!'));
}
res.status(200).send();
});
app.post(
'/api/package-json',
async (req: express.Request<{}, {}, { projectPath: string }, {}>, res: express.Response) => {
const { projectPath } = req.body;
const fileLocation = `${appState.projectRoot}/${projectPath}/package.json`;
let packageJsonText: string;
try {
packageJsonText = await FileSystem.readFileAsync(fileLocation);
} catch (e) {
if (FileSystem.isNotExistError(e)) {
return res.status(404).send({
message: `Could not load package.json file for this package. Have you installed all the dependencies for this workspace?`,
error: `No package.json in location: ${projectPath}`
});
} else {
throw e;
}
}
res.send(packageJsonText);
}
);
app.get('/api/pnpmfile', async (req: express.Request, res: express.Response) => {
let pnpmfile: string;
try {
pnpmfile = await FileSystem.readFileAsync(appState.pnpmfileLocation);
} catch (e) {
if (FileSystem.isNotExistError(e)) {
return res.status(404).send({
message: `Could not load pnpmfile file in this repo.`,
error: `No .pnpmifile.cjs found.`
});
} else {
throw e;
}
}
res.send(pnpmfile);
});
app.post(
'/api/package-spec',
async (req: express.Request<{}, {}, { projectPath: string }, {}>, res: express.Response) => {
const { projectPath } = req.body;
const fileLocation = `${appState.projectRoot}/${projectPath}/package.json`;
let packageJson: IPackageJson;
try {
packageJson = await JsonFile.loadAsync(fileLocation);
} catch (e) {
if (FileSystem.isNotExistError(e)) {
return res.status(404).send({
message: `Could not load package.json file in location: ${projectPath}`
});
} else {
throw e;
}
}
const {
hooks: { readPackage }
} = require(appState.pnpmfileLocation);
const parsedPackage = readPackage(packageJson, {});
res.send(parsedPackage);
}
);
app.listen(PORT, async () => {
console.log(`App launched on ${SERVICE_URL}`);
if (!appState.debugMode) {
try {
// Launch the web browser
await open(SERVICE_URL);
} catch (e) {
this.globalTerminal.writeError('Error launching browser: ' + e.toString());
}
}
});
}
}