deno.land / x / ky@v0.31.3 / source / core / Ky.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
import {HTTPError} from '../errors/HTTPError.js';import {TimeoutError} from '../errors/TimeoutError.js';import type {Hooks} from '../types/hooks.js';import type {Input, InternalOptions, NormalizedOptions, Options, SearchParamsInit} from '../types/options.js';import {ResponsePromise} from '../types/ResponsePromise.js';import {deepMerge, mergeHeaders} from '../utils/merge.js';import {normalizeRequestMethod, normalizeRetryOptions} from '../utils/normalize.js';import {delay, timeout, TimeoutOptions} from '../utils/time.js';import {ObjectEntries} from '../utils/types.js';import {maxSafeTimeout, responseTypes, stop, supportsAbortController, supportsFormData, supportsStreams} from './constants.js';
export class Ky { // eslint-disable-next-line @typescript-eslint/promise-function-async static create(input: Input, options: Options): ResponsePromise { const ky = new Ky(input, options);
const fn = async (): Promise<Response> => { if (ky._options.timeout > maxSafeTimeout) { throw new RangeError(`The \`timeout\` option cannot be greater than ${maxSafeTimeout}`); }
// Delay the fetch so that body method shortcuts can set the Accept header await Promise.resolve(); let response = await ky._fetch();
for (const hook of ky._options.hooks.afterResponse) { // eslint-disable-next-line no-await-in-loop const modifiedResponse = await hook( ky.request, ky._options as NormalizedOptions, ky._decorateResponse(response.clone()), );
if (modifiedResponse instanceof globalThis.Response) { response = modifiedResponse; } }
ky._decorateResponse(response);
if (!response.ok && ky._options.throwHttpErrors) { let error = new HTTPError(response, ky.request, (ky._options as unknown) as NormalizedOptions);
for (const hook of ky._options.hooks.beforeError) { // eslint-disable-next-line no-await-in-loop error = await hook(error); }
throw error; }
// If `onDownloadProgress` is passed, it uses the stream API internally /* istanbul ignore next */ if (ky._options.onDownloadProgress) { if (typeof ky._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 ky._stream(response.clone(), ky._options.onDownloadProgress); }
return response; };
const isRetriableMethod = ky._options.retry.methods.includes(ky.request.method.toLowerCase()); const result = (isRetriableMethod ? ky._retry(fn) : fn()) as ResponsePromise;
for (const [type, mimeType] of Object.entries(responseTypes) as ObjectEntries<typeof responseTypes>) { result[type] = async () => { // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing ky.request.headers.set('accept', ky.request.headers.get('accept') || mimeType);
const awaitedResult = await result; const response = awaitedResult.clone();
if (type === 'json') { if (response.status === 204) { return ''; }
if (options.parseJson) { return options.parseJson(await response.text()); } }
return response[type](); }; }
return result; }
public request: Request; protected abortController?: AbortController; protected _retryCount = 0; protected _input: Input; protected _options: InternalOptions;
// eslint-disable-next-line complexity constructor(input: Input, options: Options = {}) { this._input = input; this._options = { // TODO: credentials can be removed when the spec change is implemented in all browsers. Context: https://www.chromestatus.com/feature/4539473312350208 credentials: (this._input as Request).credentials || 'same-origin', ...options, headers: mergeHeaders((this._input as Request).headers, options.headers), hooks: deepMerge<Required<Hooks>>( { beforeRequest: [], beforeRetry: [], beforeError: [], afterResponse: [], }, options.hooks, ), method: normalizeRequestMethod(options.method ?? (this._input as Request).method), // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing prefixUrl: String(options.prefixUrl || ''), retry: normalizeRetryOptions(options.retry), throwHttpErrors: options.throwHttpErrors !== false, timeout: typeof options.timeout === 'undefined' ? 10_000 : options.timeout, fetch: options.fetch ?? globalThis.fetch.bind(globalThis), };
if (typeof this._input !== 'string' && !(this._input instanceof URL || this._input instanceof globalThis.Request)) { throw new TypeError('`input` must be a string, URL, or Request'); }
if (this._options.prefixUrl && typeof this._input === 'string') { if (this._input.startsWith('/')) { throw new Error('`input` must not begin with a slash when using `prefixUrl`'); }
if (!this._options.prefixUrl.endsWith('/')) { this._options.prefixUrl += '/'; }
this._input = this._options.prefixUrl + this._input; }
if (supportsAbortController) { this.abortController = new globalThis.AbortController(); if (this._options.signal) { this._options.signal.addEventListener('abort', () => { this.abortController!.abort(); }); }
this._options.signal = this.abortController.signal; }
this.request = new globalThis.Request(this._input as RequestInfo, this._options as RequestInit);
if (supportsStreams) { // @ts-expect-error - Types are outdated. this.request.duplex = 'half'; }
if (this._options.searchParams) { // eslint-disable-next-line unicorn/prevent-abbreviations const textSearchParams = typeof this._options.searchParams === 'string' ? this._options.searchParams.replace(/^\?/, '') : new URLSearchParams(this._options.searchParams as unknown as SearchParamsInit).toString(); // eslint-disable-next-line unicorn/prevent-abbreviations const searchParams = '?' + textSearchParams; const url = this.request.url.replace(/(?:\?.*?)?(?=#|$)/, searchParams);
// To provide correct form boundary, Content-Type header should be deleted each time when new Request instantiated from another one if ( ((supportsFormData && this._options.body instanceof globalThis.FormData) || this._options.body instanceof URLSearchParams) && !(this._options.headers && (this._options.headers as Record<string, string>)['content-type']) ) { this.request.headers.delete('content-type'); }
this.request = new globalThis.Request(new globalThis.Request(url, this.request), this._options as RequestInit); }
if (this._options.json !== undefined) { this._options.body = JSON.stringify(this._options.json); this.request.headers.set('content-type', this._options.headers.get('content-type') ?? 'application/json'); this.request = new globalThis.Request(this.request, {body: this._options.body}); } }
protected _calculateRetryDelay(error: unknown) { this._retryCount++;
if (this._retryCount < this._options.retry.limit && !(error instanceof TimeoutError)) { if (error instanceof HTTPError) { if (!this._options.retry.statusCodes.includes(error.response.status)) { return 0; }
const retryAfter = error.response.headers.get('Retry-After'); if (retryAfter && this._options.retry.afterStatusCodes.includes(error.response.status)) { let after = Number(retryAfter); if (Number.isNaN(after)) { after = Date.parse(retryAfter) - Date.now(); } else { after *= 1000; }
if (typeof this._options.retry.maxRetryAfter !== 'undefined' && after > this._options.retry.maxRetryAfter) { return 0; }
return after; }
if (error.response.status === 413) { return 0; } }
const BACKOFF_FACTOR = 0.3; return BACKOFF_FACTOR * (2 ** (this._retryCount - 1)) * 1000; }
return 0; }
protected _decorateResponse(response: Response): Response { if (this._options.parseJson) { response.json = async () => this._options.parseJson!(await response.text()); }
return response; }
protected async _retry<T extends (...args: any) => Promise<any>>(fn: T): Promise<ReturnType<T> | void> { try { return await fn(); // eslint-disable-next-line @typescript-eslint/no-implicit-any-catch } catch (error) { const ms = Math.min(this._calculateRetryDelay(error), maxSafeTimeout); if (ms !== 0 && this._retryCount > 0) { await delay(ms);
for (const hook of this._options.hooks.beforeRetry) { // eslint-disable-next-line no-await-in-loop const hookResult = await hook({ request: this.request, options: (this._options as unknown) as NormalizedOptions, error: error as Error, retryCount: this._retryCount, });
// If `stop` is returned from the hook, the retry process is stopped if (hookResult === stop) { return; } }
return this._retry(fn); }
throw error; } }
protected async _fetch(): Promise<Response> { for (const hook of this._options.hooks.beforeRequest) { // eslint-disable-next-line no-await-in-loop const result = await hook(this.request, (this._options as unknown) as NormalizedOptions);
if (result instanceof Request) { this.request = result; break; }
if (result instanceof Response) { return result; } }
if (this._options.timeout === false) { return this._options.fetch(this.request.clone()); }
return timeout(this.request.clone(), this.abortController, this._options as TimeoutOptions); }
/* istanbul ignore next */ protected _stream(response: Response, onDownloadProgress: Options['onDownloadProgress']) { const totalBytes = Number(response.headers.get('content-length')) || 0; let transferredBytes = 0;
if (response.status === 204) { if (onDownloadProgress) { onDownloadProgress({percent: 1, totalBytes, transferredBytes}, new Uint8Array()); }
return new globalThis.Response( null, { status: response.status, statusText: response.statusText, headers: response.headers, }, ); }
return new globalThis.Response( new globalThis.ReadableStream({ async 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); await read(); }
await read(); }, }), { status: response.status, statusText: response.statusText, headers: response.headers, }, ); }}
ky

Version Info

Tagged at
a year ago