Нет встроенного ограничения, которое отвечало бы вашим требованиям, поэтому вам придется определить свое собственное.
Определение ограничения:
namespace MyProject\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
*/
class CollectionOf extends Constraint {
public $message = 'This value should be a collection of type {{ type }}';
public $type;
public function getDefaultOption() {
return 'type';
}
public function getRequiredOptions() {
return array('type');
}
}
Определение валидатора:
namespace MyProject\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
class CollectionOfValidator extends ConstraintValidator {
public function isValid($value, Constraint $constraint) {
if ($value === null) {
return true;
}
if (!is_array($value) && !$value instanceof \Traversable) {
throw new UnexpectedTypeException($value, 'collection');
}
if (count($value) === 0) {
return true;
}
$type = $constraint->type == 'boolean' ? 'bool' : $constraint->type;
$function = 'is_' . $type;
$primitiveTest = function_exists($function);
foreach ($value as $item) {
if (
($primitiveTest && !call_user_func($function, $item)) ||
(!$primitiveTest && !$item instanceof $type)
) {
$this->setMessage($constraint->message, array(
'{{ value }}' => is_object($item) ? get_class($item) : gettype($item),
'{{ type }}' => $constraint->type
));
return false;
}
}
return true;
}
}
Приведенный выше валидатор работает как для коллекций, так и для массивов.
Редактировать (2011-06-29)
Импортировать собственные ограничения:
// My\TestBundle\Entity\Company
use Doctrine\ORM\Mapping as ORM;
use MyProject\Validator\Constraints as MyAssert;
use Symfony\Component\Validator\Constraints as Assert;
class Company {
...
/**
* @ORM\ManyToOne(...)
* @Assert\NotNull
* @MyAssert\CollectionOf("My\TestBundle\Entity\Employee")
*/
private $employees;
}
Чтобы использовать ограничения аннотаций, вам необходимо включить их в файле подтверждения:
framework:
...
validation:
enable-annotations: true