-
-
Notifications
You must be signed in to change notification settings - Fork 369
/
Copy pathindex.js
397 lines (321 loc) · 9.86 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
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
/*! MIT License © Sindre Sorhus */
const getGlobal = property => {
/* istanbul ignore next */
if (typeof self !== 'undefined' && self && property in self) {
return self[property];
}
/* istanbul ignore next */
if (typeof window !== 'undefined' && window && property in window) {
return window[property];
}
if (typeof global !== 'undefined' && global && property in global) {
return global[property];
}
/* istanbul ignore next */
if (typeof globalThis !== 'undefined' && globalThis) {
return globalThis[property];
}
};
const document = getGlobal('document');
const Headers = getGlobal('Headers');
const Response = getGlobal('Response');
const ReadableStream = getGlobal('ReadableStream');
const fetch = getGlobal('fetch');
const AbortController = getGlobal('AbortController');
const FormData = getGlobal('FormData');
const isObject = value => value !== null && typeof value === 'object';
const supportsAbortController = typeof AbortController === 'function';
const supportsStreams = typeof ReadableStream === 'function';
const supportsFormData = typeof FormData === 'function';
const deepMerge = (...sources) => {
let returnValue = {};
for (const source of sources) {
if (Array.isArray(source)) {
if (!(Array.isArray(returnValue))) {
returnValue = [];
}
returnValue = [...returnValue, ...source];
} else if (isObject(source)) {
for (let [key, value] of Object.entries(source)) {
if (isObject(value) && Reflect.has(returnValue, key)) {
value = deepMerge(returnValue[key], value);
}
returnValue = {...returnValue, [key]: value};
}
}
}
return returnValue;
};
const requestMethods = [
'get',
'post',
'put',
'patch',
'head',
'delete'
];
const responseTypes = {
json: 'application/json',
text: 'text/*',
formData: 'multipart/form-data',
arrayBuffer: '*/*',
blob: '*/*'
};
const retryMethods = new Set([
'get',
'put',
'head',
'delete',
'options',
'trace'
]);
const retryStatusCodes = new Set([
408,
413,
429,
500,
502,
503,
504
]);
const retryAfterStatusCodes = new Set([
413,
429,
503
]);
class HTTPError extends Error {
constructor(response) {
super(response.statusText);
this.name = 'HTTPError';
this.response = response;
}
}
class TimeoutError extends Error {
constructor() {
super('Request timed out');
this.name = 'TimeoutError';
}
}
const delay = ms => new Promise((resolve, reject) => {
if (ms > 2147483647) { // The maximum value of a 32bit int (see #117)
reject(new RangeError('The `timeout` option cannot be greater than 2147483647'));
} else {
setTimeout(resolve, ms);
}
});
// `Promise.race()` workaround (#91)
const timeout = (promise, ms, abortController) => new Promise((resolve, reject) => {
/* eslint-disable promise/prefer-await-to-then */
promise.then(resolve).catch(reject);
delay(ms).then(() => {
if (supportsAbortController) {
abortController.abort();
}
reject(new TimeoutError());
}).catch(reject);
/* eslint-enable promise/prefer-await-to-then */
});
const normalizeRequestMethod = input => requestMethods.includes(input) ? input.toUpperCase() : input;
class Ky {
constructor(input, {
timeout = 10000,
hooks,
throwHttpErrors = true,
searchParams,
json,
...otherOptions
}) {
this._retryCount = 0;
this._options = {
method: 'get',
credentials: 'same-origin', // TODO: This can be removed when the spec change is implemented in all browsers. Context: https://www.chromestatus.com/feature/4539473312350208
retry: 2,
...otherOptions
};
if (supportsAbortController) {
this.abortController = new AbortController();
if (this._options.signal) {
this._options.signal.addEventListener('abort', () => {
this.abortController.abort();
});
}
this._options.signal = this.abortController.signal;
}
this._options.method = normalizeRequestMethod(this._options.method);
this._options.prefixUrl = String(this._options.prefixUrl || '');
this._input = String(input || '');
if (this._options.prefixUrl && this._input.startsWith('/')) {
throw new Error('`input` must not begin with a slash when using `prefixUrl`');
}
if (this._options.prefixUrl && !this._options.prefixUrl.endsWith('/')) {
this._options.prefixUrl += '/';
}
this._input = this._options.prefixUrl + this._input;
if (searchParams) {
const url = new URL(this._input, document && document.baseURI);
if (typeof searchParams === 'string' || (URLSearchParams && searchParams instanceof URLSearchParams)) {
url.search = searchParams;
} else if (Object.values(searchParams).every(param => typeof param === 'number' || typeof param === 'string')) {
url.search = new URLSearchParams(searchParams).toString();
} else {
throw new Error('The `searchParams` option must be either a string, `URLSearchParams` instance or an object with string and number values');
}
this._input = url.toString();
}
this._timeout = timeout;
this._hooks = deepMerge({
beforeRequest: [],
afterResponse: []
}, hooks);
this._throwHttpErrors = throwHttpErrors;
const headers = new Headers(this._options.headers || {});
if (((supportsFormData && this._options.body instanceof FormData) || this._options.body instanceof URLSearchParams) && headers.has('content-type')) {
throw new Error(`The \`content-type\` header cannot be used with a ${this._options.body.constructor.name} body. It will be set automatically.`);
}
if (json) {
if (this._options.body) {
throw new Error('The `json` option cannot be used with the `body` option');
}
headers.set('content-type', 'application/json');
this._options.body = JSON.stringify(json);
}
this._options.headers = headers;
const fn = async () => {
await delay(1);
let response = await this._fetch();
for (const hook of this._hooks.afterResponse) {
// eslint-disable-next-line no-await-in-loop
const modifiedResponse = await hook(response.clone());
if (modifiedResponse instanceof Response) {
response = modifiedResponse;
}
}
if (!response.ok && this._throwHttpErrors) {
throw new HTTPError(response);
}
// If `onDownloadProgress` is passed, it uses the stream API internally
/* istanbul ignore next */
if (this._options.onDownloadProgress) {
if (typeof this._options.onDownloadProgress !== 'function') {
throw new TypeError('The `onDownloadProgress` option must be a function');
}
if (!supportsStreams) {
throw new Error('Streams are not supported in your environment. `ReadableStream` is missing.');
}
return this._stream(response.clone(), this._options.onDownloadProgress);
}
return response;
};
const isRetriableMethod = retryMethods.has(this._options.method.toLowerCase());
const result = isRetriableMethod ? this._retry(fn) : fn();
for (const [type, mimeType] of Object.entries(responseTypes)) {
result[type] = async () => {
headers.set('accept', mimeType);
return (await result).clone()[type]();
};
}
return result;
}
_calculateRetryDelay(error) {
this._retryCount++;
if (this._retryCount < this._options.retry && !(error instanceof TimeoutError)) {
if (error instanceof HTTPError) {
if (!retryStatusCodes.has(error.response.status)) {
return 0;
}
const retryAfter = error.response.headers.get('Retry-After');
if (retryAfter && retryAfterStatusCodes.has(error.response.status)) {
let after = Number(retryAfter);
if (Number.isNaN(after)) {
after = Date.parse(retryAfter) - Date.now();
} else {
after *= 1000;
}
return after;
}
if (error.response.status === 413) {
return 0;
}
}
const BACKOFF_FACTOR = 0.3;
return BACKOFF_FACTOR * (2 ** (this._retryCount - 1)) * 1000;
}
return 0;
}
async _retry(fn) {
try {
return await fn();
} catch (error) {
const ms = this._calculateRetryDelay(error);
if (ms !== 0 && this._retryCount > 0) {
await delay(ms);
return this._retry(fn);
}
if (this._throwHttpErrors) {
throw error;
}
}
}
async _fetch() {
for (const hook of this._hooks.beforeRequest) {
// eslint-disable-next-line no-await-in-loop
await hook(this._options);
}
if (this._timeout === false) {
return fetch(this._input, this._options);
}
return timeout(fetch(this._input, this._options), this._timeout, this.abortController);
}
/* istanbul ignore next */
_stream(response, onDownloadProgress) {
const totalBytes = Number(response.headers.get('content-length')) || 0;
let transferredBytes = 0;
return new Response(
new ReadableStream({
start(controller) {
const reader = response.body.getReader();
if (onDownloadProgress) {
onDownloadProgress({percent: 0, transferredBytes: 0, totalBytes}, new Uint8Array());
}
async function read() {
const {done, value} = await reader.read();
if (done) {
controller.close();
return;
}
if (onDownloadProgress) {
transferredBytes += value.byteLength;
const percent = totalBytes === 0 ? 0 : transferredBytes / totalBytes;
onDownloadProgress({percent, transferredBytes, totalBytes}, value);
}
controller.enqueue(value);
read();
}
read();
}
})
);
}
}
const validateAndMerge = (...sources) => {
for (const source of sources) {
if ((!isObject(source) || Array.isArray(source)) && typeof source !== 'undefined') {
throw new TypeError('The `options` argument must be an object');
}
}
return deepMerge({}, ...sources);
};
const createInstance = defaults => {
const ky = (input, options) => new Ky(input, validateAndMerge(defaults, options));
for (const method of requestMethods) {
ky[method] = (input, options) => new Ky(input, validateAndMerge(defaults, options, {method}));
}
ky.create = newDefaults => createInstance(validateAndMerge(newDefaults));
ky.extend = newDefaults => createInstance(validateAndMerge(defaults, newDefaults));
return ky;
};
export default createInstance();
export {
HTTPError,
TimeoutError
};