123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591 |
- <?php
- namespace Symfony\Component\Validator\Mapping;
- use Symfony\Component\Validator\Constraint;
- use Symfony\Component\Validator\Constraints\GroupSequence;
- use Symfony\Component\Validator\Constraints\Traverse;
- use Symfony\Component\Validator\Constraints\Valid;
- use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
- use Symfony\Component\Validator\Exception\GroupDefinitionException;
- use Symfony\Component\Validator\ValidationVisitorInterface;
- class ClassMetadata extends ElementMetadata implements ClassMetadataInterface
- {
-
- public $name;
-
- public $defaultGroup;
-
- public $members = array();
-
- public $properties = array();
-
- public $getters = array();
-
- public $groupSequence = array();
-
- public $groupSequenceProvider = false;
-
- public $traversalStrategy = TraversalStrategy::IMPLICIT;
-
- private $reflClass;
-
- public function __construct($class)
- {
- $this->name = $class;
-
- if (false !== $nsSep = strrpos($class, '\\')) {
- $this->defaultGroup = substr($class, $nsSep + 1);
- } else {
- $this->defaultGroup = $class;
- }
- }
-
- public function accept(ValidationVisitorInterface $visitor, $value, $group, $propertyPath, $propagatedGroup = null)
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since Symfony 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
- if (null === $propagatedGroup && Constraint::DEFAULT_GROUP === $group
- && ($this->hasGroupSequence() || $this->isGroupSequenceProvider())) {
- if ($this->hasGroupSequence()) {
- $groups = $this->getGroupSequence()->groups;
- } else {
- $groups = $value->getGroupSequence();
- }
- foreach ($groups as $group) {
- $this->accept($visitor, $value, $group, $propertyPath, Constraint::DEFAULT_GROUP);
- if (\count($visitor->getViolations()) > 0) {
- break;
- }
- }
- return;
- }
- $visitor->visit($this, $value, $group, $propertyPath);
- if (null !== $value) {
- $pathPrefix = empty($propertyPath) ? '' : $propertyPath.'.';
- foreach ($this->getConstrainedProperties() as $property) {
- foreach ($this->getPropertyMetadata($property) as $member) {
- $member->accept($visitor, $member->getPropertyValue($value), $group, $pathPrefix.$property, $propagatedGroup);
- }
- }
- }
- }
-
- public function __sleep()
- {
- $parentProperties = parent::__sleep();
-
- unset($parentProperties[array_search('cascadingStrategy', $parentProperties)]);
- return array_merge($parentProperties, array(
- 'getters',
- 'groupSequence',
- 'groupSequenceProvider',
- 'members',
- 'name',
- 'properties',
- 'defaultGroup',
- ));
- }
-
- public function getClassName()
- {
- return $this->name;
- }
-
- public function getDefaultGroup()
- {
- return $this->defaultGroup;
- }
-
- public function addConstraint(Constraint $constraint)
- {
- if (!\in_array(Constraint::CLASS_CONSTRAINT, (array) $constraint->getTargets())) {
- throw new ConstraintDefinitionException(sprintf('The constraint "%s" cannot be put on classes.', \get_class($constraint)));
- }
- if ($constraint instanceof Valid) {
- throw new ConstraintDefinitionException(sprintf('The constraint "%s" cannot be put on classes.', \get_class($constraint)));
- }
- if ($constraint instanceof Traverse) {
- if ($constraint->traverse) {
-
- $this->traversalStrategy = TraversalStrategy::TRAVERSE;
- } else {
-
- $this->traversalStrategy = TraversalStrategy::NONE;
- }
-
- return $this;
- }
- $constraint->addImplicitGroupName($this->getDefaultGroup());
- parent::addConstraint($constraint);
- return $this;
- }
-
- public function addPropertyConstraint($property, Constraint $constraint)
- {
- if (!isset($this->properties[$property])) {
- $this->properties[$property] = new PropertyMetadata($this->getClassName(), $property);
- $this->addPropertyMetadata($this->properties[$property]);
- }
- $constraint->addImplicitGroupName($this->getDefaultGroup());
- $this->properties[$property]->addConstraint($constraint);
- return $this;
- }
-
- public function addPropertyConstraints($property, array $constraints)
- {
- foreach ($constraints as $constraint) {
- $this->addPropertyConstraint($property, $constraint);
- }
- return $this;
- }
-
- public function addGetterConstraint($property, Constraint $constraint)
- {
- if (!isset($this->getters[$property])) {
- $this->getters[$property] = new GetterMetadata($this->getClassName(), $property);
- $this->addPropertyMetadata($this->getters[$property]);
- }
- $constraint->addImplicitGroupName($this->getDefaultGroup());
- $this->getters[$property]->addConstraint($constraint);
- return $this;
- }
-
- public function addGetterMethodConstraint($property, $method, Constraint $constraint)
- {
- if (!isset($this->getters[$property])) {
- $this->getters[$property] = new GetterMetadata($this->getClassName(), $property, $method);
- $this->addPropertyMetadata($this->getters[$property]);
- }
- $constraint->addImplicitGroupName($this->getDefaultGroup());
- $this->getters[$property]->addConstraint($constraint);
- return $this;
- }
-
- public function addGetterConstraints($property, array $constraints)
- {
- foreach ($constraints as $constraint) {
- $this->addGetterConstraint($property, $constraint);
- }
- return $this;
- }
-
- public function addGetterMethodConstraints($property, $method, array $constraints)
- {
- foreach ($constraints as $constraint) {
- $this->addGetterMethodConstraint($property, $method, $constraint);
- }
- return $this;
- }
-
- public function mergeConstraints(ClassMetadata $source)
- {
- if ($source->isGroupSequenceProvider()) {
- $this->setGroupSequenceProvider(true);
- }
- foreach ($source->getConstraints() as $constraint) {
- $this->addConstraint(clone $constraint);
- }
- foreach ($source->getConstrainedProperties() as $property) {
- foreach ($source->getPropertyMetadata($property) as $member) {
- $member = clone $member;
- foreach ($member->getConstraints() as $constraint) {
- if (\in_array($constraint::DEFAULT_GROUP, $constraint->groups, true)) {
- $member->constraintsByGroup[$this->getDefaultGroup()][] = $constraint;
- }
- $constraint->addImplicitGroupName($this->getDefaultGroup());
- }
- $this->addPropertyMetadata($member);
- if ($member instanceof MemberMetadata && !$member->isPrivate($this->name)) {
- $property = $member->getPropertyName();
- if ($member instanceof PropertyMetadata && !isset($this->properties[$property])) {
- $this->properties[$property] = $member;
- } elseif ($member instanceof GetterMetadata && !isset($this->getters[$property])) {
- $this->getters[$property] = $member;
- }
- }
- }
- }
- }
-
- protected function addMemberMetadata(MemberMetadata $metadata)
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since Symfony 2.6 and will be removed in 3.0. Use the addPropertyMetadata() method instead.', E_USER_DEPRECATED);
- $this->addPropertyMetadata($metadata);
- }
-
- public function hasMemberMetadatas($property)
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since Symfony 2.6 and will be removed in 3.0. Use the hasPropertyMetadata() method instead.', E_USER_DEPRECATED);
- return $this->hasPropertyMetadata($property);
- }
-
- public function getMemberMetadatas($property)
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since Symfony 2.6 and will be removed in 3.0. Use the getPropertyMetadata() method instead.', E_USER_DEPRECATED);
- return $this->getPropertyMetadata($property);
- }
-
- public function hasPropertyMetadata($property)
- {
- return array_key_exists($property, $this->members);
- }
-
- public function getPropertyMetadata($property)
- {
- if (!isset($this->members[$property])) {
- return array();
- }
- return $this->members[$property];
- }
-
- public function getConstrainedProperties()
- {
- return array_keys($this->members);
- }
-
- public function setGroupSequence($groupSequence)
- {
- if ($this->isGroupSequenceProvider()) {
- throw new GroupDefinitionException('Defining a static group sequence is not allowed with a group sequence provider');
- }
- if (\is_array($groupSequence)) {
- $groupSequence = new GroupSequence($groupSequence);
- }
- if (\in_array(Constraint::DEFAULT_GROUP, $groupSequence->groups, true)) {
- throw new GroupDefinitionException(sprintf('The group "%s" is not allowed in group sequences', Constraint::DEFAULT_GROUP));
- }
- if (!\in_array($this->getDefaultGroup(), $groupSequence->groups, true)) {
- throw new GroupDefinitionException(sprintf('The group "%s" is missing in the group sequence', $this->getDefaultGroup()));
- }
- $this->groupSequence = $groupSequence;
- return $this;
- }
-
- public function hasGroupSequence()
- {
- return $this->groupSequence && \count($this->groupSequence->groups) > 0;
- }
-
- public function getGroupSequence()
- {
- return $this->groupSequence;
- }
-
- public function getReflectionClass()
- {
- if (!$this->reflClass) {
- $this->reflClass = new \ReflectionClass($this->getClassName());
- }
- return $this->reflClass;
- }
-
- public function setGroupSequenceProvider($active)
- {
- if ($this->hasGroupSequence()) {
- throw new GroupDefinitionException('Defining a group sequence provider is not allowed with a static group sequence');
- }
- if (!$this->getReflectionClass()->implementsInterface('Symfony\Component\Validator\GroupSequenceProviderInterface')) {
- throw new GroupDefinitionException(sprintf('Class "%s" must implement GroupSequenceProviderInterface', $this->name));
- }
- $this->groupSequenceProvider = $active;
- }
-
- public function isGroupSequenceProvider()
- {
- return $this->groupSequenceProvider;
- }
-
- public function getCascadingStrategy()
- {
- return CascadingStrategy::NONE;
- }
- private function addPropertyMetadata(PropertyMetadataInterface $metadata)
- {
- $property = $metadata->getPropertyName();
- $this->members[$property][] = $metadata;
- }
- }
|