-
Notifications
You must be signed in to change notification settings - Fork 272
/
fetch.rs
728 lines (653 loc) · 26.7 KB
/
fetch.rs
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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
use std::collections::HashMap;
use std::fmt::Display;
use std::sync::Arc;
use apollo_compiler::ast;
use apollo_compiler::validation::Valid;
use apollo_compiler::ExecutableDocument;
use indexmap::IndexSet;
use serde::Deserialize;
use serde::Serialize;
use tower::ServiceExt;
use tracing::instrument;
use tracing::Instrument;
use super::execution::ExecutionParameters;
use super::rewrites;
use super::selection::execute_selection_set;
use super::selection::Selection;
use super::subgraph_context::build_operation_with_aliasing;
use super::subgraph_context::ContextualArguments;
use super::subgraph_context::SubgraphContext;
use crate::error::Error;
use crate::error::FetchError;
use crate::error::ValidationErrors;
use crate::graphql;
use crate::graphql::Request;
use crate::http_ext;
use crate::json_ext;
use crate::json_ext::Object;
use crate::json_ext::Path;
use crate::json_ext::Value;
use crate::json_ext::ValueExt;
use crate::plugins::authorization::AuthorizationPlugin;
use crate::plugins::authorization::CacheKeyMetadata;
use crate::services::SubgraphRequest;
use crate::spec::query::change::QueryHashVisitor;
use crate::spec::Schema;
/// GraphQL operation type.
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq, Hash, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
#[cfg_attr(test, derive(schemars::JsonSchema))]
pub enum OperationKind {
#[default]
Query,
Mutation,
Subscription,
}
impl Display for OperationKind {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.default_type_name())
}
}
impl OperationKind {
pub(crate) const fn default_type_name(&self) -> &'static str {
match self {
OperationKind::Query => "Query",
OperationKind::Mutation => "Mutation",
OperationKind::Subscription => "Subscription",
}
}
/// Only for apollo studio exporter
pub(crate) const fn as_apollo_operation_type(&self) -> &'static str {
match self {
OperationKind::Query => "query",
OperationKind::Mutation => "mutation",
OperationKind::Subscription => "subscription",
}
}
}
impl From<OperationKind> for ast::OperationType {
fn from(value: OperationKind) -> Self {
match value {
OperationKind::Query => ast::OperationType::Query,
OperationKind::Mutation => ast::OperationType::Mutation,
OperationKind::Subscription => ast::OperationType::Subscription,
}
}
}
impl From<ast::OperationType> for OperationKind {
fn from(value: ast::OperationType) -> Self {
match value {
ast::OperationType::Query => OperationKind::Query,
ast::OperationType::Mutation => OperationKind::Mutation,
ast::OperationType::Subscription => OperationKind::Subscription,
}
}
}
pub(crate) type SubgraphSchemas = HashMap<String, Arc<Valid<apollo_compiler::Schema>>>;
/// A fetch node.
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct FetchNode {
/// The name of the service or subgraph that the fetch is querying.
pub(crate) service_name: Arc<str>,
/// The data that is required for the subgraph fetch.
#[serde(skip_serializing_if = "Vec::is_empty")]
#[serde(default)]
pub(crate) requires: Vec<Selection>,
/// The variables that are used for the subgraph fetch.
pub(crate) variable_usages: Vec<Arc<str>>,
/// The GraphQL subquery that is used for the fetch.
pub(crate) operation: SubgraphOperation,
/// The GraphQL subquery operation name.
pub(crate) operation_name: Option<Arc<str>>,
/// The GraphQL operation kind that is used for the fetch.
pub(crate) operation_kind: OperationKind,
/// Optional id used by Deferred nodes
pub(crate) id: Option<String>,
// Optionally describes a number of "rewrites" that query plan executors should apply to the data that is sent as input of this fetch.
pub(crate) input_rewrites: Option<Vec<rewrites::DataRewrite>>,
// Optionally describes a number of "rewrites" to apply to the data that received from a fetch (and before it is applied to the current in-memory results).
pub(crate) output_rewrites: Option<Vec<rewrites::DataRewrite>>,
// Optionally describes a number of "rewrites" to apply to the data that has already been received further up the tree
pub(crate) context_rewrites: Option<Vec<rewrites::DataRewrite>>,
// hash for the query and relevant parts of the schema. if two different schemas provide the exact same types, fields and directives
// affecting the query, then they will have the same hash
#[serde(default)]
pub(crate) schema_aware_hash: Arc<QueryHash>,
// authorization metadata for the subgraph query
#[serde(default)]
pub(crate) authorization: Arc<CacheKeyMetadata>,
}
#[derive(Clone)]
pub(crate) struct SubgraphOperation {
serialized: String,
/// Ideally this would be always present, but we don’t have access to the subgraph schemas
/// during `Deserialize`.
parsed: Option<Arc<Valid<ExecutableDocument>>>,
}
impl SubgraphOperation {
pub(crate) fn from_string(serialized: impl Into<String>) -> Self {
Self {
serialized: serialized.into(),
parsed: None,
}
}
pub(crate) fn from_parsed(parsed: impl Into<Arc<Valid<ExecutableDocument>>>) -> Self {
let parsed = parsed.into();
Self {
serialized: parsed.serialize().no_indent().to_string(),
parsed: Some(parsed),
}
}
pub(crate) fn as_serialized(&self) -> &str {
&self.serialized
}
pub(crate) fn init_parsed(
&mut self,
subgraph_schema: &Valid<apollo_compiler::Schema>,
) -> Result<&Arc<Valid<ExecutableDocument>>, ValidationErrors> {
match &mut self.parsed {
Some(parsed) => Ok(parsed),
option => {
let parsed = Arc::new(ExecutableDocument::parse_and_validate(
subgraph_schema,
&self.serialized,
"operation.graphql",
)?);
Ok(option.insert(parsed))
}
}
}
pub(crate) fn as_parsed(
&self,
) -> Result<&Arc<Valid<ExecutableDocument>>, SubgraphOperationNotInitialized> {
self.parsed.as_ref().ok_or(SubgraphOperationNotInitialized)
}
}
/// Failed to call `SubgraphOperation::init_parsed` after creating a query plan
#[derive(Debug, displaydoc::Display, thiserror::Error)]
pub(crate) struct SubgraphOperationNotInitialized;
impl SubgraphOperationNotInitialized {
pub(crate) fn into_graphql_errors(self) -> Vec<Error> {
vec![graphql::Error::builder()
.extension_code(self.code())
.message(self.to_string())
.build()]
}
pub(crate) fn code(&self) -> &'static str {
"SUBGRAPH_OPERATION_NOT_INITIALIZED"
}
}
impl Serialize for SubgraphOperation {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
self.as_serialized().serialize(serializer)
}
}
impl<'de> Deserialize<'de> for SubgraphOperation {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
Ok(Self::from_string(String::deserialize(deserializer)?))
}
}
impl PartialEq for SubgraphOperation {
fn eq(&self, other: &Self) -> bool {
self.as_serialized() == other.as_serialized()
}
}
impl std::fmt::Debug for SubgraphOperation {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
std::fmt::Debug::fmt(self.as_serialized(), f)
}
}
impl std::fmt::Display for SubgraphOperation {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
std::fmt::Display::fmt(self.as_serialized(), f)
}
}
#[derive(Clone, Default, Hash, PartialEq, Eq, Deserialize, Serialize)]
pub(crate) struct QueryHash(#[serde(with = "hex")] pub(crate) Vec<u8>);
impl std::fmt::Debug for QueryHash {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_tuple("QueryHash")
.field(&hex::encode(&self.0))
.finish()
}
}
impl Display for QueryHash {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", hex::encode(&self.0))
}
}
pub(crate) struct Variables {
pub(crate) variables: Object,
pub(crate) inverted_paths: Vec<Vec<Path>>,
pub(crate) contextual_arguments: Option<ContextualArguments>,
}
impl Variables {
#[instrument(skip_all, level = "debug", name = "make_variables")]
#[allow(clippy::too_many_arguments)]
pub(super) fn new(
requires: &[Selection],
variable_usages: &[Arc<str>],
data: &Value,
current_dir: &Path,
request: &Arc<http::Request<Request>>,
schema: &Schema,
input_rewrites: &Option<Vec<rewrites::DataRewrite>>,
context_rewrites: &Option<Vec<rewrites::DataRewrite>>,
) -> Option<Variables> {
let body = request.body();
let mut subgraph_context = SubgraphContext::new(data, schema, context_rewrites);
if !requires.is_empty() {
let mut variables = Object::with_capacity(1 + variable_usages.len());
variables.extend(variable_usages.iter().filter_map(|key| {
body.variables
.get_key_value(key.as_ref())
.map(|(variable_key, value)| (variable_key.clone(), value.clone()))
}));
let mut inverted_paths: Vec<Vec<Path>> = Vec::new();
let mut values: IndexSet<Value> = IndexSet::default();
data.select_values_and_paths(schema, current_dir, |path, value| {
// first get contextual values that are required
if let Some(context) = subgraph_context.as_mut() {
context.execute_on_path(path);
}
let mut value = execute_selection_set(value, requires, schema, None);
if value.as_object().map(|o| !o.is_empty()).unwrap_or(false) {
rewrites::apply_rewrites(schema, &mut value, input_rewrites);
match values.get_index_of(&value) {
Some(index) => {
inverted_paths[index].push(path.clone());
}
None => {
inverted_paths.push(vec![path.clone()]);
values.insert(value);
debug_assert!(inverted_paths.len() == values.len());
}
}
}
});
if values.is_empty() {
return None;
}
let representations = Value::Array(Vec::from_iter(values));
let contextual_arguments = match subgraph_context.as_mut() {
Some(context) => context.add_variables_and_get_args(&mut variables),
None => None,
};
variables.insert("representations", representations);
Some(Variables {
variables,
inverted_paths,
contextual_arguments,
})
} else {
// with nested operations (Query or Mutation has an operation returning a Query or Mutation),
// when the first fetch fails, the query plan will still execute up until the second fetch,
// where `requires` is empty (not a federated fetch), the current dir is not emmpty (child of
// the previous operation field) and the data is null. In that case, we recognize that we
// should not perform the next fetch
if !current_dir.is_empty()
&& data
.get_path(schema, current_dir)
.map(|value| value.is_null())
.unwrap_or(true)
{
return None;
}
Some(Variables {
variables: variable_usages
.iter()
.filter_map(|key| {
body.variables
.get_key_value(key.as_ref())
.map(|(variable_key, value)| (variable_key.clone(), value.clone()))
})
.collect::<Object>(),
inverted_paths: Vec::new(),
contextual_arguments: None,
})
}
}
}
impl FetchNode {
#[allow(clippy::too_many_arguments)]
pub(crate) async fn fetch_node<'a>(
&'a self,
parameters: &'a ExecutionParameters<'a>,
data: &'a Value,
current_dir: &'a Path,
) -> (Value, Vec<Error>) {
let FetchNode {
operation,
operation_kind,
operation_name,
service_name,
..
} = self;
let Variables {
variables,
inverted_paths: paths,
contextual_arguments,
} = match Variables::new(
&self.requires,
&self.variable_usages,
data,
current_dir,
// Needs the original request here
parameters.supergraph_request,
parameters.schema,
&self.input_rewrites,
&self.context_rewrites,
) {
Some(variables) => variables,
None => {
return (Value::Object(Object::default()), Vec::new());
}
};
let alias_query_string; // this exists outside the if block to allow the as_str() to be longer lived
let aliased_operation = if let Some(ctx_arg) = contextual_arguments {
if let Some(subgraph_schema) =
parameters.subgraph_schemas.get(&service_name.to_string())
{
match build_operation_with_aliasing(operation, &ctx_arg, subgraph_schema) {
Ok(op) => {
alias_query_string = op.serialize().no_indent().to_string();
alias_query_string.as_str()
}
Err(errors) => {
tracing::debug!(
"couldn't generate a valid executable document? {:?}",
errors
);
operation.as_serialized()
}
}
} else {
tracing::debug!(
"couldn't find a subgraph schema for service {:?}",
&service_name
);
operation.as_serialized()
}
} else {
operation.as_serialized()
};
let mut subgraph_request = SubgraphRequest::builder()
.supergraph_request(parameters.supergraph_request.clone())
.subgraph_request(
http_ext::Request::builder()
.method(http::Method::POST)
.uri(
parameters
.schema
.subgraph_url(service_name)
.unwrap_or_else(|| {
panic!(
"schema uri for subgraph '{service_name}' should already have been checked"
)
})
.clone(),
)
.body(
Request::builder()
.query(aliased_operation)
.and_operation_name(operation_name.as_ref().map(|n| n.to_string()))
.variables(variables.clone())
.build(),
)
.build()
.expect("it won't fail because the url is correct and already checked; qed"),
)
.subgraph_name(self.service_name.to_string())
.operation_kind(*operation_kind)
.context(parameters.context.clone())
.build();
subgraph_request.query_hash = self.schema_aware_hash.clone();
subgraph_request.authorization = self.authorization.clone();
let service = parameters
.service_factory
.create(service_name)
.expect("we already checked that the service exists during planning; qed");
let (_parts, response) = match service
.oneshot(subgraph_request)
.instrument(tracing::trace_span!("subfetch_stream"))
.await
// TODO this is a problem since it restores details about failed service
// when errors have been redacted in the include_subgraph_errors module.
// Unfortunately, not easy to fix here, because at this point we don't
// know if we should be redacting errors for this subgraph...
.map_err(|e| match e.downcast::<FetchError>() {
Ok(inner) => match *inner {
FetchError::SubrequestHttpError { .. } => *inner,
_ => FetchError::SubrequestHttpError {
status_code: None,
service: service_name.to_string(),
reason: inner.to_string(),
},
},
Err(e) => FetchError::SubrequestHttpError {
status_code: None,
service: service_name.to_string(),
reason: e.to_string(),
},
}) {
Err(e) => {
return (
Value::default(),
vec![e.to_graphql_error(Some(current_dir.to_owned()))],
);
}
Ok(res) => res.response.into_parts(),
};
super::log::trace_subfetch(
service_name,
operation.as_serialized(),
&variables,
&response,
);
if !response.is_primary() {
return (
Value::default(),
vec![FetchError::SubrequestUnexpectedPatchResponse {
service: service_name.to_string(),
}
.to_graphql_error(Some(current_dir.to_owned()))],
);
}
let (value, errors) =
self.response_at_path(parameters.schema, current_dir, paths, response);
if let Some(id) = &self.id {
if let Some(sender) = parameters.deferred_fetches.get(id.as_str()) {
tracing::info!(monotonic_counter.apollo.router.operations.defer.fetch = 1u64);
if let Err(e) = sender.clone().send((value.clone(), errors.clone())) {
tracing::error!("error sending fetch result at path {} and id {:?} for deferred response building: {}", current_dir, self.id, e);
}
}
}
(value, errors)
}
#[instrument(skip_all, level = "debug", name = "response_insert")]
fn response_at_path<'a>(
&'a self,
schema: &Schema,
current_dir: &'a Path,
inverted_paths: Vec<Vec<Path>>,
response: graphql::Response,
) -> (Value, Vec<Error>) {
if !self.requires.is_empty() {
let entities_path = Path(vec![json_ext::PathElement::Key(
"_entities".to_string(),
None,
)]);
let mut errors: Vec<Error> = vec![];
for mut error in response.errors {
// the locations correspond to the subgraph query and cannot be linked to locations
// in the client query, so we remove them
error.locations = Vec::new();
// errors with path should be updated to the path of the entity they target
if let Some(ref path) = error.path {
if path.starts_with(&entities_path) {
// the error's path has the format '/_entities/1/other' so we ignore the
// first element and then get the index
match path.0.get(1) {
Some(json_ext::PathElement::Index(i)) => {
for values_path in
inverted_paths.get(*i).iter().flat_map(|v| v.iter())
{
errors.push(Error {
locations: error.locations.clone(),
// append to the entitiy's path the error's path without
//`_entities` and the index
path: Some(Path::from_iter(
values_path.0.iter().chain(&path.0[2..]).cloned(),
)),
message: error.message.clone(),
extensions: error.extensions.clone(),
})
}
}
_ => {
error.path = Some(current_dir.clone());
errors.push(error)
}
}
} else {
error.path = Some(current_dir.clone());
errors.push(error);
}
} else {
error.path = Some(current_dir.clone());
errors.push(error);
}
}
// we have to nest conditions and do early returns here
// because we need to take ownership of the inner value
if let Some(Value::Object(mut map)) = response.data {
if let Some(entities) = map.remove("_entities") {
tracing::trace!("received entities: {:?}", &entities);
if let Value::Array(array) = entities {
let mut value = Value::default();
for (index, mut entity) in array.into_iter().enumerate() {
rewrites::apply_rewrites(schema, &mut entity, &self.output_rewrites);
if let Some(paths) = inverted_paths.get(index) {
if paths.len() > 1 {
for path in &paths[1..] {
let _ = value.insert(path, entity.clone());
}
}
if let Some(path) = paths.first() {
let _ = value.insert(path, entity);
}
}
}
return (value, errors);
}
}
}
// if we get here, it means that the response was missing the `_entities` key
// This can happen if the subgraph failed during query execution e.g. for permissions checks.
// In this case we should add an additional error because the subgraph should have returned an error that will be bubbled up to the client.
// However, if they have not then print a warning to the logs.
if errors.is_empty() {
tracing::warn!(
"Subgraph response from '{}' was missing key `_entities` and had no errors. This is likely a bug in the subgraph.",
self.service_name
);
}
(Value::Null, errors)
} else {
let current_slice =
if matches!(current_dir.last(), Some(&json_ext::PathElement::Flatten(_))) {
¤t_dir.0[..current_dir.0.len() - 1]
} else {
¤t_dir.0[..]
};
let errors: Vec<Error> = response
.errors
.into_iter()
.map(|error| {
let path = error
.path
.as_ref()
.map(|path| {
Path::from_iter(current_slice.iter().chain(path.iter()).cloned())
})
.unwrap_or_else(|| current_dir.clone());
Error {
locations: error.locations,
path: Some(path),
message: error.message,
extensions: error.extensions,
}
})
.collect();
let mut data = response.data.unwrap_or_default();
rewrites::apply_rewrites(schema, &mut data, &self.output_rewrites);
(Value::from_path(current_dir, data), errors)
}
}
#[cfg(test)]
pub(crate) fn service_name(&self) -> &str {
&self.service_name
}
pub(crate) fn operation_kind(&self) -> &OperationKind {
&self.operation_kind
}
pub(crate) fn init_parsed_operation(
&mut self,
subgraph_schemas: &SubgraphSchemas,
) -> Result<(), ValidationErrors> {
let schema = &subgraph_schemas[self.service_name.as_ref()];
self.operation.init_parsed(schema)?;
Ok(())
}
pub(crate) fn init_parsed_operation_and_hash_subquery(
&mut self,
subgraph_schemas: &SubgraphSchemas,
supergraph_schema_hash: &str,
) -> Result<(), ValidationErrors> {
let schema = &subgraph_schemas[self.service_name.as_ref()];
let doc = self.operation.init_parsed(schema)?;
if let Ok(hash) = QueryHashVisitor::hash_query(
schema,
supergraph_schema_hash,
doc,
self.operation_name.as_deref(),
) {
self.schema_aware_hash = Arc::new(QueryHash(hash));
}
Ok(())
}
pub(crate) fn extract_authorization_metadata(
&mut self,
schema: &Valid<apollo_compiler::Schema>,
global_authorisation_cache_key: &CacheKeyMetadata,
) {
let doc = ExecutableDocument::parse(
schema,
self.operation.as_serialized().to_string(),
"query.graphql",
)
// Assume query planing creates a valid document: ignore parse errors
.unwrap_or_else(|invalid| invalid.partial);
let subgraph_query_cache_key = AuthorizationPlugin::generate_cache_metadata(
&doc,
self.operation_name.as_deref(),
schema,
!self.requires.is_empty(),
);
// we need to intersect the cache keys because the global key already takes into account
// the scopes and policies from the client request
self.authorization = Arc::new(AuthorizationPlugin::intersect_cache_keys_subgraph(
global_authorisation_cache_key,
&subgraph_query_cache_key,
));
}
}