-
-
Notifications
You must be signed in to change notification settings - Fork 999
Expand file tree
/
Copy pathadvanced-creation.js
More file actions
164 lines (139 loc) · 3.88 KB
/
Copy pathadvanced-creation.js
File metadata and controls
164 lines (139 loc) · 3.88 KB
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
import process from 'node:process';
import crypto from 'node:crypto';
import got from '../../dist/source/index.js';
// Signing requests
/*
Got supports composing multiple instances together. This is very powerful.
You can create a client that limits download/upload size, then compose it with an instance that signs a request.
It's like plugins without any of the plugin mess.
You just create instances and then compose them together.
To mix them use `instanceA.extend(instanceB, instanceC, ...)`, that's all.
Let's begin.
*/
// Logging all `got(…)` calls
const logger = got.extend({
handlers: [
(options, next) => {
console.log(`Sending ${options.method} to ${options.url}`);
return next(options);
},
],
});
// Denying redirects to foreign hosts
const controlRedirects = got.extend({
hooks: {
beforeRedirect: [
(options, response) => {
const {origin} = response.request.options.url;
if (options.url.origin !== origin) {
throw new Error(`Redirection to ${options.url.origin} is not allowed from ${origin}`);
}
},
],
},
});
// Limiting download & upload size
// This can prevent crashing due to insufficient memory
const limitDownloadUpload = got.extend({
handlers: [
(options, next) => {
const {downloadLimit, uploadLimit} = options.context;
// Create an AbortController if limits are set and signal not already provided
let controller;
let {signal} = options;
if ((downloadLimit || uploadLimit) && !signal) {
controller = new AbortController();
signal = controller.signal;
options.signal = signal;
}
const promiseOrStream = next(options);
if (typeof downloadLimit === 'number') {
promiseOrStream.on('downloadProgress', progress => {
if (progress.transferred > downloadLimit && progress.percent !== 1) {
const error = new Error(`Exceeded the download limit of ${downloadLimit} bytes`);
if (options.isStream) {
promiseOrStream.destroy(error);
} else {
controller?.abort(error);
}
}
});
}
if (typeof uploadLimit === 'number') {
promiseOrStream.on('uploadProgress', progress => {
if (progress.transferred > uploadLimit && progress.percent !== 1) {
const error = new Error(`Exceeded the upload limit of ${uploadLimit} bytes`);
if (options.isStream) {
promiseOrStream.destroy(error);
} else {
controller?.abort(error);
}
}
});
}
return promiseOrStream;
},
],
});
// No user agent
const noUserAgent = got.extend({
headers: {
'user-agent': undefined,
},
});
// Custom endpoint
const httpbin = got.extend({
prefixUrl: 'https://httpbin.org/',
});
const getMessageSignature = (data, secret) => crypto.createHmac('sha256', secret).update(data).digest('hex').toUpperCase();
const signRequest = got.extend({
hooks: {
beforeRequest: [
options => {
const secret = options.context.secret ?? process.env.SECRET;
if (secret) {
options.headers.sign = getMessageSignature(options.body ?? '', secret);
}
},
],
},
});
/*
* Putting it all together
*/
const merged = got.extend(
noUserAgent,
logger,
limitDownloadUpload,
httpbin,
signRequest,
controlRedirects,
);
// There's no 'user-agent' header :)
const {headers} = await merged.post('anything', {
body: 'foobar',
context: {
secret: 'password',
},
}).json();
console.log(headers);
// Sending POST to https://httpbin.org/anything
// {
// Accept: 'application/json',
// 'Accept-Encoding': 'gzip, deflate, br',
// 'Content-Length': '6',
// Host: 'httpbin.org',
// Sign: 'EB0167A1EBF205510BAFF5DA1465537944225F0E0140E1880B746F361FF11DCA'
// }
const MEGABYTE = 1_048_576;
try {
await merged('https://pop-iso.sfo2.cdn.digitaloceanspaces.com/21.04/amd64/intel/5/pop-os_21.04_amd64_intel_5.iso', {
context: {
downloadLimit: MEGABYTE,
},
prefixUrl: '',
});
} catch (error) {
// AbortError: This operation was aborted.
console.log(error.message);
}