forked from vespaiach/axios-fetch-adapter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
274 lines (250 loc) · 7.9 KB
/
index.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
import {
AxiosAdapter,
AxiosError,
AxiosHeaders,
AxiosRequestConfig,
AxiosResponse,
InternalAxiosRequestConfig,
} from "axios";
import settle from "./settle";
import buildURL from "./helpers/buildURL";
import buildFullPath from "./core/buildFullPath";
const SafeReadableStream =
typeof ReadableStream !== "undefined"
? ReadableStream
: require("web-streams-polyfill").ReadableStream;
const SafeHeaders =
typeof Headers !== "undefined" ? Headers : require("node-fetch").Headers;
const SafeRequest =
typeof Request !== "undefined" ? Request : require("node-fetch").Request;
const safeFetch = typeof fetch !== "undefined" ? fetch : require("node-fetch");
import { isUndefined, isStandardBrowserEnv, isFormData } from "./utils";
/**
* - Create a request object
* - Get response body
* - Check if timeout
*/
const fetchAdapter: AxiosAdapter = async (config) => {
if (config.headers) {
// In axios version >= 1.0.0, a falsy value ("undefined") for Content-Type
// is automatically set for some reason This can cause issues if the server
// expects Content-Type header to be something meaningful. To avoid this,
// we unset Content-Type if it's falsy (e.g. "undefined").
if (!config.headers.getContentType()) {
config.headers.clear("Content-Type");
}
}
const request = createRequest(config);
const promiseChain = [getResponse(request, config)];
if (config.timeout && config.timeout > 0) {
promiseChain.push(
new Promise((res) => {
setTimeout(() => {
const message = config.timeoutErrorMessage
? config.timeoutErrorMessage
: "timeout of " + config.timeout + "ms exceeded";
res(createError(message, config, "ECONNABORTED", request));
}, config.timeout);
})
);
}
const data = await Promise.race(promiseChain);
return new Promise((resolve, reject) => {
if (data instanceof Error) {
reject(data);
} else {
settle(resolve, reject, data);
}
});
};
/**
* Fetch API stage two is to get response body. This funtion tries to retrieve
* response body based on response's type
*/
async function getResponse(
request: Request,
config: InternalAxiosRequestConfig
): Promise<AxiosResponse | Error> {
let stageOne: Response;
try {
stageOne = await safeFetch(request);
} catch (e) {
if (e instanceof Error)
return createError(e.message, config, "ERR_NETWORK", request);
return createError("Network Error", config, "ERR_NETWORK", request);
}
let data: any;
if (stageOne.status >= 200 && stageOne.status !== 204) {
switch (config.responseType) {
case "arraybuffer":
data = await stageOne.arrayBuffer();
break;
case "blob":
data = await stageOne.blob();
break;
case "json":
data = await stageOne.json();
break;
case "stream":
// Check if the stream is a NodeJS stream or a browser stream.
// @ts-ignore - TS doesn't know about `pipe` on streams.
const isNodeJsStream = typeof stageOne.body.pipe === "function";
data = isNodeJsStream
? nodeToWebReadableStream(stageOne.body)
: stageOne.body;
break;
default:
data = await stageOne.text();
break;
}
}
function nodeToWebReadableStream(nodeReadable) {
return new SafeReadableStream({
start(controller) {
nodeReadable.on("data", (chunk) => {
controller.enqueue(chunk);
});
nodeReadable.on("end", () => {
controller.close();
});
nodeReadable.on("error", (err) => {
controller.error(err);
});
},
});
}
const response: AxiosResponse<any> = {
data,
status: stageOne.status,
statusText: stageOne.statusText,
headers: Object.fromEntries(Object.entries(stageOne.headers)), // Make a copy of headers
config: { ...config, headers: new AxiosHeaders(config.headers) },
request,
};
return response;
}
type Writeable<T> = { -readonly [P in keyof T]: T[P] };
/**
* This function will create a Request object based on configuration's axios
*/
function createRequest(config: AxiosRequestConfig): Request {
const headers = config.headers
? new SafeHeaders(
Object.keys(config.headers).reduce((obj, key) => {
if (config.headers === undefined) throw Error();
obj[key] = String(config.headers[key]);
return obj;
}, {})
)
: new SafeHeaders({});
// HTTP basic authentication
if (config.auth) {
const username = config.auth.username || "";
const password = config.auth.password
? decodeURI(encodeURIComponent(config.auth.password))
: "";
headers.set(
"Authorization",
`Basic ${Buffer.from(username + ":" + password).toString("base64")}`
);
}
const method = config.method?.toUpperCase();
const options: Partial<Writeable<Request>> = {
headers: headers,
method,
};
if (method !== "GET" && method !== "HEAD") {
options.body = config.data;
// In these cases the browser will automatically set the correct Content-Type,
// but only if that header hasn't been set yet. So that's why we're deleting it.
if (isFormData(options.body) && isStandardBrowserEnv()) {
headers.delete("Content-Type");
}
}
// This config is similar to XHR’s withCredentials flag, but with three available values instead of two.
// So if withCredentials is not set, default value 'same-origin' will be used
if (!isUndefined(config.withCredentials)) {
options.credentials = config.withCredentials ? "include" : "omit";
}
const fullPath = buildFullPath(config.baseURL, config.url);
const url = buildURL(fullPath, config.params, config.paramsSerializer);
// Expected browser to throw error if there is any wrong configuration value
return new SafeRequest(url, options);
}
/**
* Note:
*
* From version >= 0.27.0, createError function is replaced by AxiosError class.
* So I copy the old createError function here for backward compatible.
*
*
*
* Create an Error with the specified message, config, error code, request and response.
*
* @param {string} message The error message.
* @param {Object} config The config.
* @param {string} [code] The error code (for example, 'ECONNABORTED').
* @param {Object} [request] The request.
* @param {Object} [response] The response.
* @returns {Error} The created error.
*/
function createError(
message: string,
config: InternalAxiosRequestConfig,
code: string,
request: Request,
response?: AxiosResponse
): Error {
if (AxiosError && typeof AxiosError === "function") {
return new AxiosError(message, AxiosError[code], config, request);
}
var error = new Error(message);
return enhanceError(error, config, code, request, response);
}
/**
*
* Note:
*
* This function is for backward compatible.
*
*
* Update an Error with the specified config, error code, and response.
*
* @param {Error} error The error to update.
* @param {Object} config The config.
* @param {string} [code] The error code (for example, 'ECONNABORTED').
* @param {Object} [request] The request.
* @param {Object} [response] The response.
* @returns {Error} The error.
*/
function enhanceError(error, config, code, request, response) {
error.config = config;
if (code) {
error.code = code;
}
error.request = request;
error.response = response;
error.isAxiosError = true;
error.toJSON = function toJSON() {
return {
// Standard
message: this.message,
name: this.name,
// Microsoft
description: this.description,
number: this.number,
// Mozilla
fileName: this.fileName,
lineNumber: this.lineNumber,
columnNumber: this.columnNumber,
stack: this.stack,
// Axios
config: this.config,
code: this.code,
status:
this.response && this.response.status ? this.response.status : null,
};
};
return error;
}
export default fetchAdapter;