-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
f.py
308 lines (236 loc) · 9.5 KB
/
f.py
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
from turms.utils import parse_documents
from tests.utils import build_relative_glob
from turms.run import build_schema_from_schema_type
from typing import Dict, Set
from graphql.utilities.build_client_schema import GraphQLSchema
from graphql.language.ast import DocumentNode, FieldNode
from graphql import (
GraphQLEnumType,
GraphQLList,
GraphQLNonNull,
GraphQLObjectType,
GraphQLInputObjectType,
GraphQLScalarType,
ListTypeNode,
NamedTypeNode,
NonNullTypeNode,
OperationDefinitionNode,
FragmentDefinitionNode,
GraphQLInterfaceType,
)
from graphql.type.definition import (
GraphQLEnumType,
GraphQLInterfaceType,
GraphQLList,
GraphQLNonNull,
GraphQLObjectType,
GraphQLScalarType,
GraphQLType,
GraphQLUnionType,
)
from graphql.language.ast import (
FieldNode,
FragmentSpreadNode,
InlineFragmentNode,
)
class ReferenceRegistry:
def __init__(self):
self.objects: Set[str] = set()
self.fragments: Set[str] = set()
self.enums: Set[str] = set()
self.inputs: Set[str] = set()
self.scalars: Set[str] = set()
self.operations: Set[str] = set()
def register_type(self, type_name: str):
self.objects.add(type_name)
def register_fragment(self, type_name: str):
self.fragments.add(type_name)
def register_enum(self, type_name: str):
self.enums.add(type_name)
def register_input(self, type_name: str):
self.inputs.add(type_name)
def register_scalar(self, type_name: str):
self.scalars.add(type_name)
def recurse_find_references(
node: FieldNode,
graphql_type: GraphQLType,
client_schema: GraphQLSchema,
registry: ReferenceRegistry,
is_optional=True,
):
if isinstance(graphql_type, GraphQLUnionType):
for sub_node in node.selection_set.selections:
if isinstance(sub_node, FragmentSpreadNode):
registry.register_fragment(sub_node.name.value)
if isinstance(sub_node, InlineFragmentNode):
for sub_sub_node in sub_node.selection_set.selections:
if isinstance(sub_sub_node, FieldNode):
sub_sub_node_type = client_schema.get_type(
sub_node.type_condition.name.value
)
if sub_sub_node.name.value == "__typename":
continue
field_type = sub_sub_node_type.fields[sub_sub_node.name.value]
return recurse_find_references(
sub_sub_node,
field_type.type,
client_schema,
registry,
)
elif isinstance(graphql_type, GraphQLInterfaceType):
# Lets Create Base Class to Inherit from for this
for sub_node in node.selection_set.selections:
if isinstance(sub_node, FieldNode):
if sub_node.name.value == "__typename":
continue
field_type = graphql_type.fields[sub_node.name.value]
recurse_find_references(
sub_node,
field_type.type,
client_schema,
registry,
)
if isinstance(sub_node, FragmentSpreadNode):
registry.register_fragment(sub_node.name.value)
if isinstance(sub_node, InlineFragmentNode):
for sub_sub_node in sub_node.selection_set.selections:
if isinstance(sub_sub_node, FieldNode):
sub_sub_node_type = client_schema.get_type(
sub_node.type_condition.name.value
)
if sub_sub_node.name.value == "__typename":
continue
field_type = sub_sub_node_type.fields[sub_sub_node.name.value]
recurse_find_references(
sub_sub_node,
field_type.type,
client_schema,
registry,
)
elif isinstance(graphql_type, GraphQLObjectType):
for sub_node in node.selection_set.selections:
if isinstance(sub_node, FieldNode):
if sub_node.name.value == "__typename":
continue
field_type = graphql_type.fields[sub_node.name.value]
recurse_find_references(
sub_node,
field_type.type,
client_schema,
registry,
)
if isinstance(sub_node, FragmentSpreadNode):
registry.register_fragment(sub_node.name.value)
if isinstance(sub_node, InlineFragmentNode):
for sub_sub_node in sub_node.selection_set.selections:
if isinstance(sub_sub_node, FieldNode):
sub_sub_node_type = client_schema.get_type(
sub_node.type_condition.name.value
)
if sub_sub_node.name.value == "__typename":
continue
field_type = sub_sub_node_type.fields[sub_sub_node.name.value]
recurse_find_references(
sub_sub_node,
field_type.type,
client_schema,
registry,
)
elif isinstance(graphql_type, GraphQLScalarType):
registry.register_scalar(graphql_type.name)
elif isinstance(graphql_type, GraphQLEnumType):
registry.register_enum(graphql_type.name)
elif isinstance(graphql_type, GraphQLNonNull):
recurse_find_references(
node,
graphql_type.of_type,
client_schema,
registry,
is_optional=False,
)
elif isinstance(graphql_type, GraphQLList):
recurse_find_references(
node,
graphql_type.of_type,
client_schema,
registry,
is_optional=False,
)
else:
raise Exception("Unknown Type", type(graphql_type), graphql_type)
def recurse_type_annotation(
graphql_type: NamedTypeNode,
schema: GraphQLSchema,
registry: ReferenceRegistry,
optional=True,
):
if isinstance(graphql_type, NonNullTypeNode):
return recurse_type_annotation(
graphql_type.type, schema, registry, optional=False
)
elif isinstance(graphql_type, ListTypeNode):
recurse_type_annotation(graphql_type.type, schema, registry)
elif isinstance(graphql_type, NamedTypeNode):
z = schema.get_type(graphql_type.name.value)
print(z)
if isinstance(z, GraphQLScalarType):
registry.register_scalar(z.name)
elif isinstance(z, GraphQLInputObjectType):
registry.register_input(z.name)
elif isinstance(z, GraphQLEnumType):
registry.register_enum(z.name)
else:
raise Exception("Unknown Subtype", type(graphql_type), graphql_type)
else:
raise Exception("Unknown Type", type(graphql_type), graphql_type)
def create_reference_registry_from_documents(
schema: GraphQLSchema, document: DocumentNode
) -> ReferenceRegistry:
"""Finds all references of types of types that are used in the documents"""
fragments: Dict[str, FragmentDefinitionNode] = {}
operations: Dict[str, OperationDefinitionNode] = {}
registry = ReferenceRegistry()
for definition in document.definitions:
if isinstance(definition, FragmentDefinitionNode):
fragments[definition.name.value] = definition
if isinstance(definition, OperationDefinitionNode):
operations[definition.name.value] = definition
for fragment in fragments.values():
type = schema.get_type(fragment.type_condition.name.value)
for selection in fragment.selection_set.selections:
if isinstance(selection, FieldNode):
# definition
if selection.name.value == "__typename":
continue
this_type = type.fields[selection.name.value]
recurse_find_references(
selection,
this_type.type,
schema,
registry,
)
for operation in operations.values():
type = schema.get_root_type(operation.operation)
for argument in operation.variable_definitions:
recurse_type_annotation(argument.type, schema, registry)
for selection in operation.selection_set.selections:
if isinstance(selection, FieldNode):
# definition
if selection.name.value == "__typename":
continue
this_type = type.fields[selection.name.value]
recurse_find_references(
selection,
this_type.type,
schema,
registry,
)
return registry
schema = build_schema_from_schema_type(build_relative_glob("/schemas/arkitekt.graphql"))
documents = parse_documents(schema, "tests/documents/arkitekt/*/**.graphql")
registry = create_reference_registry_from_documents(schema, documents)
print(registry.fragments)
print(registry.objects)
print(registry.enums)
print(registry.inputs)
print(registry.scalars)