-
-
Notifications
You must be signed in to change notification settings - Fork 935
/
advanced-creation.js
146 lines (128 loc) · 3.46 KB
/
advanced-creation.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
import got from '../../dist/source/index.js';
/*
* Got supports composing multiple instances together. This is very powerful.
*
* You can create a client that limits download speed,
* 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;
let promiseOrStream = next(options);
// A destroy function that supports both promises and streams
const destroy = message => {
if (options.isStream) {
promiseOrStream.destroy(new Error(message));
return;
}
promiseOrStream.cancel(message);
};
if (typeof downloadLimit === 'number') {
promiseOrStream.on('downloadProgress', progress => {
if (progress.transferred > downloadLimit && progress.percent !== 1) {
destroy(`Exceeded the download limit of ${downloadLimit} bytes`);
}
});
}
if (typeof uploadLimit === 'number') {
promiseOrStream.on('uploadProgress', progress => {
if (progress.transferred > uploadLimit && progress.percent !== 1) {
destroy(`Exceeded the upload limit of ${uploadLimit} bytes`);
}
});
}
return promiseOrStream;
}
]
});
// No user agent
const noUserAgent = got.extend({
headers: {
'user-agent': undefined
}
});
// Custom endpoint
const httpbin = got.extend({
prefixUrl: 'https://httpbin.org/'
});
// Signing requests
import crypto from 'node:crypto';
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 = 1048576;
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: ''
});
// CancelError: Exceeded the download limit of 1048576 bytes