-
-
Notifications
You must be signed in to change notification settings - Fork 572
Expand file tree
/
Copy pathServerConfig.php
More file actions
347 lines (298 loc) · 8.54 KB
/
ServerConfig.php
File metadata and controls
347 lines (298 loc) · 8.54 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
<?php declare(strict_types=1);
namespace GraphQL\Server;
use GraphQL\Error\DebugFlag;
use GraphQL\Error\InvariantViolation;
use GraphQL\Executor\ExecutionResult;
use GraphQL\Executor\Promise\PromiseAdapter;
use GraphQL\Language\AST\DocumentNode;
use GraphQL\Type\Schema;
use GraphQL\Utils\Utils;
use GraphQL\Validator\Rules\ValidationRule;
/**
* Server configuration class.
* Could be passed directly to server constructor. List of options accepted by **create** method is
* [described in docs](executing-queries.md#server-configuration-options).
*
* Usage example:
*
* $config = GraphQL\Server\ServerConfig::create()
* ->setSchema($mySchema)
* ->setContext($myContext);
*
* $server = new GraphQL\Server\StandardServer($config);
*
* @see ExecutionResult
*
* @phpstan-type PersistedQueryLoader callable(string $queryId, OperationParams $operation): (string|DocumentNode)
* @phpstan-type RootValueResolver callable(OperationParams $operation, DocumentNode $doc, string $operationType): mixed
* @phpstan-type ValidationRulesOption array<ValidationRule>|null|callable(OperationParams $operation, DocumentNode $doc, string $operationType): array<ValidationRule>
*
* @phpstan-import-type ErrorsHandler from ExecutionResult
* @phpstan-import-type ErrorFormatter from ExecutionResult
*
* @see \GraphQL\Tests\Server\ServerConfigTest
*/
class ServerConfig
{
/**
* Converts an array of options to instance of ServerConfig
* (or just returns empty config when array is not passed).
*
* @param array<string, mixed> $config
*
* @api
*
* @throws InvariantViolation
*/
public static function create(array $config = []): self
{
$instance = new static();
foreach ($config as $key => $value) {
switch ($key) {
case 'schema':
$instance->setSchema($value);
break;
case 'rootValue':
$instance->setRootValue($value);
break;
case 'context':
$instance->setContext($value);
break;
case 'fieldResolver':
$instance->setFieldResolver($value);
break;
case 'validationRules':
$instance->setValidationRules($value);
break;
case 'queryBatching':
$instance->setQueryBatching($value);
break;
case 'debugFlag':
$instance->setDebugFlag($value);
break;
case 'persistedQueryLoader':
$instance->setPersistedQueryLoader($value);
break;
case 'errorFormatter':
$instance->setErrorFormatter($value);
break;
case 'errorsHandler':
$instance->setErrorsHandler($value);
break;
case 'promiseAdapter':
$instance->setPromiseAdapter($value);
break;
default:
throw new InvariantViolation("Unknown server config option: {$key}");
}
}
return $instance;
}
private ?Schema $schema = null;
/** @var mixed|callable(self, OperationParams, DocumentNode): mixed|null */
private $context;
/**
* @var mixed|callable
*
* @phpstan-var mixed|RootValueResolver
*/
private $rootValue;
/**
* @var callable|null
*
* @phpstan-var ErrorFormatter|null
*/
private $errorFormatter;
/**
* @var callable|null
*
* @phpstan-var ErrorsHandler|null
*/
private $errorsHandler;
private int $debugFlag = DebugFlag::NONE;
private bool $queryBatching = false;
/**
* @var array|callable|null
*
* @phpstan-var ValidationRulesOption
*/
private $validationRules;
/** @var callable|null */
private $fieldResolver;
private ?PromiseAdapter $promiseAdapter = null;
/**
* @var callable|null
*
* @phpstan-var PersistedQueryLoader|null
*/
private $persistedQueryLoader;
/** @api */
public function setSchema(Schema $schema): self
{
$this->schema = $schema;
return $this;
}
/**
* @param mixed|callable $context
*
* @api
*/
public function setContext($context): self
{
$this->context = $context;
return $this;
}
/**
* @param mixed|callable $rootValue
*
* @phpstan-param mixed|RootValueResolver $rootValue
*
* @api
*/
public function setRootValue($rootValue): self
{
$this->rootValue = $rootValue;
return $this;
}
/**
* @phpstan-param ErrorFormatter $errorFormatter
*
* @api
*/
public function setErrorFormatter(callable $errorFormatter): self
{
$this->errorFormatter = $errorFormatter;
return $this;
}
/**
* @phpstan-param ErrorsHandler $handler
*
* @api
*/
public function setErrorsHandler(callable $handler): self
{
$this->errorsHandler = $handler;
return $this;
}
/**
* Set validation rules for this server.
*
* @param array<ValidationRule>|callable|null $validationRules
*
* @phpstan-param ValidationRulesOption $validationRules
*
* @api
*/
public function setValidationRules($validationRules): self
{
// @phpstan-ignore-next-line necessary until we can use proper union types
if (! is_array($validationRules) && ! is_callable($validationRules) && $validationRules !== null) {
$invalidValidationRules = Utils::printSafe($validationRules);
throw new InvariantViolation("Server config expects array of validation rules or callable returning such array, but got {$invalidValidationRules}");
}
$this->validationRules = $validationRules;
return $this;
}
/** @api */
public function setFieldResolver(callable $fieldResolver): self
{
$this->fieldResolver = $fieldResolver;
return $this;
}
/**
* @phpstan-param PersistedQueryLoader|null $persistedQueryLoader
*
* @api
*/
public function setPersistedQueryLoader(?callable $persistedQueryLoader): self
{
$this->persistedQueryLoader = $persistedQueryLoader;
return $this;
}
/**
* Set response debug flags.
*
* @see \GraphQL\Error\DebugFlag class for a list of all available flags
*
* @api
*/
public function setDebugFlag(int $debugFlag = DebugFlag::INCLUDE_DEBUG_MESSAGE): self
{
$this->debugFlag = $debugFlag;
return $this;
}
/**
* Allow batching queries (disabled by default).
*
* @api
*/
public function setQueryBatching(bool $enableBatching): self
{
$this->queryBatching = $enableBatching;
return $this;
}
/** @api */
public function setPromiseAdapter(PromiseAdapter $promiseAdapter): self
{
$this->promiseAdapter = $promiseAdapter;
return $this;
}
/** @return mixed|callable */
public function getContext()
{
return $this->context;
}
/**
* @return mixed|callable
*
* @phpstan-return mixed|RootValueResolver
*/
public function getRootValue()
{
return $this->rootValue;
}
public function getSchema(): ?Schema
{
return $this->schema;
}
/** @phpstan-return ErrorFormatter|null */
public function getErrorFormatter(): ?callable
{
return $this->errorFormatter;
}
/** @phpstan-return ErrorsHandler|null */
public function getErrorsHandler(): ?callable
{
return $this->errorsHandler;
}
public function getPromiseAdapter(): ?PromiseAdapter
{
return $this->promiseAdapter;
}
/**
* @return array|callable|null
*
* @phpstan-return ValidationRulesOption
*/
public function getValidationRules()
{
return $this->validationRules;
}
public function getFieldResolver(): ?callable
{
return $this->fieldResolver;
}
/** @phpstan-return PersistedQueryLoader|null */
public function getPersistedQueryLoader(): ?callable
{
return $this->persistedQueryLoader;
}
public function getDebugFlag(): int
{
return $this->debugFlag;
}
public function getQueryBatching(): bool
{
return $this->queryBatching;
}
}