-
-
Notifications
You must be signed in to change notification settings - Fork 564
/
Copy pathSchemaPrinter.php
576 lines (511 loc) · 17.7 KB
/
SchemaPrinter.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
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
<?php declare(strict_types=1);
namespace GraphQL\Utils;
use GraphQL\Error\Error;
use GraphQL\Error\InvariantViolation;
use GraphQL\Error\SerializationError;
use GraphQL\Language\AST\StringValueNode;
use GraphQL\Language\BlockString;
use GraphQL\Language\Printer;
use GraphQL\Type\Definition\Argument;
use GraphQL\Type\Definition\Directive;
use GraphQL\Type\Definition\EnumType;
use GraphQL\Type\Definition\EnumValueDefinition;
use GraphQL\Type\Definition\FieldDefinition;
use GraphQL\Type\Definition\ImplementingType;
use GraphQL\Type\Definition\InputObjectField;
use GraphQL\Type\Definition\InputObjectType;
use GraphQL\Type\Definition\InterfaceType;
use GraphQL\Type\Definition\NamedType;
use GraphQL\Type\Definition\ObjectType;
use GraphQL\Type\Definition\ScalarType;
use GraphQL\Type\Definition\Type;
use GraphQL\Type\Definition\UnionType;
use GraphQL\Type\Introspection;
use GraphQL\Type\Schema;
/**
* Prints the contents of a Schema in schema definition language.
*
* All sorting options sort alphabetically. If not given or `false`, the original schema definition order will be used.
*
* @phpstan-type Options array{
* sortArguments?: bool,
* sortEnumValues?: bool,
* sortFields?: bool,
* sortInputFields?: bool,
* sortTypes?: bool,
* }
*/
class SchemaPrinter
{
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @api
*
* @throws \JsonException
* @throws Error
* @throws InvariantViolation
* @throws SerializationError
*/
public static function doPrint(Schema $schema, array $options = []): string
{
return static::printFilteredSchema(
$schema,
static fn (Directive $directive): bool => ! Directive::isSpecifiedDirective($directive),
static fn (NamedType $type): bool => ! $type->isBuiltInType(),
$options
);
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @api
*
* @throws \JsonException
* @throws Error
* @throws InvariantViolation
* @throws SerializationError
*/
public static function printIntrospectionSchema(Schema $schema, array $options = []): string
{
return static::printFilteredSchema(
$schema,
[Directive::class, 'isSpecifiedDirective'],
[Introspection::class, 'isIntrospectionType'],
$options
);
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws Error
* @throws InvariantViolation
* @throws SerializationError
*/
public static function printType(Type $type, array $options = []): string
{
if ($type instanceof ScalarType) {
return static::printScalar($type, $options);
}
if ($type instanceof ObjectType) {
return static::printObject($type, $options);
}
if ($type instanceof InterfaceType) {
return static::printInterface($type, $options);
}
if ($type instanceof UnionType) {
return static::printUnion($type, $options);
}
if ($type instanceof EnumType) {
return static::printEnum($type, $options);
}
if ($type instanceof InputObjectType) {
return static::printInputObject($type, $options);
}
$unknownType = Utils::printSafe($type);
throw new Error("Unknown type: {$unknownType}.");
}
/**
* @param callable(Directive $directive): bool $directiveFilter
* @param callable(Type&NamedType $type): bool $typeFilter
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws Error
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printFilteredSchema(Schema $schema, callable $directiveFilter, callable $typeFilter, array $options): string
{
$directives = \array_filter($schema->getDirectives(), $directiveFilter);
$types = \array_filter($schema->getTypeMap(), $typeFilter);
if (isset($options['sortTypes']) && $options['sortTypes']) {
ksort($types);
}
$elements = [static::printSchemaDefinition($schema)];
foreach ($directives as $directive) {
$elements[] = static::printDirective($directive, $options);
}
foreach ($types as $type) {
$elements[] = static::printType($type, $options);
}
return \implode("\n\n", \array_filter($elements)) . "\n";
}
/**
* @throws InvariantViolation
*/
protected static function printSchemaDefinition(Schema $schema): ?string
{
$queryType = $schema->getQueryType();
$mutationType = $schema->getMutationType();
$subscriptionType = $schema->getSubscriptionType();
// Special case: When a schema has no root operation types, no valid schema
// definition can be printed.
if ($queryType === null && $mutationType === null && $subscriptionType === null) {
return null;
}
// TODO add condition for schema.description
// Only print a schema definition if there is a description or if it should
// not be omitted because of having default type names.
if (! self::hasDefaultRootOperationTypes($schema)) {
return "schema {\n"
. ($queryType !== null ? " query: {$queryType->name}\n" : '')
. ($mutationType !== null ? " mutation: {$mutationType->name}\n" : '')
. ($subscriptionType !== null ? " subscription: {$subscriptionType->name}\n" : '')
. '}';
}
return null;
}
/**
* GraphQL schema define root types for each type of operation. These types are
* the same as any other type and can be named in any manner, however there is
* a common naming convention:.
*
* ```graphql
* schema {
* query: Query
* mutation: Mutation
* subscription: Subscription
* }
* ```
*
* When using this naming convention, the schema description can be omitted.
* When using this naming convention, the schema description can be omitted so
* long as these names are only used for operation types.
*
* Note however that if any of these default names are used elsewhere in the
* schema but not as a root operation type, the schema definition must still
* be printed to avoid ambiguity.
*
* @throws InvariantViolation
*/
protected static function hasDefaultRootOperationTypes(Schema $schema): bool
{
return $schema->getQueryType() === $schema->getType('Query')
&& $schema->getMutationType() === $schema->getType('Mutation')
&& $schema->getSubscriptionType() === $schema->getType('Subscription');
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printDirective(Directive $directive, array $options): string
{
return static::printDescription($options, $directive)
. 'directive @' . $directive->name
. static::printArgs($options, $directive->args)
. ($directive->isRepeatable ? ' repeatable' : '')
. ' on ' . \implode(' | ', $directive->locations);
}
/**
* @param array<string, bool> $options
* @param (Type&NamedType)|Directive|EnumValueDefinition|Argument|FieldDefinition|InputObjectField $def
*
* @throws \JsonException
*/
protected static function printDescription(array $options, $def, string $indentation = '', bool $firstInBlock = true): string
{
$description = $def->description;
if ($description === null) {
return '';
}
$prefix = $indentation !== '' && ! $firstInBlock
? "\n{$indentation}"
: $indentation;
if (count(Utils::splitLines($description)) === 1) {
$description = \json_encode($description, JSON_THROW_ON_ERROR);
} else {
$description = BlockString::print($description);
$description = $indentation !== ''
? \str_replace("\n", "\n{$indentation}", $description)
: $description;
}
return "{$prefix}{$description}\n";
}
/**
* @param array<string, bool> $options
* @param array<int, Argument> $args
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printArgs(array $options, array $args, string $indentation = ''): string
{
if ($args === []) {
return '';
}
if (isset($options['sortArguments']) && $options['sortArguments']) {
usort($args, static fn (Argument $left, Argument $right): int => $left->name <=> $right->name);
}
$allArgsWithoutDescription = true;
foreach ($args as $arg) {
$description = $arg->description;
if ($description !== null && $description !== '') {
$allArgsWithoutDescription = false;
break;
}
}
if ($allArgsWithoutDescription) {
return '('
. \implode(
', ',
\array_map(
[static::class, 'printInputValue'],
$args
)
)
. ')';
}
$argsStrings = [];
$firstInBlock = true;
$previousHasDescription = false;
foreach ($args as $arg) {
$hasDescription = $arg->description !== null;
if ($previousHasDescription && ! $hasDescription) {
$argsStrings[] = '';
}
$argsStrings[] = static::printDescription($options, $arg, ' ' . $indentation, $firstInBlock)
. ' '
. $indentation
. static::printInputValue($arg);
$firstInBlock = false;
$previousHasDescription = $hasDescription;
}
return "(\n"
. \implode("\n", $argsStrings)
. "\n"
. $indentation
. ')';
}
/**
* @param InputObjectField|Argument $arg
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printInputValue($arg): string
{
$argDecl = "{$arg->name}: {$arg->getType()->toString()}";
if ($arg->defaultValueExists()) {
$defaultValueAST = AST::astFromValue($arg->defaultValue, $arg->getType());
if ($defaultValueAST === null) {
$inconvertibleDefaultValue = Utils::printSafe($arg->defaultValue);
throw new InvariantViolation("Unable to convert defaultValue of argument {$arg->name} into AST: {$inconvertibleDefaultValue}.");
}
$argDecl .= ' = ' . Printer::doPrint($defaultValueAST);
}
return $argDecl;
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
*/
protected static function printScalar(ScalarType $type, array $options): string
{
return static::printDescription($options, $type)
. "scalar {$type->name}";
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printObject(ObjectType $type, array $options): string
{
return static::printDescription($options, $type)
. "type {$type->name}"
. self::printImplementedInterfaces($type)
. static::printFields($options, $type);
}
/**
* @param array<string, bool> $options
* @param ObjectType|InterfaceType $type
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printFields(array $options, $type): string
{
$fields = [];
$firstInBlock = true;
$previousHasDescription = false;
$fieldDefinitions = $type->getFields();
if (isset($options['sortFields']) && $options['sortFields']) {
ksort($fieldDefinitions);
}
foreach ($fieldDefinitions as $f) {
$hasDescription = $f->description !== null;
if ($previousHasDescription && ! $hasDescription) {
$fields[] = '';
}
$fields[] = static::printDescription($options, $f, ' ', $firstInBlock)
. ' '
. $f->name
. static::printArgs($options, $f->args, ' ')
. ': '
. $f->getType()->toString()
. static::printDeprecated($f);
$firstInBlock = false;
$previousHasDescription = $hasDescription;
}
return self::printBlock($fields);
}
/**
* @param FieldDefinition|EnumValueDefinition $fieldOrEnumVal
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printDeprecated($fieldOrEnumVal): string
{
$reason = $fieldOrEnumVal->deprecationReason;
if ($reason === null) {
return '';
}
if ($reason === '' || $reason === Directive::DEFAULT_DEPRECATION_REASON) {
return ' @deprecated';
}
$reasonAST = AST::astFromValue($reason, Type::string());
assert($reasonAST instanceof StringValueNode);
$reasonASTString = Printer::doPrint($reasonAST);
return " @deprecated(reason: {$reasonASTString})";
}
protected static function printImplementedInterfaces(ImplementingType $type): string
{
$interfaces = $type->getInterfaces();
return $interfaces === []
? ''
: ' implements ' . \implode(
' & ',
\array_map(
static fn (InterfaceType $interface): string => $interface->name,
$interfaces
)
);
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printInterface(InterfaceType $type, array $options): string
{
return static::printDescription($options, $type)
. "interface {$type->name}"
. self::printImplementedInterfaces($type)
. static::printFields($options, $type);
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
*/
protected static function printUnion(UnionType $type, array $options): string
{
$types = $type->getTypes();
$types = $types === []
? ''
: ' = ' . \implode(' | ', $types);
return static::printDescription($options, $type) . 'union ' . $type->name . $types;
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printEnum(EnumType $type, array $options): string
{
$values = [];
$firstInBlock = true;
$valueDefinitions = $type->getValues();
if (isset($options['sortEnumValues']) && $options['sortEnumValues']) {
usort($valueDefinitions, static fn (EnumValueDefinition $left, EnumValueDefinition $right): int => $left->name <=> $right->name);
}
foreach ($valueDefinitions as $value) {
$values[] = static::printDescription($options, $value, ' ', $firstInBlock)
. ' '
. $value->name
. static::printDeprecated($value);
$firstInBlock = false;
}
return static::printDescription($options, $type)
. "enum {$type->name}"
. static::printBlock($values);
}
/**
* @param array<string, bool> $options
*
* @phpstan-param Options $options
*
* @throws \JsonException
* @throws InvariantViolation
* @throws SerializationError
*/
protected static function printInputObject(InputObjectType $type, array $options): string
{
$fields = [];
$firstInBlock = true;
$fieldDefinitions = $type->getFields();
if (isset($options['sortInputFields']) && $options['sortInputFields']) {
ksort($fieldDefinitions);
}
foreach ($fieldDefinitions as $field) {
$fields[] = static::printDescription($options, $field, ' ', $firstInBlock)
. ' '
. static::printInputValue($field);
$firstInBlock = false;
}
return static::printDescription($options, $type)
. "input {$type->name}"
. static::printBlock($fields);
}
/**
* @param array<string> $items
*/
protected static function printBlock(array $items): string
{
return $items === []
? ''
: " {\n" . \implode("\n", $items) . "\n}";
}
}