-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
graphqlUploadKoa.mjs
75 lines (70 loc) · 2.4 KB
/
graphqlUploadKoa.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
// @ts-check
/**
* @import { Next, ParameterizedContext } from "koa"
* @import {
* ProcessRequestFunction,
* ProcessRequestOptions,
* } from "./processRequest.mjs"
*/
import defaultProcessRequest from "./processRequest.mjs";
/**
* Creates [Koa](https://koajs.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 {ProcessRequestOptions & {
* processRequest?: ProcessRequestFunction,
* }} options Options.
* @returns Koa middleware.
* @example
* Basic [`graphql-api-koa`](https://npm.im/graphql-api-koa) setup:
*
* ```js
* import errorHandler from "graphql-api-koa/errorHandler.mjs";
* import execute from "graphql-api-koa/execute.mjs";
* import graphqlUploadKoa from "graphql-upload/graphqlUploadKoa.mjs";
* import Koa from "koa";
* import bodyParser from "koa-bodyparser";
*
* import schema from "./schema.mjs";
*
* new Koa()
* .use(errorHandler())
* .use(bodyParser())
* .use(graphqlUploadKoa({ maxFileSize: 10000000, maxFiles: 10 }))
* .use(execute({ schema }))
* .listen(3000);
* ```
*/
export default function graphqlUploadKoa({
processRequest = defaultProcessRequest,
...processRequestOptions
} = {}) {
/**
* [Koa](https://koajs.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 {ParameterizedContext} ctx Koa context.
* @param {Next} next Invokes the next middleware.
*/
async function graphqlUploadKoaMiddleware(ctx, next) {
if (ctx.request.is("multipart/form-data")) {
const requestEnd = new Promise((resolve) => ctx.req.on("end", resolve));
try {
// @ts-ignore This is conventional.
ctx.request.body = await processRequest(
ctx.req,
ctx.res,
processRequestOptions,
);
await next();
} finally {
await requestEnd;
}
} else await next();
}
return graphqlUploadKoaMiddleware;
}