-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
282 lines (226 loc) · 6.56 KB
/
index.js
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
#!/usr/bin/env node
const minimist = require('minimist');
const http = require('http');
const fs = require('fs');
const path = require('path');
const util = require('util');
const url = require('url');
const colors = require('ansi-colors');
const progress = require('stream-progressbar');
const USAGE = 'USAGE: bbgurl URL [OPTIONS]';
const HELP = `bbgurl: a cli http client using undici
${USAGE}
make an HTTP request using undici.request.
most undici options are bled straight through the args, using conventions
from the optimist and minimist libraries.
for more information on undici, see: https://npm.im/undici
OPTIONS:
--help print this message.
-Q/--quiet suppress logging.
-X/--method METHOD an http method. defaults to GET.
--body BODY the request body. if the first character is a @,
will read from file. defaults to stdin.
--headers HEADERS a JSON blob representing an undici headers
argument. defaults to null.
--upgrade UPGRADE optionally upgrade the request with the specified
upgrade type.
--bodyTimeout MILLIS how long to wait for the body before timing out.
defaults to 30 seconds.
--headersTimeout MILLIS how long to wait for the headers before timing
out. defaults to 30 seconds.
--maxRedirections N the maximum number of redirects to follow.
--mixin MIXIN if specified, call the appropriate fetch mixin on the body.
-i/--include include response status, headers and trailers.
--logfile FILE an optional file to write logs to.
-o/--output FILE a file to write the response to. defaults to stdout.
-u/--user CREDENTIALS specify basic auth credentials. ex: '-u user:pass'
`;
function parseArgs(argv) {
let error = null;
const opts = minimist(argv, {
string: [
'method',
'body',
'headers',
'upgrade',
'bodyTimeout',
'headersTimeout',
'maxRedirections',
'mixin',
'logfile',
'output',
'user'
],
boolean: [
'idempotent',
'blocking',
'help',
'quiet',
'verbose',
'include'
],
alias: {
method: 'X',
body: 'd',
headers: 'H',
include: 'i',
output: 'o',
user: 'u',
quiet: 'Q'
},
default: {
include: false,
verbose: true
},
unknown: (arg) => {
if (! arg.startsWith('-')) {
return true;
}
error = `Unknown option: ${arg}`;
}
});
let _url = opts._.length ? url.parse(opts._.join(' ')) : null;
const undiciOptions = {
method: opts.method,
headers: opts.headers ? JSON.parse(opts.headers) : undefined,
idempotent: opts.idempotent,
blocking: opts.blocking,
bodyTimeout: opts.bodyTimeout ? parseInt(opts.bodyTimeout, 10) : undefined,
headerstimeout: opts.headersTimeout ? parseInt(opts.headersTimeout, 10) : undefined,
maxRedirections: opts.maxRedirections ? parseInt(opts.maxRedirections, 10) : undefined
};
if (opts.user) {
const encoded = Buffer.from(opts.user).toString('base64');
undiciOptions.headers = undiciOptions.headers || {};
undiciOptions.headers.authorization = `Basic ${encoded}`;
}
if (opts.body && opts.body[0] === '@' && fs.existsSync(opts.body.slice(1))) {
undiciOptions.body = fs.createReadStream(opts.body.slice(1));
} else if (opts.body) {
undiciOptions.body = opts.body;
} else if (opts.method && opts.method !== 'GET') {
undiciOptions.body = process.stdin;
}
const appOptions = {
output: opts.output ? fs.createWriteStream(opts.output) : process.stdout,
outputFile: opts.output ? path.resolve(opts.output) : null,
help: opts.help,
quiet: opts.quiet,
verbose: !opts.quiet,
include: opts.include,
logfile: opts.logfile,
mixin: opts.mixin,
error
};
return [[ _url, undiciOptions], appOptions ];
}
class IOManager {
constructor(opts) {
this.output = opts.output;
this._log = () => {};
if (opts.verbose && !opts.logfile) {
this._log = console.error;
} else if (opts.logfile) {
this._logfile = fs.createWriteStream(path.resolve(opts.logfile));
this._log = (message, ...params) => {
this._logfile.write(util.format(message, ...params) + '\n');
};
}
if (opts.output !== process.stdout) {
this.output.on('close', () => {
this.log('Data written to %s', opts.outputFile);
});
}
}
log(message, ...params) {
this._log(`[${colors.magenta('♥')}] ${message}`, ...params);
}
printLn(message, ...params) {
this.output.write(
(
message
? util.format(message, ...params)
: ''
) + '\r\n'
);
}
usage() {
this.log(USAGE);
this.log('');
this.log('For more information, run "bbgurl --help".');
}
help() {
HELP.split('\n').forEach((line) => {
this.log(line);
});
}
printStatus(statusCode) {
this.printLn(`HTTP ${statusCode} ${http.STATUS_CODES[statusCode]}`);
}
printHeaders(headers) {
Object.entries(headers).forEach(([key, value]) => {
this.printLn('%s: %s', key, value);
});
this.printLn();
}
}
async function main() {
const [[url, undiciOpts], appOpts] = parseArgs(process.argv.slice(2));
const io = new IOManager(appOpts);
if (appOpts.error) {
io.log(appOpts.error);
io.log('');
io.help();
process.exit(1);
}
if (appOpts.help) {
io.help();
return;
}
if (!url) {
io.usage();
process.exit(1);
}
const undici = await import('undici');
const showProgress = !appOpts.mixin && appOpts.verbose;
const {
statusCode,
headers,
trailers,
body
} = await undici.request(url, undiciOpts);
if (appOpts.include) {
io.printStatus(statusCode);
io.printHeaders(headers);
}
let total = null;
try {
total = parseInt(headers['content-length'], 10);
} catch (err) {}
if (appOpts.mixin) {
io.printLn(await body[appOpts.mixin]());
printTrailers();
} else {
let res = body;
if (showProgress && total) {
res = res.pipe(
progress(
`[${colors.magenta('♥')}] Downloading: :bar :percent (:current/:total)`,
{ total, width: 40 }
)
);
}
res.pipe(appOpts.output);
res.on('end', printTrailers);
}
function printTrailers() {
if (appOpts.include) {
io.printHeaders(trailers);
}
}
}
module.exports = {
parseArgs,
IOManager,
main
};