Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); namespace GraphQL\Validator\Rules; use GraphQL\Error\Erro..
Decoded Output download
<?php declare(strict_types=1);
namespace GraphQL\Validator\Rules;
use GraphQL\Error\Error;
use GraphQL\Language\AST\FieldNode;
use GraphQL\Language\AST\NodeKind;
use GraphQL\Type\Definition\Type;
use GraphQL\Validator\QueryValidationContext;
class ScalarLeafs extends ValidationRule
{
public function getVisitor(QueryValidationContext $context): array
{
return [
NodeKind::FIELD => static function (FieldNode $node) use ($context): void {
$type = $context->getType();
if ($type === null) {
return;
}
if (Type::isLeafType(Type::getNamedType($type))) {
if ($node->selectionSet !== null) {
$context->reportError(new Error(
static::noSubselectionAllowedMessage($node->name->value, $type->toString()),
[$node->selectionSet]
));
}
} elseif ($node->selectionSet === null) {
$context->reportError(new Error(
static::requiredSubselectionMessage($node->name->value, $type->toString()),
[$node]
));
}
},
];
}
public static function noSubselectionAllowedMessage(string $field, string $type): string
{
return "Field \"{$field}\" of type \"{$type}\" must not have a sub selection.";
}
public static function requiredSubselectionMessage(string $field, string $type): string
{
return "Field \"{$field}\" of type \"{$type}\" must have a sub selection.";
}
}
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types=1);
namespace GraphQL\Validator\Rules;
use GraphQL\Error\Error;
use GraphQL\Language\AST\FieldNode;
use GraphQL\Language\AST\NodeKind;
use GraphQL\Type\Definition\Type;
use GraphQL\Validator\QueryValidationContext;
class ScalarLeafs extends ValidationRule
{
public function getVisitor(QueryValidationContext $context): array
{
return [
NodeKind::FIELD => static function (FieldNode $node) use ($context): void {
$type = $context->getType();
if ($type === null) {
return;
}
if (Type::isLeafType(Type::getNamedType($type))) {
if ($node->selectionSet !== null) {
$context->reportError(new Error(
static::noSubselectionAllowedMessage($node->name->value, $type->toString()),
[$node->selectionSet]
));
}
} elseif ($node->selectionSet === null) {
$context->reportError(new Error(
static::requiredSubselectionMessage($node->name->value, $type->toString()),
[$node]
));
}
},
];
}
public static function noSubselectionAllowedMessage(string $field, string $type): string
{
return "Field \"{$field}\" of type \"{$type}\" must not have a sub selection.";
}
public static function requiredSubselectionMessage(string $field, string $type): string
{
return "Field \"{$field}\" of type \"{$type}\" must have a sub selection.";
}
}
Function Calls
None |
Stats
MD5 | 88573fbda30e978c4db5ee066e1ff681 |
Eval Count | 0 |
Decode Time | 82 ms |