-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathhelpers.ts
82 lines (70 loc) · 2.09 KB
/
helpers.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
import debug from 'debug';
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
const d = debug('electron-notarize:helpers');
export async function withTempDir<T>(fn: (dir: string) => Promise<T>) {
const dir = await fs.promises.mkdtemp(path.resolve(os.tmpdir(), 'electron-notarize-'));
d('doing work inside temp dir:', dir);
let result: T;
try {
result = await fn(dir);
} catch (err) {
d('work failed');
await fs.promises.rm(dir, { recursive: true, force: true });
throw err;
}
d('work succeeded');
await fs.promises.rm(dir, { recursive: true, force: true });
return result;
}
class Secret {
constructor(private value: string) {}
toString() {
return this.value;
}
inspect() {
return '******';
}
}
export function makeSecret(s: string) {
return new Secret(s) as any as string;
}
export function isSecret(s: string) {
return (s as any) instanceof Secret;
}
export interface NotarizationInfo {
uuid: string;
date: Date;
status: 'invalid' | 'in progress' | 'success';
logFileUrl: string | null;
// Only set when status != 'in progress'
statusCode?: 0 | 2;
statusMessage?: string;
}
export function parseNotarizationInfo(info: string): NotarizationInfo {
const out = {} as any;
const matchToProperty = <K extends keyof NotarizationInfo>(
key: K,
r: RegExp,
modifier?: (s: string) => NotarizationInfo[K],
) => {
const exec = r.exec(info);
if (exec) {
out[key] = modifier ? modifier(exec[1]) : exec[1];
}
};
matchToProperty('uuid', /\n *RequestUUID: (.+?)\n/);
matchToProperty('date', /\n *Date: (.+?)\n/, (d) => new Date(d));
matchToProperty('status', /\n *Status: (.+?)\n/);
matchToProperty('logFileUrl', /\n *LogFileURL: (.+?)\n/);
matchToProperty('statusCode', /\n *Status Code: (.+?)\n/, (n) => parseInt(n, 10) as any);
matchToProperty('statusMessage', /\n *Status Message: (.+?)\n/);
if (out.logFileUrl === '(null)') {
out.logFileUrl = null;
}
return out;
}
export function delay(ms: number): Promise<void> {
return new Promise((resolve) => setTimeout(resolve, ms));
}