-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
util.ts
419 lines (366 loc) · 12.1 KB
/
util.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
import { appBuilderPath } from "app-builder-bin"
import { safeStringifyJson } from "builder-util-runtime"
import * as chalk from "chalk"
import { ChildProcess, execFile, ExecFileOptions, SpawnOptions } from "child_process"
import { spawn as _spawn } from "cross-spawn"
import { createHash } from "crypto"
import _debug from "debug"
import { dump } from "js-yaml"
import * as path from "path"
import { debug, log } from "./log"
import { install as installSourceMap } from "source-map-support"
import { getPath7za } from "./7za"
if (process.env.JEST_WORKER_ID == null) {
installSourceMap()
}
export { safeStringifyJson } from "builder-util-runtime"
export { TmpDir } from "temp-file"
export { log, debug } from "./log"
export { Arch, getArchCliNames, toLinuxArchString, getArchSuffix, ArchType, archFromString, defaultArchFromString } from "./arch"
export { AsyncTaskManager } from "./asyncTaskManager"
export { DebugLogger } from "./DebugLogger"
export { copyFile, exists } from "./fs"
export { asArray } from "builder-util-runtime"
export { deepAssign } from "./deepAssign"
export { getPath7za, getPath7x } from "./7za"
export const debug7z = _debug("electron-builder:7z")
export function serializeToYaml(object: any, skipInvalid = false, noRefs = false) {
return dump(object, {
lineWidth: 8000,
skipInvalid,
noRefs,
})
}
export function removePassword(input: string) {
return input.replace(/(-String |-P |pass:| \/p |-pass |--secretKey |--accessKey |-p )([^ ]+)/g, (match, p1, p2) => {
if (p1.trim() === "/p" && p2.startsWith("\\\\Mac\\Host\\\\")) {
// appx /p
return `${p1}${p2}`
}
return `${p1}${createHash("sha256").update(p2).digest("hex")} (sha256 hash)`
})
}
function getProcessEnv(env: { [key: string]: string | undefined } | undefined | null): NodeJS.ProcessEnv | undefined {
if (process.platform === "win32") {
return env == null ? undefined : env
}
const finalEnv = {
...(env || process.env),
}
// without LC_CTYPE dpkg can returns encoded unicode symbols
// set LC_CTYPE to avoid crash https://github.com/electron-userland/electron-builder/issues/503 Even "en_DE.UTF-8" leads to error.
const locale = process.platform === "linux" ? process.env.LANG || "C.UTF-8" : "en_US.UTF-8"
finalEnv.LANG = locale
finalEnv.LC_CTYPE = locale
finalEnv.LC_ALL = locale
return finalEnv
}
export function exec(file: string, args?: Array<string> | null, options?: ExecFileOptions, isLogOutIfDebug = true): Promise<string> {
if (log.isDebugEnabled) {
const logFields: any = {
file,
args: args == null ? "" : removePassword(args.join(" ")),
}
if (options != null) {
if (options.cwd != null) {
logFields.cwd = options.cwd
}
if (options.env != null) {
const diffEnv = { ...options.env }
for (const name of Object.keys(process.env)) {
if (process.env[name] === options.env[name]) {
delete diffEnv[name]
}
}
logFields.env = safeStringifyJson(diffEnv)
}
}
log.debug(logFields, "executing")
}
return new Promise<string>((resolve, reject) => {
execFile(
file,
args,
{
...options,
maxBuffer: 1000 * 1024 * 1024,
env: getProcessEnv(options == null ? null : options.env),
},
(error, stdout, stderr) => {
if (error == null) {
if (isLogOutIfDebug && log.isDebugEnabled) {
const logFields: any = {
file,
}
if (stdout.length > 0) {
logFields.stdout = stdout
}
if (stderr.length > 0) {
logFields.stderr = stderr
}
log.debug(logFields, "executed")
}
resolve(stdout.toString())
} else {
let message = chalk.red(removePassword(`Exit code: ${(error as any).code}. ${error.message}`))
if (stdout.length !== 0) {
if (file.endsWith("wine")) {
stdout = stdout.toString()
}
message += `\n${chalk.yellow(stdout.toString())}`
}
if (stderr.length !== 0) {
if (file.endsWith("wine")) {
stderr = stderr.toString()
}
message += `\n${chalk.red(stderr.toString())}`
}
reject(new Error(message))
}
}
)
})
}
export interface ExtraSpawnOptions {
isPipeInput?: boolean
}
function logSpawn(command: string, args: Array<string>, options: SpawnOptions) {
// use general debug.enabled to log spawn, because it doesn't produce a lot of output (the only line), but important in any case
if (!log.isDebugEnabled) {
return
}
const argsString = removePassword(args.join(" "))
const logFields: any = {
command: command + " " + (command === "docker" ? argsString : removePassword(argsString)),
}
if (options != null && options.cwd != null) {
logFields.cwd = options.cwd
}
log.debug(logFields, "spawning")
}
export function doSpawn(command: string, args: Array<string>, options?: SpawnOptions, extraOptions?: ExtraSpawnOptions): ChildProcess {
if (options == null) {
options = {}
}
options.env = getProcessEnv(options.env)
if (options.stdio == null) {
const isDebugEnabled = debug.enabled
// do not ignore stdout/stderr if not debug, because in this case we will read into buffer and print on error
options.stdio = [extraOptions != null && extraOptions.isPipeInput ? "pipe" : "ignore", isDebugEnabled ? "inherit" : "pipe", isDebugEnabled ? "inherit" : "pipe"] as any
}
logSpawn(command, args, options)
try {
return _spawn(command, args, options)
} catch (e: any) {
throw new Error(`Cannot spawn ${command}: ${e.stack || e}`)
}
}
export function spawnAndWrite(command: string, args: Array<string>, data: string, options?: SpawnOptions) {
const childProcess = doSpawn(command, args, options, { isPipeInput: true })
const timeout = setTimeout(() => childProcess.kill(), 4 * 60 * 1000)
return new Promise<any>((resolve, reject) => {
handleProcess(
"close",
childProcess,
command,
() => {
try {
clearTimeout(timeout)
} finally {
resolve(undefined)
}
},
error => {
try {
clearTimeout(timeout)
} finally {
reject(error)
}
}
)
childProcess.stdin!.end(data)
})
}
export function spawn(command: string, args?: Array<string> | null, options?: SpawnOptions, extraOptions?: ExtraSpawnOptions): Promise<any> {
return new Promise<any>((resolve, reject) => {
handleProcess("close", doSpawn(command, args || [], options, extraOptions), command, resolve, reject)
})
}
function handleProcess(event: string, childProcess: ChildProcess, command: string, resolve: ((value?: any) => void) | null, reject: (reason?: any) => void) {
childProcess.on("error", reject)
let out = ""
if (childProcess.stdout != null) {
childProcess.stdout.on("data", (data: string) => {
out += data
})
}
let errorOut = ""
if (childProcess.stderr != null) {
childProcess.stderr.on("data", (data: string) => {
errorOut += data
})
}
childProcess.once(event, (code: number) => {
if (log.isDebugEnabled) {
const fields: any = {
command: path.basename(command),
code,
pid: childProcess.pid,
}
if (out.length > 0) {
fields.out = out
}
log.debug(fields, "exited")
}
if (code === 0) {
if (resolve != null) {
resolve(out)
}
} else {
reject(new ExecError(command, code, out, errorOut))
}
})
}
function formatOut(text: string, title: string) {
return text.length === 0 ? "" : `\n${title}:\n${text}`
}
export class ExecError extends Error {
alreadyLogged = false
constructor(
command: string,
readonly exitCode: number,
out: string,
errorOut: string,
code = "ERR_ELECTRON_BUILDER_CANNOT_EXECUTE"
) {
super(`${command} process failed ${code}${formatOut(String(exitCode), "Exit code")}${formatOut(out, "Output")}${formatOut(errorOut, "Error output")}`)
;(this as NodeJS.ErrnoException).code = code
}
}
type Nullish = null | undefined
export function use<T, R>(value: T | Nullish, task: (value: T) => R): R | null {
return value == null ? null : task(value)
}
export function isEmptyOrSpaces(s: string | null | undefined): s is "" | null | undefined {
return s == null || s.trim().length === 0
}
export function isTokenCharValid(token: string) {
return /^[.\w/=+-]+$/.test(token)
}
export function addValue<K, T>(map: Map<K, Array<T>>, key: K, value: T) {
const list = map.get(key)
if (list == null) {
map.set(key, [value])
} else if (!list.includes(value)) {
list.push(value)
}
}
export function replaceDefault(inList: Array<string> | null | undefined, defaultList: Array<string>): Array<string> {
if (inList == null || (inList.length === 1 && inList[0] === "default")) {
return defaultList
}
const index = inList.indexOf("default")
if (index >= 0) {
const list = inList.slice(0, index)
list.push(...defaultList)
if (index !== inList.length - 1) {
list.push(...inList.slice(index + 1))
}
inList = list
}
return inList
}
export function getPlatformIconFileName(value: string | null | undefined, isMac: boolean) {
if (value === undefined) {
return undefined
}
if (value === null) {
return null
}
if (!value.includes(".")) {
return `${value}.${isMac ? "icns" : "ico"}`
}
return value.replace(isMac ? ".ico" : ".icns", isMac ? ".icns" : ".ico")
}
export function isPullRequest() {
// TRAVIS_PULL_REQUEST is set to the pull request number if the current job is a pull request build, or false if it’s not.
function isSet(value: string | undefined) {
// value can be or null, or empty string
return value && value !== "false"
}
return (
isSet(process.env.TRAVIS_PULL_REQUEST) ||
isSet(process.env.CIRCLE_PULL_REQUEST) ||
isSet(process.env.BITRISE_PULL_REQUEST) ||
isSet(process.env.APPVEYOR_PULL_REQUEST_NUMBER) ||
isSet(process.env.GITHUB_BASE_REF)
)
}
export function isEnvTrue(value: string | null | undefined) {
if (value != null) {
value = value.trim()
}
return value === "true" || value === "" || value === "1"
}
export class InvalidConfigurationError extends Error {
constructor(message: string, code = "ERR_ELECTRON_BUILDER_INVALID_CONFIGURATION") {
super(message)
;(this as NodeJS.ErrnoException).code = code
}
}
export async function executeAppBuilder(
args: Array<string>,
childProcessConsumer?: (childProcess: ChildProcess) => void,
extraOptions: SpawnOptions = {},
maxRetries = 0
): Promise<string> {
const command = appBuilderPath
const env: any = {
...process.env,
SZA_PATH: await getPath7za(),
FORCE_COLOR: chalk.level === 0 ? "0" : "1",
}
const cacheEnv = process.env.ELECTRON_BUILDER_CACHE
if (cacheEnv != null && cacheEnv.length > 0) {
env.ELECTRON_BUILDER_CACHE = path.resolve(cacheEnv)
}
if (extraOptions.env != null) {
Object.assign(env, extraOptions.env)
}
function runCommand() {
return new Promise<string>((resolve, reject) => {
const childProcess = doSpawn(command, args, {
stdio: ["ignore", "pipe", process.stdout],
...extraOptions,
env,
})
if (childProcessConsumer != null) {
childProcessConsumer(childProcess)
}
handleProcess("close", childProcess, command, resolve, error => {
if (error instanceof ExecError && error.exitCode === 2) {
error.alreadyLogged = true
}
reject(error)
})
})
}
if (maxRetries === 0) {
return runCommand()
} else {
return retry(runCommand, maxRetries, 1000)
}
}
export async function retry<T>(task: () => Promise<T>, retriesLeft: number, interval: number, backoff = 0, attempt = 0): Promise<T> {
try {
return await task()
} catch (error: any) {
log.info(`Above command failed, retrying ${retriesLeft} more times`)
if (retriesLeft > 0) {
await new Promise(resolve => setTimeout(resolve, interval + backoff * attempt))
return await retry(task, retriesLeft - 1, interval, backoff, attempt + 1)
} else {
throw error
}
}
}