50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Validator\Rules;
|
|
|
|
use GraphQL\Error\Error;
|
|
use GraphQL\Language\AST\FragmentDefinitionNode;
|
|
use GraphQL\Language\AST\NameNode;
|
|
use GraphQL\Language\AST\NodeKind;
|
|
use GraphQL\Language\Visitor;
|
|
use GraphQL\Language\VisitorOperation;
|
|
use GraphQL\Validator\ValidationContext;
|
|
use function sprintf;
|
|
|
|
class UniqueFragmentNames extends ValidationRule
|
|
{
|
|
/** @var NameNode[] */
|
|
public $knownFragmentNames;
|
|
|
|
public function getVisitor(ValidationContext $context)
|
|
{
|
|
$this->knownFragmentNames = [];
|
|
|
|
return [
|
|
NodeKind::OPERATION_DEFINITION => static function () : VisitorOperation {
|
|
return Visitor::skipNode();
|
|
},
|
|
NodeKind::FRAGMENT_DEFINITION => function (FragmentDefinitionNode $node) use ($context) : VisitorOperation {
|
|
$fragmentName = $node->name->value;
|
|
if (! isset($this->knownFragmentNames[$fragmentName])) {
|
|
$this->knownFragmentNames[$fragmentName] = $node->name;
|
|
} else {
|
|
$context->reportError(new Error(
|
|
self::duplicateFragmentNameMessage($fragmentName),
|
|
[$this->knownFragmentNames[$fragmentName], $node->name]
|
|
));
|
|
}
|
|
|
|
return Visitor::skipNode();
|
|
},
|
|
];
|
|
}
|
|
|
|
public static function duplicateFragmentNameMessage($fragName)
|
|
{
|
|
return sprintf('There can be only one fragment named "%s".', $fragName);
|
|
}
|
|
}
|