This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 538
/
index.ts
545 lines (477 loc) · 16.8 KB
/
index.ts
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
import type { IncomingMessage, ServerResponse } from 'http';
import type {
DocumentNode,
ValidationRule,
ExecutionArgs,
ExecutionResult,
FormattedExecutionResult,
GraphQLSchema,
GraphQLFieldResolver,
GraphQLTypeResolver,
GraphQLFormattedError,
} from 'graphql';
import accepts from 'accepts';
import httpError from 'http-errors';
import {
Source,
GraphQLError,
parse,
validate,
execute,
formatError,
validateSchema,
getOperationAST,
specifiedRules,
} from 'graphql';
import type { GraphiQLOptions, GraphiQLData } from './renderGraphiQL';
import { parseBody } from './parseBody';
import { renderGraphiQL } from './renderGraphiQL';
// `url` is always defined for IncomingMessage coming from http.Server
type Request = IncomingMessage & { url: string };
type Response = ServerResponse & { json?: (data: unknown) => void };
type MaybePromise<T> = Promise<T> | T;
/**
* Used to configure the graphqlHTTP middleware by providing a schema
* and other configuration options.
*
* Options can be provided as an Object, a Promise for an Object, or a Function
* that returns an Object or a Promise for an Object.
*/
export type Options =
| ((
request: Request,
response: Response,
params?: GraphQLParams,
) => MaybePromise<OptionsData>)
| MaybePromise<OptionsData>;
export interface OptionsData {
/**
* A GraphQL schema from `graphql-js`.
*/
schema: GraphQLSchema;
/**
* A value to pass as the `contextValue` to the `execute` function.
*/
context?: unknown;
/**
* An object to pass as the `rootValue` to the `execute` function.
*/
rootValue?: unknown;
/**
* A boolean to configure whether the output should be pretty-printed.
*/
pretty?: boolean;
/**
* An optional array of validation rules that will be applied on the document
* in addition to those defined by the GraphQL spec.
*/
validationRules?: ReadonlyArray<ValidationRule>;
/**
* An optional function which will be used to validate instead of default `validate`
* from `graphql-js`.
*/
customValidateFn?: (
schema: GraphQLSchema,
documentAST: DocumentNode,
rules: ReadonlyArray<ValidationRule>,
) => ReadonlyArray<GraphQLError>;
/**
* An optional function which will be used to execute instead of default `execute`
* from `graphql-js`.
*/
customExecuteFn?: (args: ExecutionArgs) => MaybePromise<ExecutionResult>;
/**
* An optional function which will be used to format any errors produced by
* fulfilling a GraphQL operation. If no function is provided, GraphQL's
* default spec-compliant `formatError` function will be used.
*/
customFormatErrorFn?: (error: GraphQLError) => GraphQLFormattedError;
/**
* An optional function which will be used to create a document instead of
* the default `parse` from `graphql-js`.
*/
customParseFn?: (source: Source) => DocumentNode;
/**
* @deprecated `formatError` is deprecated and replaced by `customFormatErrorFn`.
* It will be removed in version 1.0.0.
*/
formatError?: (error: GraphQLError) => GraphQLFormattedError;
/**
* An optional function for adding additional metadata to the GraphQL response
* as a key-value object. The result will be added to "extensions" field in
* the resulting JSON. This is often a useful place to add development time
* info such as the runtime of a query or the amount of resources consumed.
*
* Information about the request is provided to be used.
*
* This function may be async.
*/
extensions?: (
info: RequestInfo,
) => MaybePromise<undefined | { [key: string]: unknown }>;
/**
* A boolean to optionally enable GraphiQL mode.
* Alternatively, instead of `true` you can pass in an options object.
*/
graphiql?: boolean | GraphiQLOptions;
/**
* A resolver function to use when one is not provided by the schema.
* If not provided, the default field resolver is used (which looks for a
* value or method on the source value with the field's name).
*/
fieldResolver?: GraphQLFieldResolver<unknown, unknown>;
/**
* A type resolver function to use when none is provided by the schema.
* If not provided, the default type resolver is used (which looks for a
* `__typename` field or alternatively calls the `isTypeOf` method).
*/
typeResolver?: GraphQLTypeResolver<unknown, unknown>;
}
/**
* All information about a GraphQL request.
*/
export interface RequestInfo {
/**
* The parsed GraphQL document.
*/
document: DocumentNode;
/**
* The variable values used at runtime.
*/
variables: { readonly [name: string]: unknown } | null;
/**
* The (optional) operation name requested.
*/
operationName: string | null;
/**
* The result of executing the operation.
*/
result: FormattedExecutionResult;
/**
* The value passed as the `contextValue` to the `execute` function.
*/
context?: unknown;
}
type Middleware = (request: Request, response: Response) => Promise<void>;
/**
* Middleware for express; takes an options object or function as input to
* configure behavior, and returns an express middleware.
*/
export function graphqlHTTP(options: Options): Middleware {
devAssertIsNonNullable(options, 'GraphQL middleware requires options.');
return async function graphqlMiddleware(
request: Request,
response: Response,
): Promise<void> {
// Higher scoped variables are referred to at various stages in the asynchronous state machine below.
let params: GraphQLParams | undefined;
let showGraphiQL = false;
let graphiqlOptions: GraphiQLOptions | undefined;
let formatErrorFn = formatError;
let pretty = false;
let result: ExecutionResult;
try {
// Parse the Request to get GraphQL request parameters.
try {
params = await getGraphQLParams(request);
} catch (error: unknown) {
// When we failed to parse the GraphQL parameters, we still need to get
// the options object, so make an options call to resolve just that.
const optionsData = await resolveOptions();
pretty = optionsData.pretty ?? false;
formatErrorFn =
optionsData.customFormatErrorFn ??
optionsData.formatError ??
formatErrorFn;
throw error;
}
// Then, resolve the Options to get OptionsData.
const optionsData = await resolveOptions(params);
// Collect information from the options data object.
const schema = optionsData.schema;
const rootValue = optionsData.rootValue;
const validationRules = optionsData.validationRules ?? [];
const fieldResolver = optionsData.fieldResolver;
const typeResolver = optionsData.typeResolver;
const graphiql = optionsData.graphiql ?? false;
const extensionsFn = optionsData.extensions;
const context = optionsData.context ?? request;
const parseFn = optionsData.customParseFn ?? parse;
const executeFn = optionsData.customExecuteFn ?? execute;
const validateFn = optionsData.customValidateFn ?? validate;
pretty = optionsData.pretty ?? false;
formatErrorFn =
optionsData.customFormatErrorFn ??
optionsData.formatError ??
formatErrorFn;
devAssertIsObject(
schema,
'GraphQL middleware options must contain a schema.',
);
// GraphQL HTTP only supports GET and POST methods.
if (request.method !== 'GET' && request.method !== 'POST') {
throw httpError(405, 'GraphQL only supports GET and POST requests.', {
headers: { Allow: 'GET, POST' },
});
}
// Get GraphQL params from the request and POST body data.
const { query, variables, operationName } = params;
showGraphiQL = canDisplayGraphiQL(request, params) && graphiql !== false;
if (typeof graphiql !== 'boolean') {
graphiqlOptions = graphiql;
}
// If there is no query, but GraphiQL will be displayed, do not produce
// a result, otherwise return a 400: Bad Request.
if (query == null) {
if (showGraphiQL) {
return respondWithGraphiQL(response, graphiqlOptions);
}
throw httpError(400, 'Must provide query string.');
}
// Validate Schema
const schemaValidationErrors = validateSchema(schema);
if (schemaValidationErrors.length > 0) {
// Return 500: Internal Server Error if invalid schema.
throw httpError(500, 'GraphQL schema validation error.', {
graphqlErrors: schemaValidationErrors,
});
}
// Parse source to AST, reporting any syntax error.
let documentAST: DocumentNode;
try {
documentAST = parseFn(new Source(query, 'GraphQL request'));
} catch (syntaxError: unknown) {
// Return 400: Bad Request if any syntax errors exist.
throw httpError(400, 'GraphQL syntax error.', {
graphqlErrors: [syntaxError],
});
}
// Validate AST, reporting any errors.
const validationErrors = validateFn(schema, documentAST, [
...specifiedRules,
...validationRules,
]);
if (validationErrors.length > 0) {
// Return 400: Bad Request if any validation errors exist.
throw httpError(400, 'GraphQL validation error.', {
graphqlErrors: validationErrors,
});
}
// Only query operations are allowed on GET requests.
if (request.method === 'GET') {
// Determine if this GET request will perform a non-query.
const operationAST = getOperationAST(documentAST, operationName);
if (operationAST && operationAST.operation !== 'query') {
// If GraphiQL can be shown, do not perform this query, but
// provide it to GraphiQL so that the requester may perform it
// themselves if desired.
if (showGraphiQL) {
return respondWithGraphiQL(response, graphiqlOptions, params);
}
// Otherwise, report a 405: Method Not Allowed error.
throw httpError(
405,
`Can only perform a ${operationAST.operation} operation from a POST request.`,
{ headers: { Allow: 'POST' } },
);
}
}
// Perform the execution, reporting any errors creating the context.
try {
result = await executeFn({
schema,
document: documentAST,
rootValue,
contextValue: context,
variableValues: variables,
operationName,
fieldResolver,
typeResolver,
});
} catch (contextError: unknown) {
// Return 400: Bad Request if any execution context errors exist.
throw httpError(400, 'GraphQL execution context error.', {
graphqlErrors: [contextError],
});
}
// Collect and apply any metadata extensions if a function was provided.
// https://graphql.github.io/graphql-spec/#sec-Response-Format
if (extensionsFn) {
const extensions = await extensionsFn({
document: documentAST,
variables,
operationName,
result,
context,
});
if (extensions != null) {
result = { ...result, extensions };
}
}
} catch (rawError: unknown) {
// If an error was caught, report the httpError status, or 500.
const error = httpError(
500,
/* istanbul ignore next: Thrown by underlying library. */
rawError instanceof Error ? rawError : String(rawError),
);
response.statusCode = error.status;
const { headers } = error;
if (headers != null) {
for (const [key, value] of Object.entries(headers)) {
response.setHeader(key, String(value));
}
}
if (error.graphqlErrors == null) {
const graphqlError = new GraphQLError(
error.message,
undefined,
undefined,
undefined,
undefined,
error,
);
result = { data: undefined, errors: [graphqlError] };
} else {
result = { data: undefined, errors: error.graphqlErrors };
}
}
// If no data was included in the result, that indicates a runtime query
// error, indicate as such with a generic status code.
// Note: Information about the error itself will still be contained in
// the resulting JSON payload.
// https://graphql.github.io/graphql-spec/#sec-Data
if (response.statusCode === 200 && result.data == null) {
response.statusCode = 500;
}
// Format any encountered errors.
const formattedResult: FormattedExecutionResult = {
...result,
errors: result.errors?.map(formatErrorFn),
};
// If allowed to show GraphiQL, present it instead of JSON.
if (showGraphiQL) {
return respondWithGraphiQL(
response,
graphiqlOptions,
params,
formattedResult,
);
}
// If "pretty" JSON isn't requested, and the server provides a
// response.json method (express), use that directly.
// Otherwise use the simplified sendResponse method.
if (!pretty && typeof response.json === 'function') {
response.json(formattedResult);
} else {
const payload = JSON.stringify(formattedResult, null, pretty ? 2 : 0);
sendResponse(response, 'application/json', payload);
}
async function resolveOptions(
requestParams?: GraphQLParams,
): Promise<OptionsData> {
const optionsResult = await Promise.resolve(
typeof options === 'function'
? options(request, response, requestParams)
: options,
);
devAssertIsObject(
optionsResult,
'GraphQL middleware option function must return an options object or a promise which will be resolved to an options object.',
);
if (optionsResult.formatError) {
// eslint-disable-next-line no-console
console.warn(
'`formatError` is deprecated and replaced by `customFormatErrorFn`. It will be removed in version 1.0.0.',
);
}
return optionsResult;
}
};
}
function respondWithGraphiQL(
response: Response,
options?: GraphiQLOptions,
params?: GraphQLParams,
result?: FormattedExecutionResult,
): void {
const data: GraphiQLData = {
query: params?.query,
variables: params?.variables,
operationName: params?.operationName,
result,
};
const payload = renderGraphiQL(data, options);
return sendResponse(response, 'text/html', payload);
}
export interface GraphQLParams {
query: string | null;
variables: { readonly [name: string]: unknown } | null;
operationName: string | null;
raw: boolean;
}
/**
* Provided a "Request" provided by express or connect (typically a node style
* HTTPClientRequest), Promise the GraphQL request parameters.
*/
export async function getGraphQLParams(
request: Request,
): Promise<GraphQLParams> {
const urlData = new URLSearchParams(request.url.split('?')[1]);
const bodyData = await parseBody(request);
// GraphQL Query string.
let query = urlData.get('query') ?? (bodyData.query as string | null);
if (typeof query !== 'string') {
query = null;
}
// Parse the variables if needed.
let variables = (urlData.get('variables') ?? bodyData.variables) as {
readonly [name: string]: unknown;
} | null;
if (typeof variables === 'string') {
try {
variables = JSON.parse(variables);
} catch {
throw httpError(400, 'Variables are invalid JSON.');
}
} else if (typeof variables !== 'object') {
variables = null;
}
// Name of GraphQL operation to execute.
let operationName =
urlData.get('operationName') ?? (bodyData.operationName as string | null);
if (typeof operationName !== 'string') {
operationName = null;
}
const raw = urlData.get('raw') != null || bodyData.raw !== undefined;
return { query, variables, operationName, raw };
}
/**
* Helper function to determine if GraphiQL can be displayed.
*/
function canDisplayGraphiQL(request: Request, params: GraphQLParams): boolean {
// If `raw` false, GraphiQL mode is not enabled.
// Allowed to show GraphiQL if not requested as raw and this request prefers HTML over JSON.
return !params.raw && accepts(request).types(['json', 'html']) === 'html';
}
/**
* Helper function for sending a response using only the core Node server APIs.
*/
function sendResponse(response: Response, type: string, data: string): void {
const chunk = Buffer.from(data, 'utf8');
response.setHeader('Content-Type', type + '; charset=utf-8');
response.setHeader('Content-Length', String(chunk.length));
response.end(chunk);
}
function devAssertIsObject(value: unknown, message: string): void {
devAssert(value != null && typeof value === 'object', message);
}
function devAssertIsNonNullable(value: unknown, message: string): void {
devAssert(value != null, message);
}
function devAssert(condition: unknown, message: string): void {
const booleanCondition = Boolean(condition);
if (!booleanCondition) {
throw new TypeError(message);
}
}