-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathValidationContext.ts
319 lines (279 loc) · 9.19 KB
/
ValidationContext.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
import type { Maybe } from '../jsutils/Maybe.js';
import type { ObjMap } from '../jsutils/ObjMap.js';
import type { GraphQLError } from '../error/GraphQLError.js';
import type {
DocumentNode,
FragmentDefinitionNode,
FragmentSpreadNode,
OperationDefinitionNode,
SelectionSetNode,
VariableDefinitionNode,
VariableNode,
} from '../language/ast.js';
import { Kind } from '../language/kinds.js';
import type { ASTVisitor } from '../language/visitor.js';
import { visit } from '../language/visitor.js';
import type {
GraphQLArgument,
GraphQLCompositeType,
GraphQLEnumValue,
GraphQLField,
GraphQLInputType,
GraphQLOutputType,
} from '../type/definition.js';
import type { GraphQLDirective } from '../type/directives.js';
import type { GraphQLSchema } from '../type/schema.js';
import type { FragmentSignature } from '../utilities/TypeInfo.js';
import { TypeInfo, visitWithTypeInfo } from '../utilities/TypeInfo.js';
type NodeWithSelectionSet = OperationDefinitionNode | FragmentDefinitionNode;
interface VariableUsage {
readonly node: VariableNode;
readonly type: Maybe<GraphQLInputType>;
readonly parentType: Maybe<GraphQLInputType>;
readonly defaultValue: unknown;
readonly fragmentVariableDefinition: Maybe<VariableDefinitionNode>;
}
/**
* An instance of this class is passed as the "this" context to all validators,
* allowing access to commonly useful contextual information from within a
* validation rule.
*/
export class ASTValidationContext {
private _ast: DocumentNode;
private _onError: (error: GraphQLError) => void;
private _fragments: ObjMap<FragmentDefinitionNode> | undefined;
private _fragmentSpreads: Map<SelectionSetNode, Array<FragmentSpreadNode>>;
private _recursivelyReferencedFragments: Map<
OperationDefinitionNode,
Array<FragmentDefinitionNode>
>;
constructor(ast: DocumentNode, onError: (error: GraphQLError) => void) {
this._ast = ast;
this._fragments = undefined;
this._fragmentSpreads = new Map();
this._recursivelyReferencedFragments = new Map();
this._onError = onError;
}
get [Symbol.toStringTag]() {
return 'ASTValidationContext';
}
reportError(error: GraphQLError): void {
this._onError(error);
}
getDocument(): DocumentNode {
return this._ast;
}
getFragment(name: string): Maybe<FragmentDefinitionNode> {
let fragments: ObjMap<FragmentDefinitionNode>;
if (this._fragments) {
fragments = this._fragments;
} else {
fragments = Object.create(null);
for (const defNode of this.getDocument().definitions) {
if (defNode.kind === Kind.FRAGMENT_DEFINITION) {
fragments[defNode.name.value] = defNode;
}
}
this._fragments = fragments;
}
return fragments[name];
}
getFragmentSpreads(
node: SelectionSetNode,
): ReadonlyArray<FragmentSpreadNode> {
let spreads = this._fragmentSpreads.get(node);
if (!spreads) {
spreads = [];
const setsToVisit: Array<SelectionSetNode> = [node];
let set: SelectionSetNode | undefined;
while ((set = setsToVisit.pop())) {
for (const selection of set.selections) {
if (selection.kind === Kind.FRAGMENT_SPREAD) {
spreads.push(selection);
} else if (selection.selectionSet) {
setsToVisit.push(selection.selectionSet);
}
}
}
this._fragmentSpreads.set(node, spreads);
}
return spreads;
}
getRecursivelyReferencedFragments(
operation: OperationDefinitionNode,
): ReadonlyArray<FragmentDefinitionNode> {
let fragments = this._recursivelyReferencedFragments.get(operation);
if (!fragments) {
fragments = [];
const collectedNames = new Set<string>();
const nodesToVisit: Array<SelectionSetNode> = [operation.selectionSet];
let node: SelectionSetNode | undefined;
while ((node = nodesToVisit.pop())) {
for (const spread of this.getFragmentSpreads(node)) {
const fragName = spread.name.value;
if (!collectedNames.has(fragName)) {
collectedNames.add(fragName);
const fragment = this.getFragment(fragName);
if (fragment) {
fragments.push(fragment);
nodesToVisit.push(fragment.selectionSet);
}
}
}
}
this._recursivelyReferencedFragments.set(operation, fragments);
}
return fragments;
}
}
export type ASTValidationRule = (context: ASTValidationContext) => ASTVisitor;
export class SDLValidationContext extends ASTValidationContext {
private _schema: Maybe<GraphQLSchema>;
constructor(
ast: DocumentNode,
schema: Maybe<GraphQLSchema>,
onError: (error: GraphQLError) => void,
) {
super(ast, onError);
this._schema = schema;
}
get hideSuggestions() {
return false;
}
override get [Symbol.toStringTag]() {
return 'SDLValidationContext';
}
getSchema(): Maybe<GraphQLSchema> {
return this._schema;
}
}
export type SDLValidationRule = (context: SDLValidationContext) => ASTVisitor;
export class ValidationContext extends ASTValidationContext {
private _schema: GraphQLSchema;
private _typeInfo: TypeInfo;
private _variableUsages: Map<
NodeWithSelectionSet,
ReadonlyArray<VariableUsage>
>;
private _recursiveVariableUsages: Map<
OperationDefinitionNode,
ReadonlyArray<VariableUsage>
>;
private _hideSuggestions: boolean;
constructor(
schema: GraphQLSchema,
ast: DocumentNode,
typeInfo: TypeInfo,
onError: (error: GraphQLError) => void,
hideSuggestions?: Maybe<boolean>,
) {
super(ast, onError);
this._schema = schema;
this._typeInfo = typeInfo;
this._variableUsages = new Map();
this._recursiveVariableUsages = new Map();
this._hideSuggestions = hideSuggestions ?? false;
}
override get [Symbol.toStringTag]() {
return 'ValidationContext';
}
get hideSuggestions() {
return this._hideSuggestions;
}
getSchema(): GraphQLSchema {
return this._schema;
}
getVariableUsages(node: NodeWithSelectionSet): ReadonlyArray<VariableUsage> {
let usages = this._variableUsages.get(node);
if (!usages) {
const newUsages: Array<VariableUsage> = [];
const typeInfo = new TypeInfo(
this._schema,
undefined,
this._typeInfo.getFragmentSignatureByName(),
);
const fragmentDefinition =
node.kind === Kind.FRAGMENT_DEFINITION ? node : undefined;
visit(
node,
visitWithTypeInfo(typeInfo, {
VariableDefinition: () => false,
Variable(variable) {
let fragmentVariableDefinition;
if (fragmentDefinition) {
const fragmentSignature = typeInfo.getFragmentSignatureByName()(
fragmentDefinition.name.value,
);
fragmentVariableDefinition =
fragmentSignature?.variableDefinitions.get(variable.name.value);
newUsages.push({
node: variable,
type: typeInfo.getInputType(),
parentType: typeInfo.getParentInputType(),
defaultValue: undefined, // fragment variables have a variable default but no location default, which is what this default value represents
fragmentVariableDefinition,
});
} else {
newUsages.push({
node: variable,
type: typeInfo.getInputType(),
parentType: typeInfo.getParentInputType(),
defaultValue: typeInfo.getDefaultValue(),
fragmentVariableDefinition: undefined,
});
}
},
}),
);
usages = newUsages;
this._variableUsages.set(node, usages);
}
return usages;
}
getRecursiveVariableUsages(
operation: OperationDefinitionNode,
): ReadonlyArray<VariableUsage> {
let usages = this._recursiveVariableUsages.get(operation);
if (!usages) {
usages = this.getVariableUsages(operation);
for (const frag of this.getRecursivelyReferencedFragments(operation)) {
usages = usages.concat(this.getVariableUsages(frag));
}
this._recursiveVariableUsages.set(operation, usages);
}
return usages;
}
getType(): Maybe<GraphQLOutputType> {
return this._typeInfo.getType();
}
getParentType(): Maybe<GraphQLCompositeType> {
return this._typeInfo.getParentType();
}
getInputType(): Maybe<GraphQLInputType> {
return this._typeInfo.getInputType();
}
getParentInputType(): Maybe<GraphQLInputType> {
return this._typeInfo.getParentInputType();
}
getFieldDef(): Maybe<GraphQLField<unknown, unknown>> {
return this._typeInfo.getFieldDef();
}
getDirective(): Maybe<GraphQLDirective> {
return this._typeInfo.getDirective();
}
getArgument(): Maybe<GraphQLArgument> {
return this._typeInfo.getArgument();
}
getFragmentSignature(): Maybe<FragmentSignature> {
return this._typeInfo.getFragmentSignature();
}
getFragmentSignatureByName(): (
fragmentName: string,
) => Maybe<FragmentSignature> {
return this._typeInfo.getFragmentSignatureByName();
}
getEnumValue(): Maybe<GraphQLEnumValue> {
return this._typeInfo.getEnumValue();
}
}
export type ValidationRule = (context: ValidationContext) => ASTVisitor;