-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphqlUploadExpress.mjs
77 lines (71 loc) · 2.62 KB
/
graphqlUploadExpress.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
// @ts-check
import defaultProcessRequest from "./processRequest.mjs";
/**
* Creates [Express](https://expressjs.com) middleware that processes incoming
* [GraphQL multipart requests](https://github.com/jaydenseric/graphql-multipart-request-spec)
* using {@linkcode processRequest}, ignoring non multipart requests. It sets
* the request `body` to be similar to a conventional GraphQL POST request for
* following GraphQL middleware to consume.
* @param {import("./processRequest.mjs").ProcessRequestOptions & {
* processRequest?: import("./processRequest.mjs").ProcessRequestFunction
* }} options Options.
* @returns Express middleware.
* @example
* Basic [`express-graphql`](https://npm.im/express-graphql) setup:
*
* ```js
* import express from "express";
* import expressGraphQL from "express-graphql";
* import graphqlUploadExpress from "graphql-upload/graphqlUploadExpress.mjs";
*
* import schema from "./schema.mjs";
*
* express()
* .use(
* "/graphql",
* graphqlUploadExpress({ maxFileSize: 10000000, maxFiles: 10 }),
* expressGraphQL.graphqlHTTP({ schema })
* )
* .listen(3000);
* ```
*/
export default function graphqlUploadExpress({
processRequest = defaultProcessRequest,
...processRequestOptions
} = {}) {
/**
* [Express](https://expressjs.com) middleware that processes incoming
* [GraphQL multipart requests](https://github.com/jaydenseric/graphql-multipart-request-spec)
* using {@linkcode processRequest}, ignoring non multipart requests. It sets
* the request `body` to be similar to a conventional GraphQL POST request for
* following GraphQL middleware to consume.
* @param {import("express").Request} request
* @param {import("express").Response} response
* @param {import("express").NextFunction} next
*/
function graphqlUploadExpressMiddleware(request, response, next) {
if (!request.is("multipart/form-data")) return next();
const requestEnd = new Promise((resolve) => request.on("end", resolve));
const { send } = response;
// @ts-ignore Todo: Find a less hacky way to prevent sending a response
// before the request has ended.
response.send =
/** @param {Array<unknown>} args */
(...args) => {
requestEnd.then(() => {
response.send = send;
response.send(...args);
});
};
processRequest(request, response, processRequestOptions)
.then((body) => {
request.body = body;
next();
})
.catch((error) => {
if (error.status && error.expose) response.status(error.status);
next(error);
});
}
return graphqlUploadExpressMiddleware;
}