-
-
Notifications
You must be signed in to change notification settings - Fork 132
/
processRequest.mjs
428 lines (372 loc) · 14 KB
/
processRequest.mjs
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
// @ts-check
/**
* @import { IncomingMessage, ServerResponse } from "node:http"
* @import { Readable } from "node:stream"
* @import { ReadStreamOptions } from "fs-capacitor"
* @import { ObjectPathBound } from "object-path"
* @import GraphQLUpload from "./GraphQLUpload.mjs"
*/
import busboy from "busboy";
import { WriteStream } from "fs-capacitor";
import createError from "http-errors";
import objectPath from "object-path";
import GRAPHQL_MULTIPART_REQUEST_SPEC_URL from "./GRAPHQL_MULTIPART_REQUEST_SPEC_URL.mjs";
import ignoreStream from "./ignoreStream.mjs";
import Upload from "./Upload.mjs";
/**
* Processes an incoming
* [GraphQL multipart request](https://github.com/jaydenseric/graphql-multipart-request-spec).
* It parses the `operations` and `map` fields to create an {@linkcode Upload}
* instance for each expected file upload, placing references wherever the file
* is expected in the GraphQL operation for the {@linkcode GraphQLUpload} scalar
* to derive it’s value. Errors are created with
* [`http-errors`](https://npm.im/http-errors) to assist in sending responses
* with appropriate HTTP status codes. Used to create custom middleware.
* @type {ProcessRequestFunction}
*/
export default function processRequest(
request,
response,
{
maxFieldSize = 1000000, // 1 MB
maxFileSize = Infinity,
maxFiles = Infinity,
} = {},
) {
return new Promise((resolve, reject) => {
/** @type {boolean} */
let released;
/** @type {Error} */
let exitError;
/**
* @type {{ [key: string]: unknown } | Array<
* { [key: string]: unknown }
* >}
*/
let operations;
/**
* @type {ObjectPathBound<
* { [key: string]: unknown } | Array<{ [key: string]: unknown }>
* >}
*/
let operationsPath;
/** @type {Map<string, Upload>} */
let map;
const parser = busboy({
headers: request.headers,
defParamCharset: "utf8",
limits: {
fieldSize: maxFieldSize,
fields: 2, // Only operations and map.
fileSize: maxFileSize,
files: maxFiles,
},
});
/**
* Exits request processing with an error. Successive calls have no effect.
* @param {Error} error Error instance.
* @param {boolean} [isParserError] Is the error from the parser.
*/
function exit(error, isParserError = false) {
if (exitError) return;
exitError = error;
if (map)
for (const upload of map.values())
if (!upload.file) upload.reject(exitError);
// If the error came from the parser, don’t cause it to be emitted again.
isParserError ? parser.destroy() : parser.destroy(exitError);
request.unpipe(parser);
// With a sufficiently large request body, subsequent events in the same
// event frame cause the stream to pause after the parser is destroyed. To
// ensure that the request resumes, the call to .resume() is scheduled for
// later in the event loop.
setImmediate(() => {
request.resume();
});
reject(exitError);
}
parser.on("field", (fieldName, value, { valueTruncated }) => {
if (valueTruncated)
return exit(
createError(
413,
`The ‘${fieldName}’ multipart field value exceeds the ${maxFieldSize} byte size limit.`,
),
);
switch (fieldName) {
case "operations":
try {
operations = JSON.parse(value);
} catch {
return exit(
createError(
400,
`Invalid JSON in the ‘operations’ multipart field (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
}
// `operations` should be an object or an array. Note that arrays
// and `null` have an `object` type.
if (typeof operations !== "object" || !operations)
return exit(
createError(
400,
`Invalid type for the ‘operations’ multipart field (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
operationsPath = objectPath(operations);
break;
case "map": {
if (!operations)
return exit(
createError(
400,
`Misordered multipart fields; ‘map’ should follow ‘operations’ (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
let parsedMap;
try {
parsedMap = JSON.parse(value);
} catch {
return exit(
createError(
400,
`Invalid JSON in the ‘map’ multipart field (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
}
// `map` should be an object.
if (
typeof parsedMap !== "object" ||
!parsedMap ||
Array.isArray(parsedMap)
)
return exit(
createError(
400,
`Invalid type for the ‘map’ multipart field (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
const mapEntries = Object.entries(parsedMap);
// Check max files is not exceeded, even though the number of files
// to parse might not match the map provided by the client.
if (mapEntries.length > maxFiles)
return exit(
createError(413, `${maxFiles} max file uploads exceeded.`),
);
map = new Map();
for (const [fieldName, paths] of mapEntries) {
if (!Array.isArray(paths))
return exit(
createError(
400,
`Invalid type for the ‘map’ multipart field entry key ‘${fieldName}’ array (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
map.set(fieldName, new Upload());
for (const [index, path] of paths.entries()) {
if (typeof path !== "string")
return exit(
createError(
400,
`Invalid type for the ‘map’ multipart field entry key ‘${fieldName}’ array index ‘${index}’ value (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
try {
operationsPath.set(path, map.get(fieldName));
} catch {
return exit(
createError(
400,
`Invalid object path for the ‘map’ multipart field entry key ‘${fieldName}’ array index ‘${index}’ value ‘${path}’ (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
}
}
}
resolve(operations);
}
}
});
parser.on(
"file",
(fieldName, stream, { filename, encoding, mimeType: mimetype }) => {
if (!map) {
ignoreStream(stream);
return exit(
createError(
400,
`Misordered multipart fields; files should follow ‘map’ (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
}
const upload = map.get(fieldName);
if (!upload) {
// The file is extraneous. As the rest can still be processed, just
// ignore it and don’t exit with an error.
ignoreStream(stream);
return;
}
/** @type {Error} */
let fileError;
const capacitor = new WriteStream();
capacitor.on("error", () => {
stream.unpipe();
stream.resume();
});
stream.on("limit", () => {
fileError = createError(
413,
`File truncated as it exceeds the ${maxFileSize} byte size limit.`,
);
stream.unpipe();
capacitor.destroy(fileError);
});
stream.on("error", (error) => {
fileError = error;
stream.unpipe();
capacitor.destroy(fileError);
});
/** @type {FileUpload} */
const file = {
filename,
mimetype,
encoding,
createReadStream(options) {
const error = fileError || (released ? exitError : null);
if (error) throw error;
return capacitor.createReadStream(options);
},
capacitor,
};
Object.defineProperty(file, "capacitor", {
enumerable: false,
configurable: false,
writable: false,
});
stream.pipe(capacitor);
upload.resolve(file);
},
);
parser.once("filesLimit", () =>
exit(createError(413, `${maxFiles} max file uploads exceeded.`)),
);
parser.once("finish", () => {
request.unpipe(parser);
request.resume();
if (!operations)
return exit(
createError(
400,
`Missing multipart field ‘operations’ (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
if (!map)
return exit(
createError(
400,
`Missing multipart field ‘map’ (${GRAPHQL_MULTIPART_REQUEST_SPEC_URL}).`,
),
);
for (const upload of map.values())
if (!upload.file)
upload.reject(createError(400, "File missing in the request."));
});
// Use the `on` method instead of `once` as in edge cases the same parser
// could have multiple `error` events and all must be handled to prevent the
// Node.js process exiting with an error. One edge case is if there is a
// malformed part header as well as an unexpected end of the form.
parser.on("error", (/** @type {Error} */ error) => {
exit(error, true);
});
response.once("close", () => {
released = true;
if (map)
for (const upload of map.values())
if (upload.file)
// Release resources and clean up temporary files.
upload.file.capacitor.release();
});
request.once("close", () => {
if (!request.readableEnded)
exit(
createError(
499,
"Request disconnected during file upload stream parsing.",
),
);
});
request.pipe(parser);
});
}
/**
* File upload details that are only available after the file’s field in the
* [GraphQL multipart request](https://github.com/jaydenseric/graphql-multipart-request-spec)
* has begun streaming in.
* @typedef {object} FileUpload
* @property {string} filename File name.
* @property {string} mimetype File MIME type. Provided by the client and can’t
* be trusted.
* @property {string} encoding File stream transfer encoding.
* @property {WriteStream} capacitor A private implementation detail that
* shouldn’t be used outside
* [`graphql-upload`](https://npm.im/graphql-upload).
* @property {FileUploadCreateReadStream} createReadStream Creates a
* [Node.js readable stream](https://nodejs.org/api/stream.html#readable-streams)
* of the file’s contents, for processing and storage.
*/
/**
* Creates a
* [Node.js readable stream](https://nodejs.org/api/stream.html#readable-streams)
* of an {@link FileUpload uploading file’s} contents, for processing and
* storage. Multiple calls create independent streams. Throws if called after
* all resolvers have resolved, or after an error has interrupted the request.
* @callback FileUploadCreateReadStream
* @param {FileUploadCreateReadStreamOptions} [options] Options.
* @returns {Readable}
* [Node.js readable stream](https://nodejs.org/api/stream.html#readable-streams)
* of the file’s contents.
* @see [Node.js `Readable` stream constructor docs](https://nodejs.org/api/stream.html#new-streamreadableoptions).
* @see [Node.js stream backpressure guide](https://nodejs.org/en/docs/guides/backpressuring-in-streams).
*/
/**
* {@linkcode FileUploadCreateReadStream} options.
* @typedef {object} FileUploadCreateReadStreamOptions
* @property {ReadStreamOptions["encoding"]} [encoding] Specify an encoding for
* the [`data`](https://nodejs.org/api/stream.html#event-data) chunks to be
* strings (without splitting multi-byte characters across chunks) instead of
* Node.js [`Buffer`](https://nodejs.org/api/buffer.html#buffer) instances.
* Supported values depend on the
* [`Buffer` implementation](https://github.com/nodejs/node/blob/v18.1.0/lib/buffer.js#L590-L680)
* and include `utf8`, `ucs2`, `utf16le`, `latin1`, `ascii`, `base64`,
* `base64url`, or `hex`. Defaults to `utf8`.
* @property {ReadStreamOptions["highWaterMark"]} [highWaterMark] Maximum number
* of bytes to store in the internal buffer before ceasing to read from the
* underlying resource. Defaults to the Node.js default high water mark for
* non object mode streams.
*/
/**
* Processes an incoming
* [GraphQL multipart request](https://github.com/jaydenseric/graphql-multipart-request-spec).
* @callback ProcessRequestFunction
* @param {IncomingMessage} request
* [Node.js HTTP server request instance](https://nodejs.org/api/http.html#http_class_http_incomingmessage).
* @param {ServerResponse} response
* [Node.js HTTP server response instance](https://nodejs.org/api/http.html#http_class_http_serverresponse).
* @param {ProcessRequestOptions} [options] Options.
* @returns {Promise<
* { [key: string]: unknown } | Array<{ [key: string]: unknown }>
* >} GraphQL operation or batch of operations for a GraphQL server to consume
* (usually as the request body). A GraphQL operation typically has the
* properties `query` and `variables`.
*/
/**
* {@linkcode ProcessRequestFunction} options.
* @typedef {object} ProcessRequestOptions
* @property {number} [maxFieldSize] Maximum allowed non file multipart form
* field size in bytes; enough for your queries. Defaults to `1000000` (1 MB).
* @property {number} [maxFileSize] Maximum allowed file size in bytes. Defaults
* to `Infinity`.
* @property {number} [maxFiles] Maximum allowed number of files. Defaults to
* `Infinity`.
*/