forked from jaydenseric/graphql-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphqlUploadKoa.js
69 lines (62 loc) · 2.25 KB
/
graphqlUploadKoa.js
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
// @ts-check
"use strict";
const defaultProcessRequest = require("./processRequest.js");
/**
* 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 {import("./processRequest.js").ProcessRequestOptions & {
* processRequest?: import("./processRequest.js").ProcessRequestFunction
* }} options Options.
* @returns Koa middleware.
* @example
* Basic [`graphql-api-koa`](https://npm.im/graphql-api-koa) setup:
*
* ```js
* const Koa = require("koa");
* const bodyParser = require("koa-bodyparser");
* const { errorHandler, execute } = require("graphql-api-koa");
* const graphqlUploadKoa = require("graphql-upload/graphqlUploadKoa.js");
* const schema = require("./schema.js");
*
* new Koa()
* .use(errorHandler())
* .use(bodyParser())
* .use(graphqlUploadKoa({ maxFileSize: 10000000, maxFiles: 10 }))
* .use(execute({ schema }))
* .listen(3000);
* ```
*/
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 {import("koa").ParameterizedContext} ctx
* @param {() => Promise<unknown>} next
*/
async function graphqlUploadKoaMiddleware(ctx, next) {
if (!ctx.request.is("multipart/form-data")) return next();
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;
}
}
return graphqlUploadKoaMiddleware;
}
module.exports = graphqlUploadKoa;