vendor/doctrine/orm/lib/Doctrine/ORM/Tools/SchemaValidator.php line 156

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\ORM\Tools;
  4. use BackedEnum;
  5. use Doctrine\DBAL\Types\AsciiStringType;
  6. use Doctrine\DBAL\Types\BigIntType;
  7. use Doctrine\DBAL\Types\BooleanType;
  8. use Doctrine\DBAL\Types\DecimalType;
  9. use Doctrine\DBAL\Types\FloatType;
  10. use Doctrine\DBAL\Types\GuidType;
  11. use Doctrine\DBAL\Types\IntegerType;
  12. use Doctrine\DBAL\Types\JsonType;
  13. use Doctrine\DBAL\Types\SimpleArrayType;
  14. use Doctrine\DBAL\Types\SmallIntType;
  15. use Doctrine\DBAL\Types\StringType;
  16. use Doctrine\DBAL\Types\TextType;
  17. use Doctrine\DBAL\Types\Type;
  18. use Doctrine\Deprecations\Deprecation;
  19. use Doctrine\ORM\EntityManagerInterface;
  20. use Doctrine\ORM\Mapping\ClassMetadata;
  21. use Doctrine\ORM\Mapping\ClassMetadataInfo;
  22. use ReflectionEnum;
  23. use ReflectionNamedType;
  24. use function array_diff;
  25. use function array_filter;
  26. use function array_key_exists;
  27. use function array_map;
  28. use function array_push;
  29. use function array_search;
  30. use function array_values;
  31. use function assert;
  32. use function class_exists;
  33. use function class_parents;
  34. use function count;
  35. use function get_class;
  36. use function implode;
  37. use function in_array;
  38. use function is_a;
  39. use function sprintf;
  40. use const PHP_VERSION_ID;
  41. /**
  42.  * Performs strict validation of the mapping schema
  43.  *
  44.  * @link        www.doctrine-project.com
  45.  *
  46.  * @psalm-import-type FieldMapping from ClassMetadata
  47.  */
  48. class SchemaValidator
  49. {
  50.     /** @var EntityManagerInterface */
  51.     private $em;
  52.     /**
  53.      * It maps built-in Doctrine types to PHP types
  54.      */
  55.     private const BUILTIN_TYPES_MAP = [
  56.         AsciiStringType::class => 'string',
  57.         BigIntType::class => 'string',
  58.         BooleanType::class => 'bool',
  59.         DecimalType::class => 'string',
  60.         FloatType::class => 'float',
  61.         GuidType::class => 'string',
  62.         IntegerType::class => 'int',
  63.         JsonType::class => 'array',
  64.         SimpleArrayType::class => 'array',
  65.         SmallIntType::class => 'int',
  66.         StringType::class => 'string',
  67.         TextType::class => 'string',
  68.     ];
  69.     public function __construct(EntityManagerInterface $em)
  70.     {
  71.         $this->em $em;
  72.     }
  73.     /**
  74.      * Checks the internal consistency of all mapping files.
  75.      *
  76.      * There are several checks that can't be done at runtime or are too expensive, which can be verified
  77.      * with this command. For example:
  78.      *
  79.      * 1. Check if a relation with "mappedBy" is actually connected to that specified field.
  80.      * 2. Check if "mappedBy" and "inversedBy" are consistent to each other.
  81.      * 3. Check if "referencedColumnName" attributes are really pointing to primary key columns.
  82.      *
  83.      * @psalm-return array<string, list<string>>
  84.      */
  85.     public function validateMapping()
  86.     {
  87.         $errors  = [];
  88.         $cmf     $this->em->getMetadataFactory();
  89.         $classes $cmf->getAllMetadata();
  90.         foreach ($classes as $class) {
  91.             $ce $this->validateClass($class);
  92.             if ($ce) {
  93.                 $errors[$class->name] = $ce;
  94.             }
  95.         }
  96.         return $errors;
  97.     }
  98.     /**
  99.      * Validates a single class of the current.
  100.      *
  101.      * @return string[]
  102.      * @psalm-return list<string>
  103.      */
  104.     public function validateClass(ClassMetadataInfo $class)
  105.     {
  106.         if (! $class instanceof ClassMetadata) {
  107.             Deprecation::trigger(
  108.                 'doctrine/orm',
  109.                 'https://github.com/doctrine/orm/pull/249',
  110.                 'Passing an instance of %s to %s is deprecated, please pass a ClassMetadata instance instead.',
  111.                 get_class($class),
  112.                 __METHOD__,
  113.                 ClassMetadata::class
  114.             );
  115.         }
  116.         $ce  = [];
  117.         $cmf $this->em->getMetadataFactory();
  118.         foreach ($class->fieldMappings as $fieldName => $mapping) {
  119.             if (! Type::hasType($mapping['type'])) {
  120.                 $ce[] = "The field '" $class->name '#' $fieldName "' uses a non-existent type '" $mapping['type'] . "'.";
  121.             }
  122.         }
  123.         // PHP 7.4 introduces the ability to type properties, so we can't validate them in previous versions
  124.         if (PHP_VERSION_ID >= 70400) {
  125.             array_push($ce, ...$this->validatePropertiesTypes($class));
  126.         }
  127.         if ($class->isEmbeddedClass && count($class->associationMappings) > 0) {
  128.             $ce[] = "Embeddable '" $class->name "' does not support associations";
  129.             return $ce;
  130.         }
  131.         foreach ($class->associationMappings as $fieldName => $assoc) {
  132.             if (! class_exists($assoc['targetEntity']) || $cmf->isTransient($assoc['targetEntity'])) {
  133.                 $ce[] = "The target entity '" $assoc['targetEntity'] . "' specified on " $class->name '#' $fieldName ' is unknown or not an entity.';
  134.                 return $ce;
  135.             }
  136.             $targetMetadata $cmf->getMetadataFor($assoc['targetEntity']);
  137.             if ($targetMetadata->isMappedSuperclass) {
  138.                 $ce[] = "The target entity '" $assoc['targetEntity'] . "' specified on " $class->name '#' $fieldName ' is a mapped superclass. This is not possible since there is no table that a foreign key could refer to.';
  139.                 return $ce;
  140.             }
  141.             if ($assoc['mappedBy'] && $assoc['inversedBy']) {
  142.                 $ce[] = 'The association ' $class '#' $fieldName ' cannot be defined as both inverse and owning.';
  143.             }
  144.             if (isset($assoc['id']) && $targetMetadata->containsForeignIdentifier) {
  145.                 $ce[] = "Cannot map association '" $class->name '#' $fieldName ' as identifier, because ' .
  146.                         "the target entity '" $targetMetadata->name "' also maps an association as identifier.";
  147.             }
  148.             if ($assoc['mappedBy']) {
  149.                 if ($targetMetadata->hasField($assoc['mappedBy'])) {
  150.                     $ce[] = 'The association ' $class->name '#' $fieldName ' refers to the owning side ' .
  151.                             'field ' $assoc['targetEntity'] . '#' $assoc['mappedBy'] . ' which is not defined as association, but as field.';
  152.                 }
  153.                 if (! $targetMetadata->hasAssociation($assoc['mappedBy'])) {
  154.                     $ce[] = 'The association ' $class->name '#' $fieldName ' refers to the owning side ' .
  155.                             'field ' $assoc['targetEntity'] . '#' $assoc['mappedBy'] . ' which does not exist.';
  156.                 } elseif ($targetMetadata->associationMappings[$assoc['mappedBy']]['inversedBy'] === null) {
  157.                     $ce[] = 'The field ' $class->name '#' $fieldName ' is on the inverse side of a ' .
  158.                             'bi-directional relationship, but the specified mappedBy association on the target-entity ' .
  159.                             $assoc['targetEntity'] . '#' $assoc['mappedBy'] . ' does not contain the required ' .
  160.                             "'inversedBy=\"" $fieldName "\"' attribute.";
  161.                 } elseif ($targetMetadata->associationMappings[$assoc['mappedBy']]['inversedBy'] !== $fieldName) {
  162.                     $ce[] = 'The mappings ' $class->name '#' $fieldName ' and ' .
  163.                             $assoc['targetEntity'] . '#' $assoc['mappedBy'] . ' are ' .
  164.                             'inconsistent with each other.';
  165.                 }
  166.             }
  167.             if ($assoc['inversedBy']) {
  168.                 if ($targetMetadata->hasField($assoc['inversedBy'])) {
  169.                     $ce[] = 'The association ' $class->name '#' $fieldName ' refers to the inverse side ' .
  170.                             'field ' $assoc['targetEntity'] . '#' $assoc['inversedBy'] . ' which is not defined as association.';
  171.                 }
  172.                 if (! $targetMetadata->hasAssociation($assoc['inversedBy'])) {
  173.                     $ce[] = 'The association ' $class->name '#' $fieldName ' refers to the inverse side ' .
  174.                             'field ' $assoc['targetEntity'] . '#' $assoc['inversedBy'] . ' which does not exist.';
  175.                 } elseif ($targetMetadata->associationMappings[$assoc['inversedBy']]['mappedBy'] === null) {
  176.                     $ce[] = 'The field ' $class->name '#' $fieldName ' is on the owning side of a ' .
  177.                             'bi-directional relationship, but the specified inversedBy association on the target-entity ' .
  178.                             $assoc['targetEntity'] . '#' $assoc['inversedBy'] . ' does not contain the required ' .
  179.                             "'mappedBy=\"" $fieldName "\"' attribute.";
  180.                 } elseif ($targetMetadata->associationMappings[$assoc['inversedBy']]['mappedBy'] !== $fieldName) {
  181.                     $ce[] = 'The mappings ' $class->name '#' $fieldName ' and ' .
  182.                             $assoc['targetEntity'] . '#' $assoc['inversedBy'] . ' are ' .
  183.                             'inconsistent with each other.';
  184.                 }
  185.                 // Verify inverse side/owning side match each other
  186.                 if (array_key_exists($assoc['inversedBy'], $targetMetadata->associationMappings)) {
  187.                     $targetAssoc $targetMetadata->associationMappings[$assoc['inversedBy']];
  188.                     if ($assoc['type'] === ClassMetadata::ONE_TO_ONE && $targetAssoc['type'] !== ClassMetadata::ONE_TO_ONE) {
  189.                         $ce[] = 'If association ' $class->name '#' $fieldName ' is one-to-one, then the inversed ' .
  190.                                 'side ' $targetMetadata->name '#' $assoc['inversedBy'] . ' has to be one-to-one as well.';
  191.                     } elseif ($assoc['type'] === ClassMetadata::MANY_TO_ONE && $targetAssoc['type'] !== ClassMetadata::ONE_TO_MANY) {
  192.                         $ce[] = 'If association ' $class->name '#' $fieldName ' is many-to-one, then the inversed ' .
  193.                                 'side ' $targetMetadata->name '#' $assoc['inversedBy'] . ' has to be one-to-many.';
  194.                     } elseif ($assoc['type'] === ClassMetadata::MANY_TO_MANY && $targetAssoc['type'] !== ClassMetadata::MANY_TO_MANY) {
  195.                         $ce[] = 'If association ' $class->name '#' $fieldName ' is many-to-many, then the inversed ' .
  196.                                 'side ' $targetMetadata->name '#' $assoc['inversedBy'] . ' has to be many-to-many as well.';
  197.                     }
  198.                 }
  199.             }
  200.             if ($assoc['isOwningSide']) {
  201.                 if ($assoc['type'] === ClassMetadata::MANY_TO_MANY) {
  202.                     $identifierColumns $class->getIdentifierColumnNames();
  203.                     foreach ($assoc['joinTable']['joinColumns'] as $joinColumn) {
  204.                         if (! in_array($joinColumn['referencedColumnName'], $identifierColumnstrue)) {
  205.                             $ce[] = "The referenced column name '" $joinColumn['referencedColumnName'] . "' " .
  206.                                 "has to be a primary key column on the target entity class '" $class->name "'.";
  207.                             break;
  208.                         }
  209.                     }
  210.                     $identifierColumns $targetMetadata->getIdentifierColumnNames();
  211.                     foreach ($assoc['joinTable']['inverseJoinColumns'] as $inverseJoinColumn) {
  212.                         if (! in_array($inverseJoinColumn['referencedColumnName'], $identifierColumnstrue)) {
  213.                             $ce[] = "The referenced column name '" $inverseJoinColumn['referencedColumnName'] . "' " .
  214.                                 "has to be a primary key column on the target entity class '" $targetMetadata->name "'.";
  215.                             break;
  216.                         }
  217.                     }
  218.                     if (count($targetMetadata->getIdentifierColumnNames()) !== count($assoc['joinTable']['inverseJoinColumns'])) {
  219.                         $ce[] = "The inverse join columns of the many-to-many table '" $assoc['joinTable']['name'] . "' " .
  220.                                 "have to contain to ALL identifier columns of the target entity '" $targetMetadata->name "', " .
  221.                                 "however '" implode(', 'array_diff($targetMetadata->getIdentifierColumnNames(), array_values($assoc['relationToTargetKeyColumns']))) .
  222.                                 "' are missing.";
  223.                     }
  224.                     if (count($class->getIdentifierColumnNames()) !== count($assoc['joinTable']['joinColumns'])) {
  225.                         $ce[] = "The join columns of the many-to-many table '" $assoc['joinTable']['name'] . "' " .
  226.                                 "have to contain to ALL identifier columns of the source entity '" $class->name "', " .
  227.                                 "however '" implode(', 'array_diff($class->getIdentifierColumnNames(), array_values($assoc['relationToSourceKeyColumns']))) .
  228.                                 "' are missing.";
  229.                     }
  230.                 } elseif ($assoc['type'] & ClassMetadata::TO_ONE) {
  231.                     $identifierColumns $targetMetadata->getIdentifierColumnNames();
  232.                     foreach ($assoc['joinColumns'] as $joinColumn) {
  233.                         if (! in_array($joinColumn['referencedColumnName'], $identifierColumnstrue)) {
  234.                             $ce[] = "The referenced column name '" $joinColumn['referencedColumnName'] . "' " .
  235.                                     "has to be a primary key column on the target entity class '" $targetMetadata->name "'.";
  236.                         }
  237.                     }
  238.                     if (count($identifierColumns) !== count($assoc['joinColumns'])) {
  239.                         $ids = [];
  240.                         foreach ($assoc['joinColumns'] as $joinColumn) {
  241.                             $ids[] = $joinColumn['name'];
  242.                         }
  243.                         $ce[] = "The join columns of the association '" $assoc['fieldName'] . "' " .
  244.                                 "have to match to ALL identifier columns of the target entity '" $targetMetadata->name "', " .
  245.                                 "however '" implode(', 'array_diff($targetMetadata->getIdentifierColumnNames(), $ids)) .
  246.                                 "' are missing.";
  247.                     }
  248.                 }
  249.             }
  250.             if (isset($assoc['orderBy']) && $assoc['orderBy'] !== null) {
  251.                 foreach ($assoc['orderBy'] as $orderField => $orientation) {
  252.                     if (! $targetMetadata->hasField($orderField) && ! $targetMetadata->hasAssociation($orderField)) {
  253.                         $ce[] = 'The association ' $class->name '#' $fieldName ' is ordered by a foreign field ' .
  254.                                 $orderField ' that is not a field on the target entity ' $targetMetadata->name '.';
  255.                         continue;
  256.                     }
  257.                     if ($targetMetadata->isCollectionValuedAssociation($orderField)) {
  258.                         $ce[] = 'The association ' $class->name '#' $fieldName ' is ordered by a field ' .
  259.                                 $orderField ' on ' $targetMetadata->name ' that is a collection-valued association.';
  260.                         continue;
  261.                     }
  262.                     if ($targetMetadata->isAssociationInverseSide($orderField)) {
  263.                         $ce[] = 'The association ' $class->name '#' $fieldName ' is ordered by a field ' .
  264.                                 $orderField ' on ' $targetMetadata->name ' that is the inverse side of an association.';
  265.                         continue;
  266.                     }
  267.                 }
  268.             }
  269.         }
  270.         if (
  271.             ! $class->isInheritanceTypeNone()
  272.             && ! $class->isRootEntity()
  273.             && ($class->reflClass !== null && ! $class->reflClass->isAbstract())
  274.             && ! $class->isMappedSuperclass
  275.             && array_search($class->name$class->discriminatorMaptrue) === false
  276.         ) {
  277.             $ce[] = "Entity class '" $class->name "' is part of inheritance hierarchy, but is " .
  278.                 "not mapped in the root entity '" $class->rootEntityName "' discriminator map. " .
  279.                 'All subclasses must be listed in the discriminator map.';
  280.         }
  281.         foreach ($class->subClasses as $subClass) {
  282.             if (! in_array($class->nameclass_parents($subClass), true)) {
  283.                 $ce[] = "According to the discriminator map class '" $subClass "' has to be a child " .
  284.                         "of '" $class->name "' but these entities are not related through inheritance.";
  285.             }
  286.         }
  287.         return $ce;
  288.     }
  289.     /**
  290.      * Checks if the Database Schema is in sync with the current metadata state.
  291.      *
  292.      * @return bool
  293.      */
  294.     public function schemaInSyncWithMetadata()
  295.     {
  296.         return count($this->getUpdateSchemaList()) === 0;
  297.     }
  298.     /**
  299.      * Returns the list of missing Database Schema updates.
  300.      *
  301.      * @return array<string>
  302.      */
  303.     public function getUpdateSchemaList(): array
  304.     {
  305.         $schemaTool = new SchemaTool($this->em);
  306.         $allMetadata $this->em->getMetadataFactory()->getAllMetadata();
  307.         return $schemaTool->getUpdateSchemaSql($allMetadatatrue);
  308.     }
  309.     /** @return list<string> containing the found issues */
  310.     private function validatePropertiesTypes(ClassMetadataInfo $class): array
  311.     {
  312.         return array_values(
  313.             array_filter(
  314.                 array_map(
  315.                     /** @param FieldMapping $fieldMapping */
  316.                     function (array $fieldMapping) use ($class): ?string {
  317.                         $fieldName $fieldMapping['fieldName'];
  318.                         assert(isset($class->reflFields[$fieldName]));
  319.                         $propertyType $class->reflFields[$fieldName]->getType();
  320.                         // If the field type is not a built-in type, we cannot check it
  321.                         if (! Type::hasType($fieldMapping['type'])) {
  322.                             return null;
  323.                         }
  324.                         // If the property type is not a named type, we cannot check it
  325.                         if (! ($propertyType instanceof ReflectionNamedType)) {
  326.                             return null;
  327.                         }
  328.                         $metadataFieldType $this->findBuiltInType(Type::getType($fieldMapping['type']));
  329.                         //If the metadata field type is not a mapped built-in type, we cannot check it
  330.                         if ($metadataFieldType === null) {
  331.                             return null;
  332.                         }
  333.                         $propertyType $propertyType->getName();
  334.                         // If the property type is the same as the metadata field type, we are ok
  335.                         if ($propertyType === $metadataFieldType) {
  336.                             return null;
  337.                         }
  338.                         if (
  339.                             is_a($propertyTypeBackedEnum::class, true)
  340.                             && $metadataFieldType === (string) (new ReflectionEnum($propertyType))->getBackingType()
  341.                         ) {
  342.                             if (! isset($fieldMapping['enumType']) || $propertyType === $fieldMapping['enumType']) {
  343.                                 return null;
  344.                             }
  345.                             return sprintf(
  346.                                 "The field '%s#%s' has the property type '%s' that differs from the metadata enumType '%s'.",
  347.                                 $class->name,
  348.                                 $fieldName,
  349.                                 $propertyType,
  350.                                 $fieldMapping['enumType']
  351.                             );
  352.                         }
  353.                         return sprintf(
  354.                             "The field '%s#%s' has the property type '%s' that differs from the metadata field type '%s' returned by the '%s' DBAL type.",
  355.                             $class->name,
  356.                             $fieldName,
  357.                             $propertyType,
  358.                             $metadataFieldType,
  359.                             $fieldMapping['type']
  360.                         );
  361.                     },
  362.                     $class->fieldMappings
  363.                 )
  364.             )
  365.         );
  366.     }
  367.     /**
  368.      * The exact DBAL type must be used (no subclasses), since consumers of doctrine/orm may have their own
  369.      * customization around field types.
  370.      */
  371.     private function findBuiltInType(Type $type): ?string
  372.     {
  373.         $typeName get_class($type);
  374.         return self::BUILTIN_TYPES_MAP[$typeName] ?? null;
  375.     }
  376. }