All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.schema.validation.AppliedDirectivesAreValid Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.schema.validation;

import graphql.Internal;
import graphql.schema.GraphQLDirective;
import graphql.schema.GraphQLDirectiveContainer;
import graphql.schema.GraphQLSchema;
import graphql.schema.GraphQLSchemaElement;
import graphql.schema.GraphQLTypeVisitorStub;
import graphql.util.TraversalControl;
import graphql.util.TraverserContext;

import java.util.List;
import java.util.Map;

import static graphql.schema.validation.SchemaValidationErrorType.InvalidAppliedDirective;
import static java.lang.String.format;

@Internal
public class AppliedDirectivesAreValid extends GraphQLTypeVisitorStub {

    @Override
    protected TraversalControl visitGraphQLType(GraphQLSchemaElement node, TraverserContext context) {
        SchemaValidationErrorCollector collector = context.getVarFromParents(SchemaValidationErrorCollector.class);
        GraphQLSchema schema = context.getVarFromParents(GraphQLSchema.class);
        if (node instanceof GraphQLDirectiveContainer) {
            GraphQLDirectiveContainer directiveContainer = (GraphQLDirectiveContainer) node;
            for (Map.Entry> entry : directiveContainer.getAllDirectivesByName().entrySet()) {
                String directiveName = entry.getKey();
                GraphQLDirective directiveDef = schema.getDirective(directiveName);
                if (directiveDef != null) {
                    checkNonRepeatable(collector, directiveContainer, directiveDef, entry.getValue());
                } else {
                    addError(collector, format("A definition for directive '%s' could not be found", directiveName));
                }
            }
        }

        return TraversalControl.CONTINUE;
    }

    private void checkNonRepeatable(SchemaValidationErrorCollector collector, GraphQLDirectiveContainer directiveContainer, GraphQLDirective directiveDef, List directives) {
        if (directiveDef.isNonRepeatable() && directives.size() > 1) {
            addNonRepeatableError(collector, directiveContainer, directiveDef.getName(), directives.size());
        }
    }

    private void addNonRepeatableError(SchemaValidationErrorCollector collector, GraphQLDirectiveContainer directiveContainer, String name, int howMany) {
        addError(collector, format("The directive '%s' on the '%s' called '%s' is a non repeatable directive but has been applied %d times",
                name,
                directiveContainer.getClass().getSimpleName(),
                directiveContainer.getName(),
                howMany));
    }

    private void addError(SchemaValidationErrorCollector collector, String message) {
        collector.addError(new SchemaValidationError(InvalidAppliedDirective, message));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy