Package org.hibernate.validator.internal.constraintvalidators

Source Code of org.hibernate.validator.internal.constraintvalidators.ScriptAssertValidator

/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.internal.constraintvalidators;

import javax.script.ScriptException;
import javax.validation.ConstraintDeclarationException;
import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;

import org.hibernate.validator.constraints.ScriptAssert;
import org.hibernate.validator.internal.util.Contracts;
import org.hibernate.validator.internal.util.logging.Log;
import org.hibernate.validator.internal.util.logging.LoggerFactory;
import org.hibernate.validator.internal.util.scriptengine.ScriptEvaluator;
import org.hibernate.validator.internal.util.scriptengine.ScriptEvaluatorFactory;

import static org.hibernate.validator.internal.util.logging.Messages.MESSAGES;

/**
* Validator for the {@link ScriptAssert} constraint annotation.
*
* @author Gunnar Morling
* @author Hardy Ferentschik
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class ScriptAssertValidator implements ConstraintValidator<ScriptAssert, Object> {

  private static final Log log = LoggerFactory.make();

  private String script;
  private String languageName;
  private String alias;

  public void initialize(ScriptAssert constraintAnnotation) {
    validateParameters( constraintAnnotation );

    this.script = constraintAnnotation.script();
    this.languageName = constraintAnnotation.lang();
    this.alias = constraintAnnotation.alias();
  }

  public boolean isValid(Object value, ConstraintValidatorContext constraintValidatorContext) {

    Object evaluationResult;
    ScriptEvaluator scriptEvaluator;

    try {
      ScriptEvaluatorFactory evaluatorFactory = ScriptEvaluatorFactory.getInstance();
      scriptEvaluator = evaluatorFactory.getScriptEvaluatorByLanguageName( languageName );
    }
    catch ( ScriptException e ) {
      throw new ConstraintDeclarationException( e );
    }

    try {
      evaluationResult = scriptEvaluator.evaluate( script, value, alias );
    }
    catch ( ScriptException e ) {
      throw log.getErrorDuringScriptExecutionException( script, e );
    }

    if ( evaluationResult == null ) {
      throw log.getScriptMustReturnTrueOrFalseException( script );
    }
    if ( !( evaluationResult instanceof Boolean ) ) {
      throw log.getScriptMustReturnTrueOrFalseException(
          script,
          evaluationResult,
          evaluationResult.getClass().getCanonicalName()
      );
    }

    return Boolean.TRUE.equals( evaluationResult );
  }

  private void validateParameters(ScriptAssert constraintAnnotation) {
    Contracts.assertNotEmpty( constraintAnnotation.script(), MESSAGES.parameterMustNotBeEmpty( "script" ) );
    Contracts.assertNotEmpty( constraintAnnotation.lang(), MESSAGES.parameterMustNotBeEmpty( "lang" ) );
    Contracts.assertNotEmpty( constraintAnnotation.alias(), MESSAGES.parameterMustNotBeEmpty( "alias" ) );
  }
}
TOP

Related Classes of org.hibernate.validator.internal.constraintvalidators.ScriptAssertValidator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.