forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nodeFetchHttpClient.ts
414 lines (361 loc) · 12.8 KB
/
nodeFetchHttpClient.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
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import * as http from "http";
import * as https from "https";
import * as tough from "tough-cookie";
import { AbortController, AbortError } from "@azure/abort-controller";
import { HttpHeaders, HttpHeadersLike } from "./httpHeaders";
import { ProxyAgent, createProxyAgent, isUrlHttps } from "./proxyAgent";
import { Readable, Transform } from "stream";
import { TransferProgressEvent, WebResourceLike } from "./webResource";
import FormData from "form-data";
import { HttpClient } from "./httpClient";
import { HttpOperationResponse } from "./httpOperationResponse";
import { RestError } from "./restError";
import { logger } from "./log";
import node_fetch from "node-fetch";
interface AgentCache {
httpAgent?: http.Agent;
httpsAgent?: https.Agent;
}
function getCachedAgent(
isHttps: boolean,
agentCache: AgentCache
): http.Agent | https.Agent | undefined {
return isHttps ? agentCache.httpsAgent : agentCache.httpAgent;
}
interface FetchError extends Error {
code?: string;
errno?: string;
type?: string;
}
/**
* String URLs used when calling to `fetch()`.
*/
export type CommonRequestInfo = string;
/**
* An object containing information about the outgoing HTTP request.
*/
export type CommonRequestInit = Omit<RequestInit, "body" | "headers" | "signal"> & {
body?: any;
headers?: any;
signal?: any;
};
/**
* An object containing information about the incoming HTTP response.
*/
export type CommonResponse = Omit<Response, "body" | "trailer" | "formData"> & {
body: any;
trailer: any;
formData: any;
};
export class ReportTransform extends Transform {
private loadedBytes: number = 0;
_transform(chunk: string | Buffer, _encoding: string, callback: (arg: any) => void): void {
this.push(chunk);
this.loadedBytes += chunk.length;
this.progressCallback!({ loadedBytes: this.loadedBytes });
callback(undefined);
}
constructor(private progressCallback: (progress: TransferProgressEvent) => void) {
super();
}
}
function isReadableStream(body: any): body is Readable {
return body && typeof body.pipe === "function";
}
function isStreamComplete(stream: Readable, aborter?: AbortController): Promise<void> {
return new Promise((resolve) => {
stream.once("close", () => {
aborter?.abort();
resolve();
});
stream.once("end", resolve);
stream.once("error", resolve);
});
}
/**
* Transforms a set of headers into the key/value pair defined by {@link HttpHeadersLike}
*/
export function parseHeaders(headers: Headers): HttpHeadersLike {
const httpHeaders = new HttpHeaders();
headers.forEach((value, key) => {
httpHeaders.set(key, value);
});
return httpHeaders;
}
/**
* An HTTP client that uses `node-fetch`.
*/
export class NodeFetchHttpClient implements HttpClient {
/**
* Provides minimum viable error handling and the logic that executes the abstract methods.
* @param httpRequest - Object representing the outgoing HTTP request.
* @returns An object representing the incoming HTTP response.
*/
async sendRequest(httpRequest: WebResourceLike): Promise<HttpOperationResponse> {
if (!httpRequest && typeof httpRequest !== "object") {
throw new Error(
"'httpRequest' (WebResourceLike) cannot be null or undefined and must be of type object."
);
}
const abortController = new AbortController();
let abortListener: ((event: any) => void) | undefined;
if (httpRequest.abortSignal) {
if (httpRequest.abortSignal.aborted) {
throw new AbortError("The operation was aborted.");
}
abortListener = (event: Event) => {
if (event.type === "abort") {
abortController.abort();
}
};
httpRequest.abortSignal.addEventListener("abort", abortListener);
}
if (httpRequest.timeout) {
setTimeout(() => {
abortController.abort();
}, httpRequest.timeout);
}
if (httpRequest.formData) {
const formData: any = httpRequest.formData;
const requestForm = new FormData();
const appendFormValue = (key: string, value: any): void => {
// value function probably returns a stream so we can provide a fresh stream on each retry
if (typeof value === "function") {
value = value();
}
if (
value &&
Object.prototype.hasOwnProperty.call(value, "value") &&
Object.prototype.hasOwnProperty.call(value, "options")
) {
requestForm.append(key, value.value, value.options);
} else {
requestForm.append(key, value);
}
};
for (const formKey of Object.keys(formData)) {
const formValue = formData[formKey];
if (Array.isArray(formValue)) {
for (let j = 0; j < formValue.length; j++) {
appendFormValue(formKey, formValue[j]);
}
} else {
appendFormValue(formKey, formValue);
}
}
httpRequest.body = requestForm;
httpRequest.formData = undefined;
const contentType = httpRequest.headers.get("Content-Type");
if (contentType && contentType.indexOf("multipart/form-data") !== -1) {
if (typeof requestForm.getBoundary === "function") {
httpRequest.headers.set(
"Content-Type",
`multipart/form-data; boundary=${requestForm.getBoundary()}`
);
} else {
// browser will automatically apply a suitable content-type header
httpRequest.headers.remove("Content-Type");
}
}
}
let body = httpRequest.body
? typeof httpRequest.body === "function"
? httpRequest.body()
: httpRequest.body
: undefined;
if (httpRequest.onUploadProgress && httpRequest.body) {
const onUploadProgress = httpRequest.onUploadProgress;
const uploadReportStream = new ReportTransform(onUploadProgress);
if (isReadableStream(body)) {
body.pipe(uploadReportStream);
} else {
uploadReportStream.end(body);
}
body = uploadReportStream;
}
const platformSpecificRequestInit: Partial<RequestInit> = await this.prepareRequest(
httpRequest
);
const requestInit: RequestInit = {
body: body,
headers: httpRequest.headers.rawHeaders(),
method: httpRequest.method,
signal: abortController.signal,
redirect: "manual",
...platformSpecificRequestInit,
};
let operationResponse: HttpOperationResponse | undefined;
try {
const response: CommonResponse = await this.fetch(httpRequest.url, requestInit);
const headers = parseHeaders(response.headers);
const streaming =
httpRequest.streamResponseStatusCodes?.has(response.status) ||
httpRequest.streamResponseBody;
operationResponse = {
headers: headers,
request: httpRequest,
status: response.status,
readableStreamBody: streaming
? (response.body as unknown as NodeJS.ReadableStream)
: undefined,
bodyAsText: !streaming ? await response.text() : undefined,
};
const onDownloadProgress = httpRequest.onDownloadProgress;
if (onDownloadProgress) {
const responseBody: ReadableStream<Uint8Array> | undefined = response.body || undefined;
if (isReadableStream(responseBody)) {
const downloadReportStream = new ReportTransform(onDownloadProgress);
responseBody.pipe(downloadReportStream);
operationResponse.readableStreamBody = downloadReportStream;
} else {
const length = parseInt(headers.get("Content-Length")!) || undefined;
if (length) {
// Calling callback for non-stream response for consistency with browser
onDownloadProgress({ loadedBytes: length });
}
}
}
await this.processRequest(operationResponse);
return operationResponse;
} catch (error: any) {
const fetchError: FetchError = error;
if (fetchError.code === "ENOTFOUND") {
throw new RestError(
fetchError.message,
RestError.REQUEST_SEND_ERROR,
undefined,
httpRequest
);
} else if (fetchError.type === "aborted") {
throw new AbortError("The operation was aborted.");
}
throw fetchError;
} finally {
// clean up event listener
if (httpRequest.abortSignal && abortListener) {
let uploadStreamDone = Promise.resolve();
if (isReadableStream(body)) {
uploadStreamDone = isStreamComplete(body);
}
let downloadStreamDone = Promise.resolve();
if (isReadableStream(operationResponse?.readableStreamBody)) {
downloadStreamDone = isStreamComplete(
operationResponse!.readableStreamBody,
abortController
);
}
Promise.all([uploadStreamDone, downloadStreamDone])
.then(() => {
httpRequest.abortSignal?.removeEventListener("abort", abortListener!);
return;
})
.catch((e) => {
logger.warning("Error when cleaning up abortListener on httpRequest", e);
});
}
}
}
// a mapping of proxy settings string `${host}:${port}:${username}:${password}` to agent
private proxyAgentMap: Map<string, AgentCache> = new Map();
private keepAliveAgents: AgentCache = {};
private readonly cookieJar = new tough.CookieJar(undefined, { looseMode: true });
private getOrCreateAgent(httpRequest: WebResourceLike): http.Agent | https.Agent {
const isHttps = isUrlHttps(httpRequest.url);
// At the moment, proxy settings and keepAlive are mutually
// exclusive because the 'tunnel' library currently lacks the
// ability to create a proxy with keepAlive turned on.
if (httpRequest.proxySettings) {
const { host, port, username, password } = httpRequest.proxySettings;
const key = `${host}:${port}:${username}:${password}`;
const proxyAgents = this.proxyAgentMap.get(key) ?? {};
let agent = getCachedAgent(isHttps, proxyAgents);
if (agent) {
return agent;
}
const tunnel: ProxyAgent = createProxyAgent(
httpRequest.url,
httpRequest.proxySettings,
httpRequest.headers
);
agent = tunnel.agent;
if (tunnel.isHttps) {
proxyAgents.httpsAgent = tunnel.agent as https.Agent;
} else {
proxyAgents.httpAgent = tunnel.agent;
}
this.proxyAgentMap.set(key, proxyAgents);
return agent;
} else if (httpRequest.keepAlive) {
let agent = getCachedAgent(isHttps, this.keepAliveAgents);
if (agent) {
return agent;
}
const agentOptions: http.AgentOptions | https.AgentOptions = {
keepAlive: httpRequest.keepAlive,
};
if (isHttps) {
agent = this.keepAliveAgents.httpsAgent = new https.Agent(agentOptions);
} else {
agent = this.keepAliveAgents.httpAgent = new http.Agent(agentOptions);
}
return agent;
} else {
return isHttps ? https.globalAgent : http.globalAgent;
}
}
/**
* Uses `node-fetch` to perform the request.
*/
// eslint-disable-next-line @azure/azure-sdk/ts-apisurface-standardized-verbs
async fetch(input: CommonRequestInfo, init?: CommonRequestInit): Promise<CommonResponse> {
return node_fetch(input, init) as unknown as Promise<CommonResponse>;
}
/**
* Prepares a request based on the provided web resource.
*/
async prepareRequest(httpRequest: WebResourceLike): Promise<Partial<RequestInit>> {
const requestInit: Partial<RequestInit & { agent?: any; compress?: boolean }> = {};
if (this.cookieJar && !httpRequest.headers.get("Cookie")) {
const cookieString = await new Promise<string>((resolve, reject) => {
this.cookieJar!.getCookieString(httpRequest.url, (err, cookie) => {
if (err) {
reject(err);
} else {
resolve(cookie);
}
});
});
httpRequest.headers.set("Cookie", cookieString);
}
// Set the http(s) agent
requestInit.agent = this.getOrCreateAgent(httpRequest);
requestInit.compress = httpRequest.decompressResponse;
return requestInit;
}
/**
* Process an HTTP response. Handles persisting a cookie for subsequent requests if the response has a "Set-Cookie" header.
*/
async processRequest(operationResponse: HttpOperationResponse): Promise<void> {
if (this.cookieJar) {
const setCookieHeader = operationResponse.headers.get("Set-Cookie");
if (setCookieHeader !== undefined) {
await new Promise<void>((resolve, reject) => {
this.cookieJar!.setCookie(
setCookieHeader,
operationResponse.request.url,
{ ignoreError: true },
(err) => {
if (err) {
reject(err);
} else {
resolve();
}
}
);
});
}
}
}
}