-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.mjs
78 lines (64 loc) · 2.11 KB
/
index.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
import gql from 'graphql';
import querystring from 'querystring';
const { graphql } = gql;
const readBody = res => new Promise(resolve => {
let buffer;
res.onData((ab, isLast) => {
const chunk = Buffer.from(ab);
buffer = buffer ? Buffer.concat([buffer, chunk]) : chunk;
if (!isLast) return;
resolve(buffer.toString());
});
});
export default (app, middleware, cors = false) => (schema, root, context, fieldResolver, typeResolver) => {
app.any('/graphql', async (res, req) => {
res.onAborted(() => {
throw new Error('Aborted');
});
const method = req.getMethod();
if (!/get|post/.test(method)) {
res.writeStatus('405');
res.writeHeader('Allow', 'GET, POST');
return res.end();
}
if (cors) res.writeHeader('Access-Control-Allow-Origin', '*');
res.writeHeader('content-type', 'application/json');
let query, variables, operationName;
if (method === 'get') {
const queryStr = req.getQuery().substr(1);
({ query, variables, operationName } = querystring.parse(queryStr));
}
if (typeof middleware === 'function') {
context = await middleware(res, req);
}
if (method === 'post' && !query) {
const contentType = req.getHeader('content-type');
const body = await readBody(res);
if (contentType === 'application/json') {
try {
({ query, variables, operationName } = JSON.parse(body));
} catch (e) {
console.error('JSON.parse', e);
res.writeStatus('400');
return res.end(JSON.stringify({ name: e.name, message: e.message }));
}
}
if (contentType === 'application/graphql') {
query = body;
}
if (contentType === 'application/x-www-form-urlencoded') {
({ query, variables, operationName } = querystring.parse(body));
}
}
const response = await graphql(schema, query, root, context, variables, operationName, fieldResolver, typeResolver);
res.end(JSON.stringify(response));
});
if (cors) {
app.options('/graphql', res => {
res.writeHeader('Access-Control-Allow-Headers', 'content-type');
res.writeHeader('Access-Control-Allow-Methods', 'POST');
res.writeHeader('Access-Control-Allow-Origin', '*');
res.end();
});
}
}