From: Raphaël Gertz Date: Thu, 31 Oct 2024 06:46:48 +0000 (+0100) Subject: Add repository factory X-Git-Tag: 0.0.5~3 X-Git-Url: https://git.rapsys.eu/treebundle/commitdiff_plain/a1cb94127e9710ffc6d46cb63a9e855831ebd465?ds=sidebyside Add repository factory --- diff --git a/Factory.php b/Factory.php new file mode 100644 index 0000000..1856f3f --- /dev/null +++ b/Factory.php @@ -0,0 +1,66 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Rapsys\TreeBundle; + +use Doctrine\ORM\EntityManagerInterface; +use Doctrine\ORM\Repository\RepositoryFactory; +use Doctrine\Persistence\ObjectRepository; + +use Psr\Container\ContainerInterface; + +use Rapsys\PackBundle\Util\SluggerUtil; +use Rapsys\UserBundle\Factory as BaseFactory; + +use Symfony\Component\HttpFoundation\RequestStack; +use Symfony\Component\Routing\RouterInterface; +use Symfony\Contracts\Translation\TranslatorInterface; + +/** + * This factory is used to create default repository objects for entities at runtime. + */ +final class Factory extends BaseFactory { + /** + * Initializes a new RepositoryFactory instance + * + * @param ContainerInterface $container The container instance + * @param RequestStack $request The request stack + * @param RouterInterface $router The router instance + * @param SluggerUtil $slugger The SluggerUtil instance + * @param TranslatorInterface $translator The TranslatorInterface instance + * @param string $locale The current locale + * @param array $languages The languages list + */ + public function __construct(private ContainerInterface $container, private RequestStack $request, private RouterInterface $router, private SluggerUtil $slugger, private TranslatorInterface $translator, private string $locale, private array $languages) { + } + + /** + * Create a new repository instance for an entity class + * + * @param EntityManagerInterface $entityManager The EntityManager instance. + * @param string $entityName The name of the entity. + */ + protected function createRepository(EntityManagerInterface $entityManager, string $entityName): ObjectRepository { + //Get class metadata + $metadata = $entityManager->getClassMetadata($entityName); + + //Get repository class + $repositoryClass = $metadata->customRepositoryClassName ?: $entityManager->getConfiguration()->getDefaultRepositoryClassName(); + + //Set to current locale + //XXX: current request is not yet populated in constructor + $this->locale = $this->request->getCurrentRequest()?->getLocale() ?? $this->locale; + + //Return repository class instance + //XXX: router, slugger, translator, languages and locale arguments will be ignored by default + return new $repositoryClass($entityManager, $metadata, $this->container, $this->router, $this->slugger, $this->translator, $this->locale, $this->languages); + } +}