-
-
Notifications
You must be signed in to change notification settings - Fork 822
/
Copy pathvisitResult.ts
504 lines (452 loc) · 12.8 KB
/
visitResult.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
import {
FieldNode,
FragmentDefinitionNode,
getNullableType,
GraphQLError,
GraphQLObjectType,
GraphQLOutputType,
GraphQLSchema,
isAbstractType,
isListType,
isObjectType,
Kind,
OperationDefinitionNode,
SchemaMetaFieldDef,
TypeMetaFieldDef,
TypeNameMetaFieldDef,
} from 'graphql';
import { collectFields, collectSubFields } from './collectFields.js';
import { getOperationASTFromRequest } from './getOperationASTFromRequest.js';
import { ExecutionRequest, ExecutionResult } from './Interfaces.js';
import { Maybe } from './types.js';
export type ValueVisitor = (value: any) => any;
export type ObjectValueVisitor = {
__enter?: ValueVisitor;
__leave?: ValueVisitor;
} & Record<string, ValueVisitor>;
export type ResultVisitorMap = Record<string, ValueVisitor | ObjectValueVisitor>;
export type ErrorVisitor = (error: GraphQLError, pathIndex: number) => GraphQLError;
export type ErrorVisitorMap = {
__unpathed?: (error: GraphQLError) => GraphQLError;
} & Record<string, Record<string, ErrorVisitor>>;
interface SegmentInfo {
type: GraphQLObjectType;
fieldName: string;
pathIndex: number;
}
interface ErrorInfo {
segmentInfoMap: Map<GraphQLError, Array<SegmentInfo>>;
unpathedErrors: Set<GraphQLError>;
}
interface SortedErrors {
errorMap: Record<string, Array<GraphQLError>>;
unpathedErrors: Set<GraphQLError>;
}
export function visitData(data: any, enter?: ValueVisitor, leave?: ValueVisitor): any {
if (Array.isArray(data)) {
return data.map(value => visitData(value, enter, leave));
} else if (typeof data === 'object') {
const newData = enter != null ? enter(data) : data;
if (newData != null) {
for (const key in newData) {
const value = newData[key];
Object.defineProperty(newData, key, {
value: visitData(value, enter, leave),
});
}
}
return leave != null ? leave(newData) : newData;
}
return data;
}
export function visitErrors(
errors: ReadonlyArray<GraphQLError>,
visitor: (error: GraphQLError) => GraphQLError,
): Array<GraphQLError> {
return errors.map(error => visitor(error));
}
export function visitResult(
result: ExecutionResult,
request: ExecutionRequest,
schema: GraphQLSchema,
resultVisitorMap?: ResultVisitorMap,
errorVisitorMap?: ErrorVisitorMap,
): any {
const fragments = request.document.definitions.reduce((acc, def) => {
if (def.kind === Kind.FRAGMENT_DEFINITION) {
acc[def.name.value] = def;
}
return acc;
}, {});
const variableValues = request.variables || {};
const errorInfo: ErrorInfo = {
segmentInfoMap: new Map<GraphQLError, Array<SegmentInfo>>(),
unpathedErrors: new Set<GraphQLError>(),
};
const data = result.data;
const errors = result.errors;
const visitingErrors = errors != null && errorVisitorMap != null;
const operationDocumentNode = getOperationASTFromRequest(request);
if (data != null && operationDocumentNode != null) {
result.data = visitRoot(
data,
operationDocumentNode,
schema,
fragments,
variableValues,
resultVisitorMap,
visitingErrors ? errors : undefined,
errorInfo,
);
}
if (errors != null && errorVisitorMap) {
result.errors = visitErrorsByType(errors, errorVisitorMap, errorInfo);
}
return result;
}
function visitErrorsByType(
errors: ReadonlyArray<GraphQLError>,
errorVisitorMap: ErrorVisitorMap,
errorInfo: ErrorInfo,
): Array<GraphQLError> {
const segmentInfoMap = errorInfo.segmentInfoMap;
const unpathedErrors = errorInfo.unpathedErrors;
const unpathedErrorVisitor = errorVisitorMap['__unpathed'];
return errors.map(originalError => {
const pathSegmentsInfo = segmentInfoMap.get(originalError);
const newError =
pathSegmentsInfo == null
? originalError
: pathSegmentsInfo.reduceRight((acc, segmentInfo) => {
const typeName = segmentInfo.type.name;
const typeVisitorMap = errorVisitorMap[typeName];
if (typeVisitorMap == null) {
return acc;
}
const errorVisitor = typeVisitorMap[segmentInfo.fieldName];
return errorVisitor == null ? acc : errorVisitor(acc, segmentInfo.pathIndex);
}, originalError);
if (unpathedErrorVisitor && unpathedErrors.has(originalError)) {
return unpathedErrorVisitor(newError);
}
return newError;
});
}
function getOperationRootType(schema: GraphQLSchema, operationDef: OperationDefinitionNode) {
switch (operationDef.operation) {
case 'query':
return schema.getQueryType();
case 'mutation':
return schema.getMutationType();
case 'subscription':
return schema.getSubscriptionType();
}
}
function visitRoot(
root: any,
operation: OperationDefinitionNode,
schema: GraphQLSchema,
fragments: Record<string, FragmentDefinitionNode>,
variableValues: Record<string, any>,
resultVisitorMap: Maybe<ResultVisitorMap>,
errors: Maybe<ReadonlyArray<GraphQLError>>,
errorInfo: ErrorInfo,
): any {
const operationRootType = getOperationRootType(schema, operation)!;
const { fields: collectedFields } = collectFields(
schema,
fragments,
variableValues,
operationRootType,
operation.selectionSet,
);
return visitObjectValue(
root,
operationRootType,
collectedFields,
schema,
fragments,
variableValues,
resultVisitorMap,
0,
errors,
errorInfo,
);
}
function visitObjectValue(
object: Record<string, any>,
type: GraphQLObjectType,
fieldNodeMap: Map<string, FieldNode[]>,
schema: GraphQLSchema,
fragments: Record<string, FragmentDefinitionNode>,
variableValues: Record<string, any>,
resultVisitorMap: Maybe<ResultVisitorMap>,
pathIndex: number,
errors: Maybe<ReadonlyArray<GraphQLError>>,
errorInfo: ErrorInfo,
): Record<string, any> {
const fieldMap = type.getFields();
const typeVisitorMap = resultVisitorMap?.[type.name] as ObjectValueVisitor;
const enterObject = typeVisitorMap?.__enter as ValueVisitor;
const newObject = enterObject != null ? enterObject(object) : object;
let sortedErrors: SortedErrors;
let errorMap: Maybe<Record<string, Array<GraphQLError>>> = null;
if (errors != null) {
sortedErrors = sortErrorsByPathSegment(errors, pathIndex);
errorMap = sortedErrors.errorMap;
for (const error of sortedErrors.unpathedErrors) {
errorInfo.unpathedErrors.add(error);
}
}
for (const [responseKey, subFieldNodes] of fieldNodeMap) {
const fieldName = subFieldNodes[0].name.value;
let fieldType = fieldMap[fieldName]?.type;
if (fieldType == null) {
switch (fieldName) {
case '__typename':
fieldType = TypeNameMetaFieldDef.type;
break;
case '__schema':
fieldType = SchemaMetaFieldDef.type;
break;
case '__type':
fieldType = TypeMetaFieldDef.type;
break;
}
}
const newPathIndex = pathIndex + 1;
let fieldErrors: Array<GraphQLError> | undefined;
if (errorMap) {
fieldErrors = errorMap[responseKey];
if (fieldErrors != null) {
delete errorMap[responseKey];
}
addPathSegmentInfo(type, fieldName, newPathIndex, fieldErrors, errorInfo);
}
const newValue = visitFieldValue(
object[responseKey],
fieldType,
subFieldNodes,
schema,
fragments,
variableValues,
resultVisitorMap,
newPathIndex,
fieldErrors,
errorInfo,
);
updateObject(newObject, responseKey, newValue, typeVisitorMap, fieldName);
}
const oldTypename = newObject.__typename;
if (oldTypename != null) {
updateObject(newObject, '__typename', oldTypename, typeVisitorMap, '__typename');
}
if (errorMap) {
for (const errorsKey in errorMap) {
const errors = errorMap[errorsKey];
for (const error of errors) {
errorInfo.unpathedErrors.add(error);
}
}
}
const leaveObject = typeVisitorMap?.__leave as ValueVisitor;
return leaveObject != null ? leaveObject(newObject) : newObject;
}
function updateObject(
object: Record<string, any>,
responseKey: string,
newValue: any,
typeVisitorMap: ObjectValueVisitor,
fieldName: string,
): void {
if (typeVisitorMap == null) {
object[responseKey] = newValue;
return;
}
const fieldVisitor = typeVisitorMap[fieldName];
if (fieldVisitor == null) {
object[responseKey] = newValue;
return;
}
const visitedValue = fieldVisitor(newValue);
if (visitedValue === undefined) {
delete object[responseKey];
return;
}
object[responseKey] = visitedValue;
}
function visitListValue(
list: Array<any>,
returnType: GraphQLOutputType,
fieldNodes: Array<FieldNode>,
schema: GraphQLSchema,
fragments: Record<string, FragmentDefinitionNode>,
variableValues: Record<string, any>,
resultVisitorMap: Maybe<ResultVisitorMap>,
pathIndex: number,
errors: ReadonlyArray<GraphQLError>,
errorInfo: ErrorInfo,
): Array<any> {
return list.map(listMember =>
visitFieldValue(
listMember,
returnType,
fieldNodes,
schema,
fragments,
variableValues,
resultVisitorMap,
pathIndex + 1,
errors,
errorInfo,
),
);
}
function visitFieldValue(
value: any,
returnType: GraphQLOutputType,
fieldNodes: Array<FieldNode>,
schema: GraphQLSchema,
fragments: Record<string, FragmentDefinitionNode>,
variableValues: Record<string, any>,
resultVisitorMap: Maybe<ResultVisitorMap>,
pathIndex: number,
errors: ReadonlyArray<GraphQLError> | undefined = [],
errorInfo: ErrorInfo,
): any {
if (value == null) {
return value;
}
const nullableType = getNullableType(returnType);
if (isListType(nullableType)) {
return visitListValue(
value as Array<any>,
nullableType.ofType,
fieldNodes,
schema,
fragments,
variableValues,
resultVisitorMap,
pathIndex,
errors,
errorInfo,
);
} else if (isAbstractType(nullableType)) {
const finalType = schema.getType(value.__typename) as GraphQLObjectType;
let { fields: collectedFields, patches } = collectSubFields(
schema,
fragments,
variableValues,
finalType,
fieldNodes,
);
if (patches.length) {
collectedFields = new Map(collectedFields);
for (const patch of patches) {
for (const [responseKey, fields] of patch.fields) {
const existingFields = collectedFields.get(responseKey);
if (existingFields) {
existingFields.push(...fields);
} else {
collectedFields.set(responseKey, fields);
}
}
}
}
return visitObjectValue(
value,
finalType,
collectedFields,
schema,
fragments,
variableValues,
resultVisitorMap,
pathIndex,
errors,
errorInfo,
);
} else if (isObjectType(nullableType)) {
let { fields: collectedFields, patches } = collectSubFields(
schema,
fragments,
variableValues,
nullableType,
fieldNodes,
);
if (patches.length) {
collectedFields = new Map(collectedFields);
for (const patch of patches) {
for (const [responseKey, fields] of patch.fields) {
const existingFields = collectedFields.get(responseKey);
if (existingFields) {
existingFields.push(...fields);
} else {
collectedFields.set(responseKey, fields);
}
}
}
}
return visitObjectValue(
value,
nullableType,
collectedFields,
schema,
fragments,
variableValues,
resultVisitorMap,
pathIndex,
errors,
errorInfo,
);
}
const typeVisitorMap = resultVisitorMap?.[nullableType.name] as ValueVisitor;
if (typeVisitorMap == null) {
return value;
}
const visitedValue = typeVisitorMap(value);
return visitedValue === undefined ? value : visitedValue;
}
function sortErrorsByPathSegment(
errors: ReadonlyArray<GraphQLError>,
pathIndex: number,
): SortedErrors {
const errorMap = Object.create(null);
const unpathedErrors: Set<GraphQLError> = new Set();
for (const error of errors) {
const pathSegment = error.path?.[pathIndex];
if (pathSegment == null) {
unpathedErrors.add(error);
continue;
}
if (pathSegment in errorMap) {
errorMap[pathSegment].push(error);
} else {
errorMap[pathSegment] = [error];
}
}
return {
errorMap,
unpathedErrors,
};
}
function addPathSegmentInfo(
type: GraphQLObjectType,
fieldName: string,
pathIndex: number,
errors: ReadonlyArray<GraphQLError> = [],
errorInfo: ErrorInfo,
) {
for (const error of errors) {
const segmentInfo = {
type,
fieldName,
pathIndex,
};
const pathSegmentsInfo = errorInfo.segmentInfoMap.get(error);
if (pathSegmentsInfo == null) {
errorInfo.segmentInfoMap.set(error, [segmentInfo]);
} else {
pathSegmentsInfo.push(segmentInfo);
}
}
}