-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathExecutor.php
414 lines (369 loc) · 11.3 KB
/
Executor.php
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
<?php
namespace Drupal\graphql\GraphQL\Execution;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Cache\Context\CacheContextsManager;
use Drupal\graphql\Event\OperationEvent;
use Drupal\graphql\GraphQL\Execution\ExecutionResult as CacheableExecutionResult;
use Drupal\graphql\GraphQL\Utility\DocumentSerializer;
use GraphQL\Executor\ExecutionResult;
use GraphQL\Executor\ExecutorImplementation;
use GraphQL\Executor\Promise\Promise;
use GraphQL\Executor\Promise\PromiseAdapter;
use GraphQL\Executor\ReferenceExecutor;
use GraphQL\Language\AST\DocumentNode;
use GraphQL\Type\Schema;
use GraphQL\Utils\AST;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\HttpFoundation\RequestStack;
/**
* Executes GraphQL queries with cache lookup.
*/
class Executor implements ExecutorImplementation {
/**
* The schema plugin manager.
*
* @var \Drupal\graphql\Plugin\SchemaPluginManager
*/
protected $pluginManager;
/**
* The cache backend for caching query results.
*
* @var \Drupal\Core\Cache\CacheBackendInterface
*/
protected $cacheBackend;
/**
* The cache contexts manager service.
*
* @var \Drupal\Core\Cache\Context\CacheContextsManager
*/
protected $contextsManager;
/**
* The request stack.
*
* @var \Symfony\Component\HttpFoundation\RequestStack
*/
protected $requestStack;
/**
* The event dispatcher.
*
* @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
protected $dispatcher;
/**
* The adapter for promises.
*
* @var \GraphQL\Executor\Promise\PromiseAdapter
*/
protected $adapter;
/**
* Represents the GraphQL schema document.
*
* @var \GraphQL\Language\AST\DocumentNode
*/
protected $document;
/**
* The context to pass down during field resolving.
*
* @var \Drupal\graphql\GraphQL\Execution\ResolveContext
*/
protected $context;
/**
* The root of the GraphQL execution tree.
*
* @var mixed
*/
protected $root;
/**
* Variables.
*
* @var array
*/
protected $variables;
/**
* The parsed GraphQL schema.
*
* @var \GraphQL\Type\Schema
*/
protected $schema;
/**
* The operation to be performed.
*
* @var string
*/
protected $operation;
/**
* The resolver to get results for the query.
*
* @var callable
*/
protected $resolver;
/**
* Executor constructor.
*
* @param \Drupal\Core\Cache\Context\CacheContextsManager $contextsManager
* The cache contexts manager service.
* @param \Drupal\Core\Cache\CacheBackendInterface $cacheBackend
* The cache backend for caching query results.
* @param \Symfony\Component\HttpFoundation\RequestStack $requestStack
* The request stack.
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
* The event dispatcher.
* @param \GraphQL\Executor\Promise\PromiseAdapter $adapter
* @param \GraphQL\Type\Schema $schema
* @param \GraphQL\Language\AST\DocumentNode $document
* @param \Drupal\graphql\GraphQL\Execution\ResolveContext $context
* @param mixed $root
* @param mixed $variables
* @param string $operation
* @param callable $resolver
*/
public function __construct(
CacheContextsManager $contextsManager,
CacheBackendInterface $cacheBackend,
RequestStack $requestStack,
EventDispatcherInterface $dispatcher,
PromiseAdapter $adapter,
Schema $schema,
DocumentNode $document,
ResolveContext $context,
$root,
$variables,
$operation,
callable $resolver
) {
$this->contextsManager = $contextsManager;
$this->cacheBackend = $cacheBackend;
$this->requestStack = $requestStack;
$this->dispatcher = $dispatcher;
$this->adapter = $adapter;
$this->document = $document;
$this->context = $context;
$this->root = $root;
$this->variables = $variables;
$this->schema = $schema;
$this->operation = $operation;
$this->resolver = $resolver;
}
/**
* Constructs an object from a services container.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* @param \GraphQL\Executor\Promise\PromiseAdapter $adapter
* @param \GraphQL\Type\Schema $schema
* @param \GraphQL\Language\AST\DocumentNode $document
* @param \Drupal\graphql\GraphQL\Execution\ResolveContext $context
* @param mixed $root
* @param mixed $variables
* @param string $operation
* @param callable $resolver
*
* @return \Drupal\graphql\GraphQL\Execution\Executor
*/
public static function create(
ContainerInterface $container,
PromiseAdapter $adapter,
Schema $schema,
DocumentNode $document,
ResolveContext $context,
$root,
$variables,
$operation,
callable $resolver
) {
return new static(
$container->get('cache_contexts_manager'),
$container->get('cache.graphql.results'),
$container->get('request_stack'),
$container->get('event_dispatcher'),
$adapter,
$schema,
$document,
$context,
$root,
$variables,
$operation,
$resolver
);
}
/**
* {@inheritdoc}
*/
public function doExecute(): Promise {
$event = new OperationEvent($this->context);
$this->dispatcher->dispatch(OperationEvent::GRAPHQL_OPERATION_BEFORE, $event);
$server = $this->context->getServer();
$operation_def = AST::getOperationAST($this->document, $this->operation);
if ($operation_def && $operation_def->operation === 'query' && !!$server->get('caching')) {
$result = $this->doExecuteCached($this->cachePrefix());
}
else {
// This operation can never be cached because we are either in development
// mode (caching is disabled) or this is a non-cacheable operation.
$result = $this->doExecuteUncached()->then(function ($result) {
$this->context->mergeCacheMaxAge(0);
$result = new CacheableExecutionResult($result->data, $result->errors, $result->extensions);
$result->addCacheableDependency($this->context);
return $result;
});
}
return $result->then(function ($result) {
$event = new OperationEvent($this->context, $result);
$this->dispatcher->dispatch(OperationEvent::GRAPHQL_OPERATION_AFTER, $event);
return $result;
});
}
/**
* Try to return cached results, otherwise resolve the query.
*
* @param string $prefix
*
* @return \GraphQL\Executor\Promise\Promise
*/
protected function doExecuteCached($prefix) {
if ($result = $this->cacheRead($prefix)) {
return $this->adapter->createFulfilled($result);
}
return $this->doExecuteUncached()->then(function (ExecutionResult $result) use ($prefix) {
if (!empty($result->errors)) {
$this->context->mergeCacheMaxAge(0);
}
$result = new CacheableExecutionResult($result->data, $result->errors, $result->extensions);
$result->addCacheableDependency($this->context);
if ($result->getCacheMaxAge() !== 0) {
$this->cacheWrite($prefix, $result);
}
return $result;
});
}
/**
* Get query results on a cache miss.
*
* @return \GraphQL\Executor\Promise\Promise
*/
protected function doExecuteUncached() {
$executor = ReferenceExecutor::create(
$this->adapter,
$this->schema,
$this->document,
$this->root,
$this->context,
$this->variables,
$this->operation,
$this->resolver
);
$event = new OperationEvent($this->context);
$this->dispatcher->dispatch(OperationEvent::GRAPHQL_OPERATION_BEFORE, $event);
return $executor->doExecute()->then(function ($result) {
$event = new OperationEvent($this->context, $result);
$this->dispatcher->dispatch(OperationEvent::GRAPHQL_OPERATION_AFTER, $event);
return $result;
});
}
/**
* Calculates the cache prefix from context for the current query.
*
* @return string
*/
protected function cachePrefix() {
// Sorting the variables and extensions will cause fewer cache vectors.
// @todo Should we try to sort these recursively?
$variables = $this->variables ?: [];
ksort($variables);
// @todo Should we submit a pull request to also pass the extensions in the
// executor?
$extensions = $this->context->getOperation()->extensions ?: [];
ksort($extensions);
// By firing the operation event before executing the operation and before
// reading from the cache different contexts might be set to control the
// caching and make it possible to cache e.g. by country.
$contexts = $this->context->getCacheContexts();
$keys = $this->contextsManager->convertTokensToKeys($contexts)->getKeys();
$hash = hash('sha256', serialize([
'query' => DocumentSerializer::serializeDocument($this->document),
'variables' => $variables,
'extensions' => $extensions,
'keys' => $keys,
]));
return $hash;
}
/**
* Calculate the cache suffix for the current contexts.
*
* @param array $contexts
*
* @return string
*/
protected function cacheSuffix(array $contexts = []) {
$keys = $this->contextsManager->convertTokensToKeys($contexts)->getKeys();
return hash('sha256', serialize($keys));
}
/**
* Lookup cached results by contexts for this query.
*
* @param string $prefix
*
* @return \GraphQL\Executor\ExecutionResult|null
*/
protected function cacheRead($prefix) {
if (($cache = $this->cacheBackend->get("contexts:$prefix"))) {
$suffix = $this->cacheSuffix($cache->data ?? []);
if (($cache = $this->cacheBackend->get("result:$prefix:$suffix"))) {
$result = new CacheableExecutionResult($cache->data['data'], [], $cache->data['extensions']);
$result->addCacheableDependency($cache->data['metadata']);
return $result;
}
}
return NULL;
}
/**
* Store results in cache.
*
* @param string $prefix
* @param \Drupal\graphql\GraphQL\Execution\ExecutionResult $result
*
* @return \Drupal\graphql\GraphQL\Execution\Executor
*/
protected function cacheWrite($prefix, CacheableExecutionResult $result) {
$contexts = $result->getCacheContexts();
$expire = $this->maxAgeToExpire($result->getCacheMaxAge());
$tags = $result->getCacheTags();
$suffix = $this->cacheSuffix($contexts);
$metadata = new CacheableMetadata();
$metadata->addCacheableDependency($result);
$cache = [
'data' => $result->data,
'extensions' => $result->extensions,
'metadata' => $metadata,
];
$this->cacheBackend->setMultiple([
"contexts:$prefix" => [
'data' => $contexts,
'expire' => $expire,
'tags' => $tags,
],
"result:$prefix:$suffix" => [
'data' => $cache,
'expire' => $expire,
'tags' => $tags,
],
]);
return $this;
}
/**
* Maps a cache max age value to an "expire" value for the Cache API.
*
* @param int $maxAge
*
* @return int
* A corresponding "expire" value.
*
* @see \Drupal\Core\Cache\CacheBackendInterface::set()
*/
protected function maxAgeToExpire($maxAge) {
$time = $this->requestStack->getMasterRequest()->server->get('REQUEST_TIME');
return ($maxAge === Cache::PERMANENT) ? Cache::PERMANENT : (int) $time + $maxAge;
}
}