symfony2获取实体的所有验证约束(yml,xml,annotations)

时间:2013-03-22 15:21:38

标签: symfony symfony-forms

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

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

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

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

1 个答案:

答案 0 :(得分: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现在包含有关您特定实体的验证的所有元数据。