vendor/gedmo/doctrine-extensions/src/Translatable/Mapping/Event/Adapter/ORM.php line 104

  1. <?php
  2. /*
  3.  * This file is part of the Doctrine Behavioral Extensions package.
  4.  * (c) Gediminas Morkevicius <gediminas.morkevicius@gmail.com> http://www.gediminasm.org
  5.  * For the full copyright and license information, please view the LICENSE
  6.  * file that was distributed with this source code.
  7.  */
  8. namespace Gedmo\Translatable\Mapping\Event\Adapter;
  9. use Doctrine\Common\Proxy\Proxy;
  10. use Doctrine\DBAL\Types\Type;
  11. use Doctrine\DBAL\Types\Types;
  12. use Doctrine\ORM\Mapping\ClassMetadataInfo;
  13. use Gedmo\Exception\RuntimeException;
  14. use Gedmo\Mapping\Event\Adapter\ORM as BaseAdapterORM;
  15. use Gedmo\Tool\Wrapper\AbstractWrapper;
  16. use Gedmo\Translatable\Entity\MappedSuperclass\AbstractPersonalTranslation;
  17. use Gedmo\Translatable\Entity\Translation;
  18. use Gedmo\Translatable\Mapping\Event\TranslatableAdapter;
  19. /**
  20.  * Doctrine event adapter for ORM adapted
  21.  * for Translatable behavior
  22.  *
  23.  * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  24.  */
  25. final class ORM extends BaseAdapterORM implements TranslatableAdapter
  26. {
  27.     public function usesPersonalTranslation($translationClassName)
  28.     {
  29.         return $this
  30.             ->getObjectManager()
  31.             ->getClassMetadata($translationClassName)
  32.             ->getReflectionClass()
  33.             ->isSubclassOf(AbstractPersonalTranslation::class)
  34.         ;
  35.     }
  36.     public function getDefaultTranslationClass()
  37.     {
  38.         return Translation::class;
  39.     }
  40.     public function loadTranslations($object$translationClass$locale$objectClass)
  41.     {
  42.         $em $this->getObjectManager();
  43.         $wrapped AbstractWrapper::wrap($object$em);
  44.         $result = [];
  45.         if ($this->usesPersonalTranslation($translationClass)) {
  46.             // first try to load it using collection
  47.             $found false;
  48.             $metadata $wrapped->getMetadata();
  49.             assert($metadata instanceof ClassMetadataInfo);
  50.             foreach ($metadata->getAssociationMappings() as $assoc) {
  51.                 $isRightCollection $assoc['targetEntity'] === $translationClass
  52.                     && 'object' === $assoc['mappedBy']
  53.                     && ClassMetadataInfo::ONE_TO_MANY === $assoc['type']
  54.                 ;
  55.                 if ($isRightCollection) {
  56.                     $collection $wrapped->getPropertyValue($assoc['fieldName']);
  57.                     foreach ($collection as $trans) {
  58.                         if ($trans->getLocale() === $locale) {
  59.                             $result[] = [
  60.                                 'field' => $trans->getField(),
  61.                                 'content' => $trans->getContent(),
  62.                             ];
  63.                         }
  64.                     }
  65.                     $found true;
  66.                     break;
  67.                 }
  68.             }
  69.             // if collection is not set, fetch it through relation
  70.             if (!$found) {
  71.                 $dql 'SELECT t.content, t.field FROM '.$translationClass.' t';
  72.                 $dql .= ' WHERE t.locale = :locale';
  73.                 $dql .= ' AND t.object = :object';
  74.                 $q $em->createQuery($dql);
  75.                 $q->setParameters([
  76.                     'object' => $object,
  77.                     'locale' => $locale,
  78.                 ]);
  79.                 $result $q->getArrayResult();
  80.             }
  81.         } else {
  82.             // load translated content for all translatable fields
  83.             $objectId $this->foreignKey($wrapped->getIdentifier(), $translationClass);
  84.             // construct query
  85.             $dql 'SELECT t.content, t.field FROM '.$translationClass.' t';
  86.             $dql .= ' WHERE t.foreignKey = :objectId';
  87.             $dql .= ' AND t.locale = :locale';
  88.             $dql .= ' AND t.objectClass = :objectClass';
  89.             // fetch results
  90.             $q $em->createQuery($dql);
  91.             $q->setParameters([
  92.                 'objectId' => $objectId,
  93.                 'locale' => $locale,
  94.                 'objectClass' => $objectClass,
  95.             ]);
  96.             $result $q->getArrayResult();
  97.         }
  98.         return $result;
  99.     }
  100.     public function findTranslation(AbstractWrapper $wrapped$locale$field$translationClass$objectClass)
  101.     {
  102.         $em $this->getObjectManager();
  103.         // first look in identityMap, will save one SELECT query
  104.         foreach ($em->getUnitOfWork()->getIdentityMap() as $className => $objects) {
  105.             if ($className === $translationClass) {
  106.                 foreach ($objects as $trans) {
  107.                     $isRequestedTranslation = !$trans instanceof Proxy
  108.                         && $trans->getLocale() === $locale
  109.                         && $trans->getField() === $field
  110.                     ;
  111.                     if ($isRequestedTranslation) {
  112.                         if ($this->usesPersonalTranslation($translationClass)) {
  113.                             $isRequestedTranslation $trans->getObject() === $wrapped->getObject();
  114.                         } else {
  115.                             $objectId $this->foreignKey($wrapped->getIdentifier(), $translationClass);
  116.                             $isRequestedTranslation $trans->getForeignKey() === $objectId
  117.                                 && $trans->getObjectClass() === $wrapped->getMetadata()->getName()
  118.                             ;
  119.                         }
  120.                     }
  121.                     if ($isRequestedTranslation) {
  122.                         return $trans;
  123.                     }
  124.                 }
  125.             }
  126.         }
  127.         $qb $em->createQueryBuilder();
  128.         $qb->select('trans')
  129.             ->from($translationClass'trans')
  130.             ->where(
  131.                 'trans.locale = :locale',
  132.                 'trans.field = :field'
  133.             )
  134.             ->setParameter('locale'$locale)
  135.             ->setParameter('field'$field)
  136.         ;
  137.         if ($this->usesPersonalTranslation($translationClass)) {
  138.             $qb->andWhere('trans.object = :object');
  139.             if ($wrapped->getIdentifier()) {
  140.                 $qb->setParameter('object'$wrapped->getObject());
  141.             } else {
  142.                 $qb->setParameter('object'null);
  143.             }
  144.         } else {
  145.             $qb->andWhere('trans.foreignKey = :objectId');
  146.             $qb->andWhere('trans.objectClass = :objectClass');
  147.             $qb->setParameter('objectId'$this->foreignKey($wrapped->getIdentifier(), $translationClass));
  148.             $qb->setParameter('objectClass'$objectClass);
  149.         }
  150.         $q $qb->getQuery();
  151.         $q->setMaxResults(1);
  152.         return $q->getOneOrNullResult();
  153.     }
  154.     public function removeAssociatedTranslations(AbstractWrapper $wrapped$transClass$objectClass)
  155.     {
  156.         $qb $this
  157.             ->getObjectManager()
  158.             ->createQueryBuilder()
  159.             ->delete($transClass'trans')
  160.         ;
  161.         if ($this->usesPersonalTranslation($transClass)) {
  162.             $qb->where('trans.object = :object');
  163.             $qb->setParameter('object'$wrapped->getObject());
  164.         } else {
  165.             $qb->where(
  166.                 'trans.foreignKey = :objectId',
  167.                 'trans.objectClass = :class'
  168.             );
  169.             $qb->setParameter('objectId'$this->foreignKey($wrapped->getIdentifier(), $transClass));
  170.             $qb->setParameter('class'$objectClass);
  171.         }
  172.         return $qb->getQuery()->getSingleScalarResult();
  173.     }
  174.     public function insertTranslationRecord($translation)
  175.     {
  176.         $em $this->getObjectManager();
  177.         $meta $em->getClassMetadata(get_class($translation));
  178.         $data = [];
  179.         foreach ($meta->getReflectionProperties() as $fieldName => $reflProp) {
  180.             if (!$meta->isIdentifier($fieldName)) {
  181.                 $data[$meta->getColumnName($fieldName)] = $reflProp->getValue($translation);
  182.             }
  183.         }
  184.         $table $meta->getTableName();
  185.         if (!$em->getConnection()->insert($table$data)) {
  186.             throw new RuntimeException('Failed to insert new Translation record');
  187.         }
  188.     }
  189.     public function getTranslationValue($object$field$value false)
  190.     {
  191.         $em $this->getObjectManager();
  192.         $wrapped AbstractWrapper::wrap($object$em);
  193.         $meta $wrapped->getMetadata();
  194.         $type Type::getType($meta->getTypeOfField($field));
  195.         if (false === $value) {
  196.             $value $wrapped->getPropertyValue($field);
  197.         }
  198.         return $type->convertToDatabaseValue($value$em->getConnection()->getDatabasePlatform());
  199.     }
  200.     public function setTranslationValue($object$field$value)
  201.     {
  202.         $em $this->getObjectManager();
  203.         $wrapped AbstractWrapper::wrap($object$em);
  204.         $meta $wrapped->getMetadata();
  205.         $type Type::getType($meta->getTypeOfField($field));
  206.         $value $type->convertToPHPValue($value$em->getConnection()->getDatabasePlatform());
  207.         $wrapped->setPropertyValue($field$value);
  208.     }
  209.     /**
  210.      * Transforms foreing key of translation to appropriate PHP value
  211.      * to prevent database level cast
  212.      *
  213.      * @param mixed  $key       foreign key value
  214.      * @param string $className translation class name
  215.      *
  216.      * @phpstan-param class-string $className translation class name
  217.      *
  218.      * @return int|string transformed foreign key
  219.      */
  220.     private function foreignKey($keystring $className)
  221.     {
  222.         $em $this->getObjectManager();
  223.         $meta $em->getClassMetadata($className);
  224.         $type Type::getType($meta->getTypeOfField('foreignKey'));
  225.         switch ($type->getName()) {
  226.             case Types::BIGINT:
  227.             case Types::INTEGER:
  228.             case Types::SMALLINT:
  229.                 return (int) $key;
  230.             default:
  231.                 return (string) $key;
  232.         }
  233.     }
  234. }