1 <?php
declare(strict_types
=1);
4 * This file is part of the Rapsys AirBundle package.
6 * (c) Raphaël Gertz <symfony@rapsys.eu>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Rapsys\AirBundle\Repository
;
14 use Doctrine\ORM\EntityManagerInterface
;
15 use Doctrine\ORM\EntityRepository
as BaseEntityRepository
;
16 use Doctrine\ORM\Mapping\ClassMetadata
;
17 use Symfony\Component\Routing\RouterInterface
;
18 use Symfony\Contracts\Translation\TranslatorInterface
;
20 use Rapsys\PackBundle\Util\SluggerUtil
;
27 class EntityRepository
extends BaseEntityRepository
{
29 * The RouterInterface instance
31 * @var RouterInterface
33 protected RouterInterface
$router;
36 * The SluggerUtil instance
40 protected SluggerUtil
$slugger;
43 * The table keys array
47 protected array $tableKeys;
50 * The table values array
54 protected array $tableValues;
57 * The TranslatorInterface instance
59 * @var TranslatorInterface
61 protected TranslatorInterface
$translator;
64 * The list of languages
68 protected array $languages = [];
75 protected string $locale;
78 * Initializes a new LocationRepository instance
80 * @param EntityManagerInterface $manager The EntityManagerInterface instance
81 * @param ClassMetadata $class The ClassMetadata instance
82 * @param RouterInterface $router The router instance
83 * @param SluggerUtil $slugger The SluggerUtil instance
84 * @param TranslatorInterface $translator The TranslatorInterface instance
85 * @param array $languages The languages list
86 * @param string $locale The current locale
88 public function __construct(EntityManagerInterface
$manager, ClassMetadata
$class, RouterInterface
$router, SluggerUtil
$slugger, TranslatorInterface
$translator, array $languages, string $locale) {
89 //Call parent constructor
90 parent
::__construct($manager, $class);
93 $this->languages
= $languages;
96 $this->locale
= $locale;
99 $this->router
= $router;
102 $this->slugger
= $slugger;
105 $this->translator
= $translator;
108 $qs = $manager->getConfiguration()->getQuoteStrategy();
109 $dp = $manager->getConnection()->getDatabasePlatform();
111 //Set quoted table names
112 //XXX: this allow to make this code table name independent
113 //XXX: remember to place longer prefix before shorter to avoid strange replacings
115 'RapsysAirBundle:UserDance' => $qs->getJoinTableName($manager->getClassMetadata('RapsysAirBundle:User')->getAssociationMapping('dances'), $manager->getClassMetadata('RapsysAirBundle:User'), $dp),
116 'RapsysAirBundle:UserGroup' => $qs->getJoinTableName($manager->getClassMetadata('RapsysAirBundle:User')->getAssociationMapping('groups'), $manager->getClassMetadata('RapsysAirBundle:User'), $dp),
117 'RapsysAirBundle:UserLocation' => $qs->getJoinTableName($manager->getClassMetadata('RapsysAirBundle:User')->getAssociationMapping('locations'), $manager->getClassMetadata('RapsysAirBundle:User'), $dp),
118 'RapsysAirBundle:Application' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Application'), $dp),
119 'RapsysAirBundle:Civility' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Civility'), $dp),
120 'RapsysAirBundle:Country' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Country'), $dp),
121 'RapsysAirBundle:Dance' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Dance'), $dp),
122 'RapsysAirBundle:Group' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Group'), $dp),
123 'RapsysAirBundle:Location' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Location'), $dp),
124 'RapsysAirBundle:Session' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Session'), $dp),
125 'RapsysAirBundle:Slot' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Slot'), $dp),
126 'RapsysAirBundle:Snippet' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:Snippet'), $dp),
127 'RapsysAirBundle:User' => $qs->getTableName($manager->getClassMetadata('RapsysAirBundle:User'), $dp),
128 //Set accuweather max number of daily pages
130 //Set accuweather max number of hourly pages
133 ':guestdelay' => 2 * 24 * 3600,
135 ':regulardelay' => 3 * 24 * 3600,
137 ':seniordelay' => 4 * 24 * 3600,
140 //Set regular group id
142 //Set senior group id
144 //Set afternoon slot id
146 //Set evening slot id
150 //XXX: days since last session after which guest regain normal priority
152 //XXX: session count until considered at regular delay
154 //XXX: pn_ratio over which considered at regular delay
156 //XXX: tr_ratio diff over which considered at regular delay
159 //XXX: or $manager->getConnection()->quote($this->locale) ???
160 ':locale' => $dp->quoteStringLiteral($this->locale
),
161 //XXX: Set limit used to workaround mariadb subselect optimization
162 ':limit' => PHP_INT_MAX
,
167 //Set quoted table name keys
168 $this->tableKeys
= array_keys($tables);
170 //Set quoted table name values
171 $this->tableValues
= array_values($tables);