-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.mjs
156 lines (137 loc) · 3.94 KB
/
index.mjs
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
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import {existsSync} from 'fs'
import {exec, execSync} from 'child_process'
import {createInterface} from 'readline'
import {default as nodeFetch} from 'node-fetch'
import chalk from 'chalk'
import shq from 'shq'
export {chalk}
function colorize(cmd) {
return cmd.replace(/^\w+\s/, substr => {
return chalk.greenBright(substr)
})
}
function substitute(arg) {
if (arg instanceof ProcessOutput) {
return arg.stdout.replace(/\n$/, '')
}
return arg
}
export function $(pieces, ...args) {
let __from = (new Error().stack.split('at ')[2]).trim()
let cmd = pieces[0], i = 0
while (i < args.length) cmd += $.quote(substitute(args[i])) + pieces[++i]
if ($.verbose) console.log('$', colorize(cmd))
return new Promise((resolve, reject) => {
let options = {
windowsHide: true,
}
if (typeof $.shell !== 'undefined') options.shell = $.shell
if (typeof $.cwd !== 'undefined') options.cwd = $.cwd
let child = exec($.prefix + cmd, options)
let stdout = '', stderr = '', combined = ''
child.stdout.on('data', data => {
if ($.verbose) process.stdout.write(data)
stdout += data
combined += data
})
child.stderr.on('data', data => {
if ($.verbose) process.stderr.write(data)
stderr += data
combined += data
})
child.on('exit', code => {
(code === 0 ? resolve : reject)(
new ProcessOutput({code, stdout, stderr, combined, __from})
)
})
})
}
$.verbose = true
// Try `command`, should cover all Bourne-like shells.
// Try `which`, should cover most other cases.
// Try `type` command, if the rest fails.
$.shell = `${execSync('command -v bash || which bash || type -p bash')}`.trim()
$.prefix = 'set -euo pipefail;'
$.quote = shq
$.cwd = undefined
export function cd(path) {
if ($.verbose) console.log('$', colorize(`cd ${path}`))
if (!existsSync(path)) {
let __from = (new Error().stack.split('at ')[2]).trim()
console.error(`cd: ${path}: No such directory`)
console.error(` at ${__from}`)
process.exit(1)
}
$.cwd = path
}
export async function question(query, options) {
let completer = undefined
if (Array.isArray(options?.choices)) {
completer = function completer(line) {
const completions = options.choices
const hits = completions.filter((c) => c.startsWith(line))
return [hits.length ? hits : completions, line]
}
}
const rl = createInterface({
input: process.stdin,
output: process.stdout,
completer,
})
const question = (q) => new Promise((resolve) => rl.question(q, resolve));
let answer = await question(query)
rl.close()
return answer
}
export async function fetch(url, init) {
if ($.verbose) {
if (typeof init !== 'undefined') {
console.log('$', colorize(`fetch ${url}`), init)
} else {
console.log('$', colorize(`fetch ${url}`))
}
}
return nodeFetch(url, init)
}
export class ProcessOutput {
#code = 0
#stdout = ''
#stderr = ''
#combined = ''
#__from = ''
constructor({code, stdout, stderr, combined, __from}) {
this.#code = code
this.#stdout = stdout
this.#stderr = stderr
this.#combined = combined
this.#__from = __from
}
toString() {
return this.#combined
}
get stdout() {
return this.#stdout
}
get stderr() {
return this.#stderr
}
get exitCode() {
return this.#code
}
get __from() {
return this.#__from
}
}