-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathHttp.ts
208 lines (176 loc) · 6.26 KB
/
Http.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
import { entriesToObject } from './utils/entriesToObject';
import { HttpError } from './HttpError';
/**
* `Promise<`[`Response`](https://fetch.spec.whatwg.org/#response)`>` with added methods from [`Body`](https://fetch.spec.whatwg.org/#body-mixin).
*/
// https://github.com/microsoft/TypeScript/blob/v4.7.4/lib/lib.dom.d.ts#L2503-L2507
export type ResponsePromiseWithBodyMethods = Promise<Response> &
Pick<Body, 'arrayBuffer' | 'blob' | 'formData' | /*'json' |*/ 'text'> & {
// FIXME https://github.com/microsoft/TypeScript/issues/26188
json(): Promise<unknown>;
};
const arrayBufferMimeType = '*/*';
const blobMimeType = '*/*';
const formDataMimeType = 'multipart/form-data';
export const jsonMimeType = 'application/json';
const textMimeType = 'text/*';
export function isJSONResponse(response: Response) {
const contentType = response.headers.get('content-type') ?? '';
return contentType.includes(jsonMimeType);
}
function extendResponsePromiseWithBodyMethods(
responsePromise: ResponsePromiseWithBodyMethods,
headers: Headers
) {
function setAcceptHeader(mimeType: string) {
headers.set('accept', headers.get('accept') ?? mimeType);
}
/* eslint-disable no-param-reassign */
responsePromise.arrayBuffer = async () => {
setAcceptHeader(arrayBufferMimeType);
const response = await responsePromise;
return response.arrayBuffer();
};
responsePromise.blob = async () => {
setAcceptHeader(blobMimeType);
const response = await responsePromise;
return response.blob();
};
responsePromise.formData = async () => {
setAcceptHeader(formDataMimeType);
const response = await responsePromise;
return response.formData();
};
responsePromise.json = async () => {
setAcceptHeader(jsonMimeType);
const response = await responsePromise;
if (isJSONResponse(response)) {
return response.json();
}
return response.text();
};
responsePromise.text = async () => {
setAcceptHeader(textMimeType);
const response = await responsePromise;
return response.text();
};
/* eslint-enable no-param-reassign */
}
export type Init = Omit<RequestInit, 'method' | 'body'>;
export type Config = { init: Init };
export const defaults: Config = {
init: {}
};
type Method = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
// Can throw:
// - HttpError if !response.ok
// - TypeError if request blocked (DevTools or CORS) or network timeout (net::ERR_TIMED_OUT):
// - Firefox 68: "TypeError: "NetworkError when attempting to fetch resource.""
// - Chrome 76: "TypeError: Failed to fetch"
// - DOMException if request aborted
function request<T extends BodyInit>(
input: RequestInfo | URL,
headers: Headers,
init: Omit<Init, 'headers'> | undefined,
method: Method,
body?: T
) {
async function _fetch() {
// Have to wait for headers to be modified inside extendResponsePromiseWithBodyMethods
await Promise.resolve();
const req = new Request(input, {
...defaults.init,
...init,
headers,
method,
body
});
const res = await fetch(req);
if (!res.ok) throw new HttpError(req, res);
return res;
}
const responsePromise = _fetch() as ResponsePromiseWithBodyMethods;
extendResponsePromiseWithBodyMethods(responsePromise, headers);
return responsePromise;
}
function getHeaders(init?: Init) {
// We don't know if defaults.init.headers and init.headers are JSON or Headers instances
// thus we have to make the conversion
const defaultInitHeaders = entriesToObject(new Headers(defaults.init.headers));
const initHeaders = entriesToObject(new Headers(init?.headers));
return new Headers({ ...defaultInitHeaders, ...initHeaders });
}
function getJSONHeaders(init?: Init) {
const headers = getHeaders(init);
headers.set('content-type', jsonMimeType);
return headers;
}
/**
* Performs a HTTP `GET` request.
*/
export function get(input: RequestInfo | URL, init?: Init) {
return request(input, getHeaders(init), init, 'GET');
}
/**
* Performs a HTTP `POST` request.
*
* @see {@link postJSON()}
*/
export function post<T extends BodyInit>(input: RequestInfo | URL, body?: T, init?: Init) {
return request(input, getHeaders(init), init, 'POST', body);
}
/**
* Performs a HTTP `POST` request with a JSON body.
*
* @see {@link post()}
*/
// Should be named postJson or postJSON?
// - JS uses JSON.parse(), JSON.stringify(), toJSON()
// - Deno uses [JSON](https://github.com/denoland/deno/blob/v1.5.3/cli/dts/lib.webworker.d.ts#L387) and [Json](https://github.com/denoland/deno/blob/v1.5.3/cli/dts/lib.webworker.d.ts#L260)
//
// Record<string, unknown> is compatible with "type" not with "interface": "Index signature is missing in type 'MyInterface'"
// Best alternative is object, why? https://stackoverflow.com/a/58143592
export function postJSON<T extends object>(input: RequestInfo | URL, body: T, init?: Init) {
return request(input, getJSONHeaders(init), init, 'POST', JSON.stringify(body));
}
// No need to have postFormData() and friends: the browser already sets the proper request content type
// Something like "content-type: multipart/form-data; boundary=----WebKitFormBoundaryl8VQ0sfwUpJEWna3"
/**
* Performs a HTTP `PUT` request.
*
* @see {@link putJSON()}
*/
export function put<T extends BodyInit>(input: RequestInfo | URL, body?: T, init?: Init) {
return request(input, getHeaders(init), init, 'PUT', body);
}
/**
* Performs a HTTP `PUT` request with a JSON body.
*
* @see {@link put()}
*/
export function putJSON<T extends object>(input: RequestInfo | URL, body: T, init?: Init) {
return request(input, getJSONHeaders(init), init, 'PUT', JSON.stringify(body));
}
/**
* Performs a HTTP `PATCH` request.
*
* @see {@link patchJSON()}
*/
export function patch<T extends BodyInit>(input: RequestInfo | URL, body?: T, init?: Init) {
return request(input, getHeaders(init), init, 'PATCH', body);
}
/**
* Performs a HTTP `PATCH` request with a JSON body.
*
* @see {@link patch()}
*/
export function patchJSON<T extends object>(input: RequestInfo | URL, body: T, init?: Init) {
return request(input, getJSONHeaders(init), init, 'PATCH', JSON.stringify(body));
}
/**
* Performs a HTTP `DELETE` request.
*/
// Cannot be named delete :-/
export function del(input: RequestInfo | URL, init?: Init) {
return request(input, getHeaders(init), init, 'DELETE');
}