如何使用Symfony验证验证数组密钥?
说我有以下内容,emails
数组的每个键都是一个ID。如何使用回调或其他约束来验证它们(比如说例如正则表达式约束而不是回调)?
$input = [
'emails' => [
7 => 'david@panmedia.co.nz',
12 => 'some@email.add',
],
'user' => 'bob',
'amount' => 7,
];
use Symfony\Component\Validator\Validation;
use Symfony\Component\Validator\Constraints;
$validator = Validation::createValidator();
$constraint = new Constraints\Collection(array(
'emails' => new Constraints\All(array(
new Constraints\Email(),
)),
'user' => new Constraints\Regex('/[a-z]/i'),
'amount' => new Constraints\Range(['min' => 5, 'max' => 10]),
));
$violations = $validator->validateValue($input, $constraint);
echo $violations;
(使用最新的dev-master symfony)
答案 0 :(得分:6)
我会创建一个自定义验证约束,它在数组中对每个键值对(或仅在您想要的时候键)应用约束。与All
约束类似,但是对键值对执行验证,而不是仅对值进行验证。
namespace GLS\DemoBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
class AssocAll extends Constraint
{
public $constraints = array();
public function __construct($options = null)
{
parent::__construct($options);
if (! is_array($this->constraints)) {
$this->constraints = array($this->constraints);
}
foreach ($this->constraints as $constraint) {
if (!$constraint instanceof Constraint) {
throw new ConstraintDefinitionException('The value ' . $constraint . ' is not an instance of Constraint in constraint ' . __CLASS__);
}
}
}
public function getDefaultOption()
{
return 'constraints';
}
public function getRequiredOptions()
{
return array('constraints');
}
}
约束验证器,它将带有键值对的数组传递给每个约束:
namespace GLS\DemooBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
class AssocAllValidator extends ConstraintValidator
{
public function validate($value, Constraint $constraint)
{
if (null === $value) {
return;
}
if (!is_array($value) && !$value instanceof \Traversable) {
throw new UnexpectedTypeException($value, 'array or Traversable');
}
$walker = $this->context->getGraphWalker();
$group = $this->context->getGroup();
$propertyPath = $this->context->getPropertyPath();
foreach ($value as $key => $element) {
foreach ($constraint->constraints as $constr) {
$walker->walkConstraint($constr, array($key, $element), $group, $propertyPath.'['.$key.']');
}
}
}
}
我想,只有Callback
约束才有意义应用于每个键值对,在那里放置验证逻辑。
use GLS\DemoBundle\Validator\Constraints\AssocAll;
$validator = Validation::createValidator();
$constraint = new Constraints\Collection(array(
'emails' => new AssocAll(array(
new Constraints\Callback(array(
'methods' => array(function($item, ExecutionContext $context) {
$key = $item[0];
$value = $item[1];
//your validation logic goes here
//...
}
))),
)),
'user' => new Constraints\Regex('/^[a-z]+$/i'),
'amount' => new Constraints\Range(['min' => 5, 'max' => 10]),
));
$violations = $validator->validateValue($input, $constraint);
var_dump($violations);
答案 1 :(得分:2)
有一个回调约束。见http://symfony.com/doc/master/reference/constraints/Callback.html
<强>更新强>
我找不到更简洁的方法来获取当前值的密钥进行验证。可能有更好的方法,我没有花太多时间在这上面,但它适用于你的情况。
use Symfony\Component\Validator\Constraints;
use Symfony\Component\Validator\Context\ExecutionContextInterface;
// ...
$input = array(
'emails' => array(
7 => 'david@panmedia.co.nz',
12 => 'some@email.add',
),
'user' => 'bob',
'amount' => 7,
);
// inside a sf2 controller: $validator = $this->get('validator.builder')->getValidator();
$validator = Validation::createValidator();
$constraint = new Constraints\Collection(array(
'emails' => new Constraints\All(array(
new Constraints\Email(),
new Constraints\Callback(array('methods' => array(function($value, ExecutionContextInterface $context){
$propertyPath = $context->getPropertyPath();
$valueKey = preg_replace('/[^0-9]/','',$propertyPath);
if($valueKey == 7){
$context->addViolationAt('email', sprintf('E-Mail %s Has Has Key 7',$value), array(), null);
}
})))
)),
'user' => new Constraints\Regex('/[a-z]/i'),
'amount' => new Constraints\Range(array('min' => 5, 'max' => 10)),
));
$violations = $validator->validate($input, $constraint);
echo $violations;
答案 2 :(得分:-1)
答案 3 :(得分:-1)
有点晚了,但是你走了,我的朋友:
use Symfony\Component\Validator\Constraints as Assert;
public function getConstraints()
{
return [
'employee' => [new Assert\NotBlank(), new Assert\Type("integer")],
'terms' => [new Assert\NotBlank(), new Assert\Type("array")],
'pivotData' => new Assert\All([
new Assert\Type("array"),
new Assert\Collection([
'amount' => new Assert\Optional(new Assert\Type('double'))
])
]),
];
}
这里有几点需要注意:
在上面提供的示例中,我们正在验证pivotData
密钥。 pivotData
应该是我们要验证的额外数据数组。
每次我们要验证数组时,我们都会以new Assert\All
开头,这意味着我们要验证pivotData
然后,我们添加新的Assert\Type("array")
以检查是否确实从前端传递了一个数组。
而且,最重要的是,我们创建了一个new Assert\Collection
,我们将新属性逐个定义为标准。在上面的示例中,我添加了一个表示pivotData属性的amount
键。您可以在此自由列出所有属性,它们将得到验证:)