4

我试图获取实体上的所有验证约束并将这些约束转换为 Jquery 验证规则,现在我能够获得注释定义的约束(感谢:Symfony2 get validation constraint on an entity),但我在获取 xml 和 yml 时遇到了一些麻烦那些。

$xml_file_loader = new XmlFileLoader("path_to_my_project/vendor/friendsofsymfony/user-bundle\FOS\UserBundle\Resources\config\validation.xml");

使用类似的代码意味着我需要事先知道 xml/yml 文件的位置,我试图以某种方式编写可以自动执行此操作的通用代码。

有没有办法一次获得所有约束?如果不是,我怎么知道 xml/yml 文件的位置,并且在继承的情况下,我需要检查父约束……这可行吗?

4

1 回答 1

5
private function getValidations()
    {
        $validations=[];
        $validator=$this->get("validator");
        $metadata=$validator->getMetadataFor(new your_entity());
        $constrainedProperties=$metadata->getConstrainedProperties();
        foreach($constrainedProperties as $constrainedProperty)
        {
            $propertyMetadata=$metadata->getPropertyMetadata($constrainedProperty);
            $constraints=$propertyMetadata[0]->constraints;
            $outputConstraintsCollection=[];
            foreach($constraints as $constraint)
            {
                $class = new \ReflectionObject($constraint);
                $constraintName=$class->getShortName();
                $constraintParameter=null;
                switch ($constraintName) 
                {
                    case "NotBlank":
                        $param="notBlank";
                        break;
                    case "Type":
                        $param=$constraint->type;
                        break;
                    case "Length":
                        $param=$constraint->max;
                        break;
                }
                $outputConstraintsCollection[$constraintName]=$param;
            }
            $validations[$constrainedProperty]=$outputConstraintsCollection;
        }
        return $validations;
    }

回报:

array(13) (
      [property1] => array(4) (
        [NotBlank] => (string) notBlank
        [NotNull] => (string) notBlank
        [Type] => (string) string
        [Length] => (int) 11
      )
      [property2] => array(4) (
        [NotBlank] => (string) notBlank
        [NotNull] => (string) notBlank
        [Type] => (string) string
        [Length] => (int) 40
      )
      ..........
)

返回的数组可以配置或用于定义客户端验证规则,具体取决于您使用的客户端验证库/代码

$validator=$this->get("validator");
$metadata=$validator->getMetadataFor(new yourentity());

该对象$metadata现在包含有关与您的特定实体有关的验证的所有元数据。

于 2013-04-26T04:58:23.353 回答