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

sangria.validation.rules.NoUndefinedVariables.scala Maven / Gradle / Ivy

The newest version!
package sangria.validation.rules

import sangria.ast
import sangria.ast.AstVisitorCommand
import sangria.validation._
import scala.collection.mutable.{Set => MutableSet}

/** No undefined variables
  *
  * A GraphQL operation is only valid if all variables encountered, both directly and via fragment
  * spreads, are defined by that operation.
  */
class NoUndefinedVariables extends ValidationRule {
  override def visitor(ctx: ValidationContext) = new AstValidatingVisitor {
    val variableNameDefined = MutableSet[String]()

    override val onEnter: ValidationVisit = {
      case _: ast.OperationDefinition =>
        variableNameDefined.clear()
        AstVisitorCommand.RightContinue

      case varDef: ast.VariableDefinition =>
        variableNameDefined += varDef.name
        AstVisitorCommand.RightContinue
    }

    override def onLeave: ValidationVisit = { case operation: ast.OperationDefinition =>
      val usages = ctx.documentAnalyzer.getRecursiveVariableUsages(operation)

      val errors =
        usages.filterNot(vu => variableNameDefined.contains(vu.node.name)).toVector.map { vu =>
          operation.name match {
            case Some(opName) =>
              UndefinedVarByOpViolation(
                vu.node.name,
                opName,
                ctx.sourceMapper,
                vu.node.location.toList ++ operation.location.toList)
            case None =>
              UndefinedVarViolation(
                vu.node.name,
                ctx.sourceMapper,
                vu.node.location.toList ++ operation.location.toList)
          }
        }

      if (errors.nonEmpty) Left(errors.distinct) else AstVisitorCommand.RightContinue
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy