<?php namespace MailPoet\Doctrine; if (!defined('ABSPATH')) exit; use MailPoetVendor\Doctrine\ORM\EntityManager; use MailPoetVendor\Doctrine\ORM\EntityRepository as DoctrineEntityRepository; use MailPoetVendor\Doctrine\ORM\Mapping\ClassMetadata; /** * @template T of object */ abstract class Repository { /** @var EntityManager */ protected $entityManager; /** @var ClassMetadata<object> */ protected $classMetadata; /** @var DoctrineEntityRepository<T> */ protected $doctrineRepository; /** @var string[] */ protected $ignoreColumnsForUpdate = [ 'created_at', ]; public function __construct(EntityManager $entityManager) { $this->entityManager = $entityManager; $this->classMetadata = $entityManager->getClassMetadata($this->getEntityClassName()); $this->doctrineRepository = new DoctrineEntityRepository($this->entityManager, $this->classMetadata); } /** * @param array $criteria * @param array|null $orderBy * @param int|null $limit * @param int|null $offset * @return T[] */ public function findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) { return $this->doctrineRepository->findBy($criteria, $orderBy, $limit, $offset); } public function countBy(array $criteria): int { return $this->doctrineRepository->count($criteria); } /** * @param array $criteria * @param array|null $orderBy * @return T|null */ public function findOneBy(array $criteria, array $orderBy = null) { return $this->doctrineRepository->findOneBy($criteria, $orderBy); } /** * @param mixed $id * @return T|null */ public function findOneById($id) { return $this->doctrineRepository->find($id); } /** * @return T[] */ public function findAll() { return $this->doctrineRepository->findAll(); } /** * @param T $entity */ public function persist($entity) { $this->entityManager->persist($entity); } public function truncate() { $tableName = $this->classMetadata->getTableName(); $connection = $this->entityManager->getConnection(); $connection->query('SET FOREIGN_KEY_CHECKS=0'); $q = "TRUNCATE $tableName"; $connection->executeUpdate($q); $connection->query('SET FOREIGN_KEY_CHECKS=1'); } /** * @param T $entity */ public function remove($entity) { $this->entityManager->remove($entity); } /** * @param T $entity */ public function refresh($entity) { $this->entityManager->refresh($entity); } public function flush() { $this->entityManager->flush(); } /** * @return class-string<T> */ abstract protected function getEntityClassName(); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Annotations | Folder | 0700 |
|
|
EntityTraits | Folder | 0700 |
|
|
EventListeners | Folder | 0700 |
|
|
Types | Folder | 0700 |
|
|
Validator | Folder | 0700 |
|
|
ConfigurationFactory.php | File | 2.84 KB | 0644 |
|
ConnectionFactory.php | File | 3.19 KB | 0644 |
|
EntityManagerFactory.php | File | 2.5 KB | 0644 |
|
MetadataCache.php | File | 2.8 KB | 0644 |
|
PSRCacheInvalidArgumentException.php | File | 225 B | 0644 |
|
PSRCacheItem.php | File | 1010 B | 0644 |
|
PSRMetadataCache.php | File | 2.23 KB | 0644 |
|
ProxyClassNameResolver.php | File | 1.02 KB | 0644 |
|
Repository.php | File | 2.62 KB | 0644 |
|
SerializableConnection.php | File | 937 B | 0644 |
|
TablePrefixMetadataFactory.php | File | 2.46 KB | 0644 |
|
index.php | File | 0 B | 0644 |
|