forked from NativeScript/nativescript-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase-package-manager.ts
176 lines (157 loc) · 5.22 KB
/
base-package-manager.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
import { isInteractive } from "./common/helpers";
import {
INodePackageManager,
INodePackageManagerInstallOptions,
INpmInstallResultInfo,
INpmsResult,
INpmPackageNameParts,
} from "./declarations";
import {
IDictionary,
IChildProcess,
IFileSystem,
IHostInfo,
} from "./common/declarations";
export abstract class BasePackageManager implements INodePackageManager {
public abstract install(
packageName: string,
pathToSave: string,
config: INodePackageManagerInstallOptions
): Promise<INpmInstallResultInfo>;
public abstract uninstall(
packageName: string,
config?: IDictionary<string | boolean>,
path?: string
): Promise<string>;
public abstract view(packageName: string, config: Object): Promise<any>;
public abstract search(
filter: string[],
config: IDictionary<string | boolean>
): Promise<string>;
public abstract searchNpms(keyword: string): Promise<INpmsResult>;
public abstract getRegistryPackageData(packageName: string): Promise<any>;
public abstract getCachePath(): Promise<string>;
constructor(
protected $childProcess: IChildProcess,
protected $fs: IFileSystem,
private $hostInfo: IHostInfo,
private $pacoteService: IPacoteService,
private packageManager: string
) {}
public async isRegistered(packageName: string): Promise<boolean> {
if (
this.isURL(packageName) ||
this.$fs.exists(packageName) ||
this.isTgz(packageName)
) {
return false;
}
try {
const viewResult = await this.view(packageName, { name: true });
// `npm view nonExistingPackageName` will return `nativescript`
// if executed in the root dir of the CLI (npm 6.4.1)
const packageNameRegex = new RegExp(packageName, "i");
const isProperResult = packageNameRegex.test(viewResult);
return isProperResult;
} catch (e) {
return false;
}
}
public async getPackageNameParts(
fullPackageName: string
): Promise<INpmPackageNameParts> {
// support <reserved_name>@<version> syntax, for example [email protected]
// support <scoped_package_name>@<version> syntax, for example @nativescript/[email protected]
const lastIndexOfAtSign = fullPackageName.lastIndexOf("@");
let version = "";
let templateName = "";
if (lastIndexOfAtSign > 0) {
templateName = fullPackageName.substr(0, lastIndexOfAtSign).toLowerCase();
version = fullPackageName.substr(lastIndexOfAtSign + 1);
}
return {
name: templateName || fullPackageName,
version: version,
};
}
public async getPackageFullName(
packageNameParts: INpmPackageNameParts
): Promise<string> {
return packageNameParts.version
? `${packageNameParts.name}@${packageNameParts.version}`
: packageNameParts.name;
}
protected getPackageManagerExecutableName(): string {
let npmExecutableName = this.packageManager;
if (this.$hostInfo.isWindows) {
npmExecutableName += ".cmd";
}
return npmExecutableName;
}
protected async processPackageManagerInstall(
packageName: string,
params: string[],
opts: { cwd: string; isInstallingAllDependencies: boolean }
): Promise<INpmInstallResultInfo> {
const npmExecutable = this.getPackageManagerExecutableName();
const stdioValue = isInteractive() ? "inherit" : "pipe";
await this.$childProcess.spawnFromEvent(npmExecutable, params, "close", {
cwd: opts.cwd,
stdio: stdioValue,
shell: this.$hostInfo.isWindows,
});
// Whenever calling "npm install" or "yarn add" without any arguments (hence installing all dependencies) no output is emitted on stdout
// Luckily, whenever you call "npm install" or "yarn add" to install all dependencies chances are you won't need the name/version of the package you're installing because there is none.
const { isInstallingAllDependencies } = opts;
if (isInstallingAllDependencies) {
return null;
}
const packageMetadata = await this.$pacoteService.manifest(packageName);
return {
name: packageMetadata.name,
version: packageMetadata.version,
};
}
protected getFlagsString(config: any, asArray: boolean): any {
const array: Array<string> = [];
for (const flag in config) {
if (
flag === "global" &&
this.packageManager !== "yarn" &&
this.packageManager !== "yarn2"
) {
array.push(`--${flag}`);
array.push(`${config[flag]}`);
} else if (config[flag]) {
if (
flag === "dist-tags" ||
flag === "versions" ||
flag === "name" ||
flag === "gradle" ||
flag === "version_info"
) {
if (this.packageManager === "yarn2") {
array.push(`--fields ${flag}`);
} else {
array.push(` ${flag}`);
}
continue;
}
array.push(`--${flag}`);
}
}
if (asArray) {
return array;
}
return array.join(" ");
}
private isTgz(packageName: string): boolean {
return packageName.indexOf(".tgz") >= 0;
}
private isURL(str: string): boolean {
const urlRegex =
"^(?!mailto:)(?:(?:http|https|ftp)://)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$";
const url = new RegExp(urlRegex, "i");
return str.length < 2083 && url.test(str);
}
}