-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathutils.ts
181 lines (158 loc) · 4.8 KB
/
utils.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
import childProcess from 'node:child_process';
import fs from 'node:fs/promises';
import os from 'node:os';
import path from 'node:path';
import {
ElectronDownloadCacheMode,
ElectronGenericArtifactDetails,
ElectronPlatformArtifactDetailsWithDefaults,
} from './types';
async function useAndRemoveDirectory<T>(
directory: string,
fn: (directory: string) => Promise<T>,
): Promise<T> {
let result: T;
try {
result = await fn(directory);
} finally {
await fs.rm(directory, { recursive: true, force: true });
}
return result;
}
export async function mkdtemp(parentDirectory: string = os.tmpdir()): Promise<string> {
const tempDirectoryPrefix = 'electron-download-';
return await fs.mkdtemp(path.resolve(parentDirectory, tempDirectoryPrefix));
}
export enum TempDirCleanUpMode {
CLEAN,
ORPHAN,
}
export async function withTempDirectoryIn<T>(
parentDirectory: string = os.tmpdir(),
fn: (directory: string) => Promise<T>,
cleanUp: TempDirCleanUpMode,
): Promise<T> {
const tempDirectory = await mkdtemp(parentDirectory);
if (cleanUp === TempDirCleanUpMode.CLEAN) {
return useAndRemoveDirectory(tempDirectory, fn);
} else {
return fn(tempDirectory);
}
}
export async function withTempDirectory<T>(
fn: (directory: string) => Promise<T>,
cleanUp: TempDirCleanUpMode,
): Promise<T> {
return withTempDirectoryIn(undefined, fn, cleanUp);
}
export function normalizeVersion(version: string): string {
if (!version.startsWith('v')) {
return `v${version}`;
}
return version;
}
/**
* Runs the `uname` command and returns the trimmed output.
*/
export function uname(): string {
return childProcess.execSync('uname -m').toString().trim();
}
/**
* Generates an architecture name that would be used in an Electron or Node.js
* download file name.
*/
export function getNodeArch(arch: string): string {
if (arch === 'arm') {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
switch ((process.config.variables as any).arm_version) {
case '6':
return uname();
case '7':
default:
return 'armv7l';
}
}
return arch;
}
/**
* Generates an architecture name that would be used in an Electron or Node.js
* download file name from the `process` module information.
*
* @category Utility
*/
export function getHostArch(): string {
return getNodeArch(process.arch);
}
export function ensureIsTruthyString<T, K extends keyof T>(obj: T, key: K): void {
if (!obj[key] || typeof obj[key] !== 'string') {
throw new Error(`Expected property "${String(key)}" to be provided as a string but it was not`);
}
}
export function isOfficialLinuxIA32Download(
platform: string,
arch: string,
version: string,
mirrorOptions?: object,
): boolean {
return (
platform === 'linux' &&
arch === 'ia32' &&
Number(version.slice(1).split('.')[0]) >= 4 &&
typeof mirrorOptions === 'undefined'
);
}
/**
* Find the value of a environment variable which may or may not have the
* prefix, in a case-insensitive manner.
*/
export function getEnv(prefix = ''): (name: string) => string | undefined {
const envsLowerCase: NodeJS.ProcessEnv = {};
for (const envKey in process.env) {
envsLowerCase[envKey.toLowerCase()] = process.env[envKey];
}
return (name: string): string | undefined => {
return (
envsLowerCase[`${prefix}${name}`.toLowerCase()] ||
envsLowerCase[name.toLowerCase()] ||
undefined
);
};
}
export function setEnv(key: string, value: string | undefined): void {
// The `void` operator always returns `undefined`.
// See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void
if (value !== void 0) {
process.env[key] = value;
}
}
export function effectiveCacheMode(
artifactDetails: ElectronPlatformArtifactDetailsWithDefaults | ElectronGenericArtifactDetails,
): ElectronDownloadCacheMode {
if (artifactDetails.force) {
if (artifactDetails.cacheMode) {
throw new Error(
'Setting both "force" and "cacheMode" is not supported, please exclusively use "cacheMode"',
);
}
return ElectronDownloadCacheMode.WriteOnly;
}
return artifactDetails.cacheMode || ElectronDownloadCacheMode.ReadWrite;
}
export function shouldTryReadCache(cacheMode: ElectronDownloadCacheMode): boolean {
return (
cacheMode === ElectronDownloadCacheMode.ReadOnly ||
cacheMode === ElectronDownloadCacheMode.ReadWrite
);
}
export function shouldWriteCache(cacheMode: ElectronDownloadCacheMode): boolean {
return (
cacheMode === ElectronDownloadCacheMode.WriteOnly ||
cacheMode === ElectronDownloadCacheMode.ReadWrite
);
}
export function doesCallerOwnTemporaryOutput(cacheMode: ElectronDownloadCacheMode): boolean {
return (
cacheMode === ElectronDownloadCacheMode.Bypass ||
cacheMode === ElectronDownloadCacheMode.ReadOnly
);
}