This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/Validator.php

126 lines
3.4 KiB
PHP
Raw Normal View History

<?php
2010-10-02 11:42:31 +01:00
/*
* This file is part of the Symfony package.
2010-10-02 11:42:31 +01:00
*
* (c) Fabien Potencier <fabien@symfony.com>
2010-10-02 11:42:31 +01:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2010-10-02 11:42:31 +01:00
*/
namespace Symfony\Component\Validator;
use Symfony\Component\Validator\Mapping\ClassMetadataFactoryInterface;
/**
* The default implementation of the ValidatorInterface.
*
* This service can be used to validate objects, properties and raw values
* against constraints.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Bernhard Schussek <bernhard.schussek@symfony.com>
2011-07-20 09:37:57 +01:00
*
* @api
*/
class Validator implements ValidatorInterface
{
protected $metadataFactory;
protected $validatorFactory;
protected $validatorInitializers;
public function __construct(
ClassMetadataFactoryInterface $metadataFactory,
ConstraintValidatorFactoryInterface $validatorFactory,
array $validatorInitializers = array()
)
{
$this->metadataFactory = $metadataFactory;
$this->validatorFactory = $validatorFactory;
$this->validatorInitializers = $validatorInitializers;
}
/**
* {@inheritDoc}
*/
public function getMetadataFactory()
{
return $this->metadataFactory;
}
/**
* {@inheritDoc}
2011-07-20 09:37:57 +01:00
*
* @api
*/
public function validate($object, $groups = null)
{
$metadata = $this->metadataFactory->getClassMetadata(get_class($object));
$walk = function(GraphWalker $walker, $group) use ($metadata, $object) {
return $walker->walkObject($metadata, $object, $group, '');
};
return $this->validateGraph($object, $walk, $groups);
}
/**
* {@inheritDoc}
2011-07-20 09:37:57 +01:00
*
* @api
*/
public function validateProperty($object, $property, $groups = null)
{
$metadata = $this->metadataFactory->getClassMetadata(get_class($object));
$walk = function(GraphWalker $walker, $group) use ($metadata, $property, $object) {
return $walker->walkProperty($metadata, $property, $object, $group, '');
};
return $this->validateGraph($object, $walk, $groups);
}
/**
* {@inheritDoc}
2011-07-20 09:37:57 +01:00
*
* @api
*/
public function validatePropertyValue($class, $property, $value, $groups = null)
{
$metadata = $this->metadataFactory->getClassMetadata($class);
$walk = function(GraphWalker $walker, $group) use ($metadata, $property, $value) {
return $walker->walkPropertyValue($metadata, $property, $value, $group, '');
};
return $this->validateGraph($class, $walk, $groups);
}
/**
* {@inheritDoc}
2011-07-20 09:37:57 +01:00
*
* @api
*/
public function validateValue($value, Constraint $constraint, $groups = null)
{
$walk = function(GraphWalker $walker, $group) use ($constraint, $value) {
return $walker->walkConstraint($constraint, $value, $group, '');
};
return $this->validateGraph($value, $walk, $groups);
}
protected function validateGraph($root, \Closure $walk, $groups = null)
{
$walker = new GraphWalker($root, $this->metadataFactory, $this->validatorFactory, $this->validatorInitializers);
2011-03-31 13:02:00 +01:00
$groups = $groups ? (array) $groups : array(Constraint::DEFAULT_GROUP);
foreach ($groups as $group) {
$walk($walker, $group);
}
return $walker->getViolations();
}
2011-06-08 11:16:48 +01:00
}