-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathrunner.rb
More file actions
411 lines (376 loc) · 16.7 KB
/
runner.rb
File metadata and controls
411 lines (376 loc) · 16.7 KB
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
# frozen_string_literal: true
module GraphQL
module Execution
module Next
class Runner
def initialize(multiplex, authorization:)
@multiplex = multiplex
@schema = multiplex.schema
@steps_queue = []
@runtime_type_at = {}.compare_by_identity
@static_type_at = {}.compare_by_identity
@selected_operation = nil
@dataloader = multiplex.context[:dataloader] ||= @schema.dataloader_class.new
@resolves_lazies = @schema.resolves_lazies?
@lazy_cache = resolves_lazies ? {}.compare_by_identity : nil
@field_resolve_step_class = @schema.uses_raw_value? ? RawValueFieldResolveStep : FieldResolveStep
@authorization = authorization
if @authorization
@authorizes_cache = Hash.new do |h, query_context|
h[query_context] = {}.compare_by_identity
end.compare_by_identity
end
end
def resolve_type(type, object, query)
query.current_trace.begin_resolve_type(type, object, query.context)
resolved_type, _ignored_new_value = query.resolve_type(type, object)
query.current_trace.end_resolve_type(type, object, query.context, resolved_type)
resolved_type
end
def authorizes?(graphql_definition, query_context)
auth_cache = @authorizes_cache[query_context]
case (auth_res = auth_cache[graphql_definition])
when nil
auth_cache[graphql_definition] = graphql_definition.authorizes?(query_context)
else
auth_res
end
end
def add_step(step)
@dataloader.append_job(step)
end
attr_reader :authorization, :steps_queue, :schema, :variables, :dataloader, :resolves_lazies, :authorizes, :static_type_at, :runtime_type_at
def execute
Fiber[:__graphql_current_multiplex] = @multiplex
isolated_steps = [[]]
trace = @multiplex.current_trace
queries = @multiplex.queries
multiplex_analyzers = @schema.multiplex_analyzers
if @multiplex.max_complexity
multiplex_analyzers += [GraphQL::Analysis::MaxQueryComplexity]
end
trace.execute_multiplex(multiplex: @multiplex) do
trace.begin_analyze_multiplex(@multiplex, multiplex_analyzers)
@schema.analysis_engine.analyze_multiplex(@multiplex, multiplex_analyzers)
trace.end_analyze_multiplex(@multiplex, multiplex_analyzers)
results = []
queries.each do |query|
if query.validate && !query.valid?
results << {
"errors" => query.static_errors.map(&:to_h)
}
next
end
selected_operation = query.document.definitions.first # TODO select named operation
data = {}
root_type = case selected_operation.operation_type
when nil, "query"
@schema.query
when "mutation"
@schema.mutation
when "subscription"
@schema.subscription
else
raise ArgumentError, "Unknown operation type: #{selected_operation.operation_type.inspect}"
end
if self.authorization && authorizes?(root_type, query.context)
query.current_trace.begin_authorized(root_type, query.root_value, query.context)
auth_check = schema.sync_lazy(root_type.authorized?(query.root_value, query.context))
query.current_trace.end_authorized(root_type, query.root_value, query.context, auth_check)
root_value = if auth_check
query.root_value
else
begin
auth_err = GraphQL::UnauthorizedError.new(object: query.root_value, type: root_type, context: query.context)
new_val = schema.unauthorized_object(auth_err)
if new_val
auth_check = true
end
new_val
rescue GraphQL::ExecutionError => ex_err
# The old runtime didn't add path and ast_nodes to this
query.context.add_error(ex_err)
nil
end
end
if !auth_check
results << {}
next
end
else
root_value = query.root_value
end
results << { "data" => data }
case selected_operation.operation_type
when nil, "query"
isolated_steps[0] << SelectionsStep.new(
parent_type: root_type,
selections: selected_operation.selections,
objects: [root_value],
results: [data],
path: EmptyObjects::EMPTY_ARRAY,
runner: self,
query: query,
)
when "mutation"
fields = {}
gather_selections(root_type, selected_operation.selections, nil, query, {}, into: fields)
fields.each_value do |field_resolve_step|
isolated_steps << [SelectionsStep.new(
parent_type: root_type,
selections: field_resolve_step.ast_nodes || Array(field_resolve_step.ast_node),
objects: [root_value],
results: [data],
path: EmptyObjects::EMPTY_ARRAY,
runner: self,
query: query,
)]
end
when "subscription"
if !query.subscription_update?
schema.subscriptions.initialize_subscriptions(query)
end
isolated_steps[0] << SelectionsStep.new(
parent_type: root_type,
selections: selected_operation.selections,
objects: [root_value],
results: [data],
path: EmptyObjects::EMPTY_ARRAY,
runner: self,
query: query,
)
else
raise ArgumentError, "Unhandled operation type: #{operation.operation_type.inspect}"
end
@static_type_at[data] = root_type
# TODO This is stupid but makes multiplex_spec.rb pass
trace.execute_query(query: query) do
end
end
while (next_isolated_steps = isolated_steps.shift)
next_isolated_steps.each do |step|
add_step(step)
end
@dataloader.run
end
# TODO This is stupid but makes multiplex_spec.rb pass
trace.execute_query_lazy(query: nil, multiplex: @multiplex) do
end
queries.each_with_index.map do |query, idx|
result = results[idx]
if query.subscription?
@schema.subscriptions.finish_subscriptions(query)
end
fin_result = if query.context.errors.empty?
result
else
data = result["data"]
data = propagate_errors(data, query)
errors = []
query.context.errors.each do |err|
if err.respond_to?(:to_h)
errors << err.to_h
end
end
res_h = {}
if !errors.empty?
res_h["errors"] = errors
end
res_h["data"] = data
res_h
end
query.result_values = fin_result
query.result
end
end
ensure
Fiber[:__graphql_current_multiplex] = nil
end
def gather_selections(type_defn, ast_selections, selections_step, query, prototype_result, into:)
ast_selections.each do |ast_selection|
next if !directives_include?(query, ast_selection)
case ast_selection
when GraphQL::Language::Nodes::Field
key = ast_selection.alias || ast_selection.name
step = into[key] ||= begin
prototype_result[key] = nil
@field_resolve_step_class.new(
selections_step: selections_step,
key: key,
parent_type: type_defn,
runner: self,
)
end
step.append_selection(ast_selection)
when GraphQL::Language::Nodes::InlineFragment
type_condition = ast_selection.type&.name
if type_condition.nil? || type_condition_applies?(query.context, type_defn, type_condition)
gather_selections(type_defn, ast_selection.selections, selections_step, query, prototype_result, into: into)
end
when GraphQL::Language::Nodes::FragmentSpread
fragment_definition = query.document.definitions.find { |defn| defn.is_a?(GraphQL::Language::Nodes::FragmentDefinition) && defn.name == ast_selection.name }
type_condition = fragment_definition.type.name
if type_condition_applies?(query.context, type_defn, type_condition)
gather_selections(type_defn, fragment_definition.selections, selections_step, query, prototype_result, into: into)
end
else
raise ArgumentError, "Unsupported graphql selection node: #{ast_selection.class} (#{ast_selection.inspect})"
end
end
end
def lazy?(object)
obj_class = object.class
is_lazy = @lazy_cache[obj_class]
if is_lazy.nil?
is_lazy = @lazy_cache[obj_class] = @schema.lazy?(object)
end
is_lazy
end
private
def propagate_errors(data, query)
paths_to_check = query.context.errors.map(&:path)
paths_to_check.compact! # root-level auth errors currently come without a path
# TODO dry with above?
# This is also where a query-level "Step" would be used?
if (selected_operation = query.selected_operation)
root_type = case selected_operation.operation_type
when nil, "query"
query.schema.query
when "mutation"
query.schema.mutation
when "subscription"
query.schema.subscription
end
check_object_result(query, data, root_type, selected_operation.selections, [], [], paths_to_check)
end
end
def check_object_result(query, result_h, static_type, ast_selections, current_exec_path, current_result_path, paths_to_check)
current_path_len = current_exec_path.length
ast_selections.each do |ast_selection|
case ast_selection
when Language::Nodes::Field
begin
key = ast_selection.alias || ast_selection.name
current_exec_path << key
current_result_path << key
if paths_to_check.any? { |path_to_check| path_to_check[current_path_len] == key }
result_value = result_h[key]
field_defn = query.context.types.field(static_type, ast_selection.name)
result_type = field_defn.type
if (result_type_non_null = result_type.non_null?)
result_type = result_type.of_type
end
new_result_value = if result_value.is_a?(GraphQL::Error)
result_value.path = current_result_path.dup
result_value.assign_graphql_result(query, result_h, key)
result_h.key?(key) ? result_h[key] : :unassigned
else
if result_type.list?
check_list_result(query, result_value, result_type.of_type, ast_selection.selections, current_exec_path, current_result_path, paths_to_check)
elsif !result_type.kind.leaf?
check_object_result(query, result_value, result_type, ast_selection.selections, current_exec_path, current_result_path, paths_to_check)
else
result_value
end
end
if new_result_value.nil? && result_type_non_null
return nil
elsif :unassigned.equal?(new_result_value)
# Do nothing
elsif !new_result_value.equal?(result_value)
result_h[key] = new_result_value
end
end
ensure
current_exec_path.pop
current_result_path.pop
end
when Language::Nodes::InlineFragment
static_type_at_result = @static_type_at[result_h]
if static_type_at_result && type_condition_applies?(query.context, static_type_at_result, ast_selection.type.name)
result_h = check_object_result(query, result_h, static_type, ast_selection.selections, current_exec_path, current_result_path, paths_to_check)
end
when Language::Nodes::FragmentSpread
fragment_defn = query.document.definitions.find { |defn| defn.is_a?(Language::Nodes::FragmentDefinition) && defn.name == ast_selection.name }
static_type_at_result = @static_type_at[result_h]
if static_type_at_result && type_condition_applies?(query.context, static_type_at_result, fragment_defn.type.name)
result_h = check_object_result(query, result_h, static_type, fragment_defn.selections, current_exec_path, current_result_path, paths_to_check)
end
end
end
result_h
end
def check_list_result(query, result_arr, inner_type, ast_selections, current_exec_path, current_result_path, paths_to_check)
inner_type_non_null = false
if inner_type.non_null?
inner_type_non_null = true
inner_type = inner_type.of_type
end
new_invalid_null = false
result_arr.each_with_index do |result_item, idx|
current_result_path << idx
new_result = if result_item.is_a?(GraphQL::Error)
result_item.path = current_result_path.dup
result_item.assign_graphql_result(query, result_arr, idx)
result_arr[idx]
elsif inner_type.list?
check_list_result(query, result_item, inner_type.of_type, ast_selections, current_exec_path, current_result_path, paths_to_check)
elsif !inner_type.kind.leaf?
check_object_result(query, result_item, inner_type, ast_selections, current_exec_path, current_result_path, paths_to_check)
else
result_item
end
if new_result.nil? && inner_type_non_null
new_invalid_null = true
result_arr[idx] = nil
elsif !new_result.equal?(result_item)
result_arr[idx] = new_result
end
ensure
current_result_path.pop
end
if new_invalid_null
nil
else
result_arr
end
end
def dir_arg_value(query, arg_node)
if arg_node.value.is_a?(Language::Nodes::VariableIdentifier)
var_key = arg_node.value.name
if query.variables.key?(var_key)
query.variables[var_key]
else
query.variables[var_key.to_sym]
end
else
arg_node.value
end
end
def directives_include?(query, ast_selection)
if ast_selection.directives.any? { |dir_node|
if dir_node.name == "skip"
dir_node.arguments.any? { |arg_node| arg_node.name == "if" && dir_arg_value(query, arg_node) == true } # rubocop:disable Development/ContextIsPassedCop
elsif dir_node.name == "include"
dir_node.arguments.any? { |arg_node| arg_node.name == "if" && dir_arg_value(query, arg_node) == false } # rubocop:disable Development/ContextIsPassedCop
end
}
false
else
true
end
end
def type_condition_applies?(context, concrete_type, type_name)
if type_name == concrete_type.graphql_name
true
else
abs_t = @schema.get_type(type_name, context)
p_types = @schema.possible_types(abs_t, context)
c_p_types = @schema.possible_types(concrete_type, context)
p_types.any? { |t| c_p_types.include?(t) }
end
end
end
end
end
end