Factory
1 year ago
Loader
1 year ago
AutoMappingStrategy.php
4 years ago
CascadingStrategy.php
4 years ago
ClassMetadata.php
1 year ago
ClassMetadataInterface.php
4 years ago
GenericMetadata.php
4 years ago
GetterMetadata.php
1 year ago
MemberMetadata.php
4 years ago
MetadataInterface.php
4 years ago
PropertyMetadata.php
5 months ago
PropertyMetadataInterface.php
4 years ago
TraversalStrategy.php
4 years ago
index.php
3 years ago
ClassMetadata.php
263 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Validator\Mapping; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\Validator\Constraint; |
| 5 | use MailPoetVendor\Symfony\Component\Validator\Constraints\Cascade; |
| 6 | use MailPoetVendor\Symfony\Component\Validator\Constraints\Composite; |
| 7 | use MailPoetVendor\Symfony\Component\Validator\Constraints\GroupSequence; |
| 8 | use MailPoetVendor\Symfony\Component\Validator\Constraints\Traverse; |
| 9 | use MailPoetVendor\Symfony\Component\Validator\Constraints\Valid; |
| 10 | use MailPoetVendor\Symfony\Component\Validator\Exception\ConstraintDefinitionException; |
| 11 | use MailPoetVendor\Symfony\Component\Validator\Exception\GroupDefinitionException; |
| 12 | class ClassMetadata extends GenericMetadata implements ClassMetadataInterface |
| 13 | { |
| 14 | public $name; |
| 15 | public $defaultGroup; |
| 16 | public $members = []; |
| 17 | public $properties = []; |
| 18 | public $getters = []; |
| 19 | public $groupSequence = []; |
| 20 | public $groupSequenceProvider = \false; |
| 21 | public $traversalStrategy = TraversalStrategy::IMPLICIT; |
| 22 | private $reflClass; |
| 23 | public function __construct(string $class) |
| 24 | { |
| 25 | $this->name = $class; |
| 26 | // class name without namespace |
| 27 | if (\false !== ($nsSep = \strrpos($class, '\\'))) { |
| 28 | $this->defaultGroup = \substr($class, $nsSep + 1); |
| 29 | } else { |
| 30 | $this->defaultGroup = $class; |
| 31 | } |
| 32 | } |
| 33 | public function __sleep() |
| 34 | { |
| 35 | $parentProperties = parent::__sleep(); |
| 36 | // Don't store the cascading strategy. Classes never cascade. |
| 37 | unset($parentProperties[\array_search('cascadingStrategy', $parentProperties)]); |
| 38 | return \array_merge($parentProperties, ['getters', 'groupSequence', 'groupSequenceProvider', 'members', 'name', 'properties', 'defaultGroup']); |
| 39 | } |
| 40 | public function getClassName() |
| 41 | { |
| 42 | return $this->name; |
| 43 | } |
| 44 | public function getDefaultGroup() |
| 45 | { |
| 46 | return $this->defaultGroup; |
| 47 | } |
| 48 | public function addConstraint(Constraint $constraint) |
| 49 | { |
| 50 | $this->checkConstraint($constraint); |
| 51 | if ($constraint instanceof Traverse) { |
| 52 | if ($constraint->traverse) { |
| 53 | // If traverse is true, traversal should be explicitly enabled |
| 54 | $this->traversalStrategy = TraversalStrategy::TRAVERSE; |
| 55 | } else { |
| 56 | // If traverse is false, traversal should be explicitly disabled |
| 57 | $this->traversalStrategy = TraversalStrategy::NONE; |
| 58 | } |
| 59 | // The constraint is not added |
| 60 | return $this; |
| 61 | } |
| 62 | if ($constraint instanceof Cascade) { |
| 63 | if (\PHP_VERSION_ID < 70400) { |
| 64 | throw new ConstraintDefinitionException(\sprintf('The constraint "%s" requires PHP 7.4.', Cascade::class)); |
| 65 | } |
| 66 | $this->cascadingStrategy = CascadingStrategy::CASCADE; |
| 67 | foreach ($this->getReflectionClass()->getProperties() as $property) { |
| 68 | if ($this->canCascade($property->getType())) { |
| 69 | $this->addPropertyConstraint($property->getName(), new Valid()); |
| 70 | } |
| 71 | } |
| 72 | // The constraint is not added |
| 73 | return $this; |
| 74 | } |
| 75 | $constraint->addImplicitGroupName($this->getDefaultGroup()); |
| 76 | parent::addConstraint($constraint); |
| 77 | return $this; |
| 78 | } |
| 79 | public function addPropertyConstraint(string $property, Constraint $constraint) |
| 80 | { |
| 81 | if (!isset($this->properties[$property])) { |
| 82 | $this->properties[$property] = new PropertyMetadata($this->getClassName(), $property); |
| 83 | $this->addPropertyMetadata($this->properties[$property]); |
| 84 | } |
| 85 | $constraint->addImplicitGroupName($this->getDefaultGroup()); |
| 86 | $this->properties[$property]->addConstraint($constraint); |
| 87 | return $this; |
| 88 | } |
| 89 | public function addPropertyConstraints(string $property, array $constraints) |
| 90 | { |
| 91 | foreach ($constraints as $constraint) { |
| 92 | $this->addPropertyConstraint($property, $constraint); |
| 93 | } |
| 94 | return $this; |
| 95 | } |
| 96 | public function addGetterConstraint(string $property, Constraint $constraint) |
| 97 | { |
| 98 | if (!isset($this->getters[$property])) { |
| 99 | $this->getters[$property] = new GetterMetadata($this->getClassName(), $property); |
| 100 | $this->addPropertyMetadata($this->getters[$property]); |
| 101 | } |
| 102 | $constraint->addImplicitGroupName($this->getDefaultGroup()); |
| 103 | $this->getters[$property]->addConstraint($constraint); |
| 104 | return $this; |
| 105 | } |
| 106 | public function addGetterMethodConstraint(string $property, string $method, Constraint $constraint) |
| 107 | { |
| 108 | if (!isset($this->getters[$property])) { |
| 109 | $this->getters[$property] = new GetterMetadata($this->getClassName(), $property, $method); |
| 110 | $this->addPropertyMetadata($this->getters[$property]); |
| 111 | } |
| 112 | $constraint->addImplicitGroupName($this->getDefaultGroup()); |
| 113 | $this->getters[$property]->addConstraint($constraint); |
| 114 | return $this; |
| 115 | } |
| 116 | public function addGetterConstraints(string $property, array $constraints) |
| 117 | { |
| 118 | foreach ($constraints as $constraint) { |
| 119 | $this->addGetterConstraint($property, $constraint); |
| 120 | } |
| 121 | return $this; |
| 122 | } |
| 123 | public function addGetterMethodConstraints(string $property, string $method, array $constraints) |
| 124 | { |
| 125 | foreach ($constraints as $constraint) { |
| 126 | $this->addGetterMethodConstraint($property, $method, $constraint); |
| 127 | } |
| 128 | return $this; |
| 129 | } |
| 130 | public function mergeConstraints(self $source) |
| 131 | { |
| 132 | if ($source->isGroupSequenceProvider()) { |
| 133 | $this->setGroupSequenceProvider(\true); |
| 134 | } |
| 135 | foreach ($source->getConstraints() as $constraint) { |
| 136 | $this->addConstraint(clone $constraint); |
| 137 | } |
| 138 | foreach ($source->getConstrainedProperties() as $property) { |
| 139 | foreach ($source->getPropertyMetadata($property) as $member) { |
| 140 | $member = clone $member; |
| 141 | foreach ($member->getConstraints() as $constraint) { |
| 142 | if (\in_array($constraint::DEFAULT_GROUP, $constraint->groups, \true)) { |
| 143 | $member->constraintsByGroup[$this->getDefaultGroup()][] = $constraint; |
| 144 | } |
| 145 | $constraint->addImplicitGroupName($this->getDefaultGroup()); |
| 146 | } |
| 147 | if ($member instanceof MemberMetadata && !$member->isPrivate($this->name)) { |
| 148 | $property = $member->getPropertyName(); |
| 149 | $this->members[$property][] = $member; |
| 150 | if ($member instanceof PropertyMetadata && !isset($this->properties[$property])) { |
| 151 | $this->properties[$property] = $member; |
| 152 | } elseif ($member instanceof GetterMetadata && !isset($this->getters[$property])) { |
| 153 | $this->getters[$property] = $member; |
| 154 | } |
| 155 | } else { |
| 156 | $this->addPropertyMetadata($member); |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | public function hasPropertyMetadata(string $property) |
| 162 | { |
| 163 | return \array_key_exists($property, $this->members); |
| 164 | } |
| 165 | public function getPropertyMetadata(string $property) |
| 166 | { |
| 167 | return $this->members[$property] ?? []; |
| 168 | } |
| 169 | public function getConstrainedProperties() |
| 170 | { |
| 171 | return \array_keys($this->members); |
| 172 | } |
| 173 | public function setGroupSequence($groupSequence) |
| 174 | { |
| 175 | if ($this->isGroupSequenceProvider()) { |
| 176 | throw new GroupDefinitionException('Defining a static group sequence is not allowed with a group sequence provider.'); |
| 177 | } |
| 178 | if (\is_array($groupSequence)) { |
| 179 | $groupSequence = new GroupSequence($groupSequence); |
| 180 | } |
| 181 | if (\in_array(Constraint::DEFAULT_GROUP, $groupSequence->groups, \true)) { |
| 182 | throw new GroupDefinitionException(\sprintf('The group "%s" is not allowed in group sequences.', Constraint::DEFAULT_GROUP)); |
| 183 | } |
| 184 | if (!\in_array($this->getDefaultGroup(), $groupSequence->groups, \true)) { |
| 185 | throw new GroupDefinitionException(\sprintf('The group "%s" is missing in the group sequence.', $this->getDefaultGroup())); |
| 186 | } |
| 187 | $this->groupSequence = $groupSequence; |
| 188 | return $this; |
| 189 | } |
| 190 | public function hasGroupSequence() |
| 191 | { |
| 192 | return $this->groupSequence && \count($this->groupSequence->groups) > 0; |
| 193 | } |
| 194 | public function getGroupSequence() |
| 195 | { |
| 196 | return $this->groupSequence; |
| 197 | } |
| 198 | public function getReflectionClass() |
| 199 | { |
| 200 | if (!$this->reflClass) { |
| 201 | $this->reflClass = new \ReflectionClass($this->getClassName()); |
| 202 | } |
| 203 | return $this->reflClass; |
| 204 | } |
| 205 | public function setGroupSequenceProvider(bool $active) |
| 206 | { |
| 207 | if ($this->hasGroupSequence()) { |
| 208 | throw new GroupDefinitionException('Defining a group sequence provider is not allowed with a static group sequence.'); |
| 209 | } |
| 210 | if (!$this->getReflectionClass()->implementsInterface('MailPoetVendor\\Symfony\\Component\\Validator\\GroupSequenceProviderInterface')) { |
| 211 | throw new GroupDefinitionException(\sprintf('Class "%s" must implement GroupSequenceProviderInterface.', $this->name)); |
| 212 | } |
| 213 | $this->groupSequenceProvider = $active; |
| 214 | } |
| 215 | public function isGroupSequenceProvider() |
| 216 | { |
| 217 | return $this->groupSequenceProvider; |
| 218 | } |
| 219 | public function getCascadingStrategy() |
| 220 | { |
| 221 | return $this->cascadingStrategy; |
| 222 | } |
| 223 | private function addPropertyMetadata(PropertyMetadataInterface $metadata) |
| 224 | { |
| 225 | $property = $metadata->getPropertyName(); |
| 226 | $this->members[$property][] = $metadata; |
| 227 | } |
| 228 | private function checkConstraint(Constraint $constraint) |
| 229 | { |
| 230 | if (!\in_array(Constraint::CLASS_CONSTRAINT, (array) $constraint->getTargets(), \true)) { |
| 231 | throw new ConstraintDefinitionException(\sprintf('The constraint "%s" cannot be put on classes.', \get_debug_type($constraint))); |
| 232 | } |
| 233 | if ($constraint instanceof Composite) { |
| 234 | foreach ($constraint->getNestedConstraints() as $nestedConstraint) { |
| 235 | $this->checkConstraint($nestedConstraint); |
| 236 | } |
| 237 | } |
| 238 | } |
| 239 | private function canCascade(?\ReflectionType $type = null) : bool |
| 240 | { |
| 241 | if (null === $type) { |
| 242 | return \false; |
| 243 | } |
| 244 | if ($type instanceof \ReflectionIntersectionType) { |
| 245 | foreach ($type->getTypes() as $nestedType) { |
| 246 | if ($this->canCascade($nestedType)) { |
| 247 | return \true; |
| 248 | } |
| 249 | } |
| 250 | return \false; |
| 251 | } |
| 252 | if ($type instanceof \ReflectionUnionType) { |
| 253 | foreach ($type->getTypes() as $nestedType) { |
| 254 | if (!$this->canCascade($nestedType)) { |
| 255 | return \false; |
| 256 | } |
| 257 | } |
| 258 | return \true; |
| 259 | } |
| 260 | return $type instanceof \ReflectionNamedType && (\in_array($type->getName(), ['array', 'null'], \true) || \class_exists($type->getName())); |
| 261 | } |
| 262 | } |
| 263 |