From: Raphaƫl Gertz <git@rapsys.eu>
Date: Mon, 19 Oct 2020 07:44:35 +0000 (+0200)
Subject: Add location repository with fetchTranslatedLocationByDatePeriod
X-Git-Tag: 0.1.3~14
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/969b12b3caf5ea02feda9a5b0b34f2e21109a76e

Add location repository with fetchTranslatedLocationByDatePeriod
Enable it in doctrine orm config
---

diff --git a/Repository/LocationRepository.php b/Repository/LocationRepository.php
new file mode 100644
index 0000000..80e0996
--- /dev/null
+++ b/Repository/LocationRepository.php
@@ -0,0 +1,37 @@
+<?php
+
+namespace Rapsys\AirBundle\Repository;
+
+use Symfony\Component\Translation\TranslatorInterface;
+
+/**
+ * LocationRepository
+ */
+class LocationRepository extends \Doctrine\ORM\EntityRepository {
+	/**
+	 * Fetch translated location with session by date period
+	 *
+	 * @param $translator The TranslatorInterface instance
+	 * @param $period The date period
+	 * @param $granted The session is granted
+	 */
+	public function fetchTranslatedLocationByDatePeriod(TranslatorInterface $translator, $period, $granted = false) {
+		//Fetch sessions
+		$ret = $this->getEntityManager()
+			->createQuery('SELECT l.id, l.title FROM RapsysAirBundle:Session s JOIN RapsysAirBundle:Location l WHERE '.($granted?'s.application IS NOT NULL AND ':'').'l.id = s.location AND s.date BETWEEN :begin AND :end GROUP BY l.id ORDER BY l.id')
+			->setParameter('begin', $period->getStartDate())
+			->setParameter('end', $period->getEndDate())
+			->getResult();
+
+		//Rekey array
+		$ret = array_column($ret, 'title', 'id');
+
+		//Filter array
+		foreach($ret as $k => $v) {
+			$ret[$k] = $translator->trans($v);
+		}
+
+		//Send result
+		return $ret;
+	}
+}
diff --git a/Resources/config/doctrine/Location.orm.yml b/Resources/config/doctrine/Location.orm.yml
index 0b276fa..abed5dd 100644
--- a/Resources/config/doctrine/Location.orm.yml
+++ b/Resources/config/doctrine/Location.orm.yml
@@ -1,6 +1,6 @@
 Rapsys\AirBundle\Entity\Location:
     type: entity
-    #repositoryClass: Rapsys\AirBundle\Repository\LocationRepository
+    repositoryClass: Rapsys\AirBundle\Repository\LocationRepository
     table: locations
     id:
         id: