+ ->setParameter('minlat', $minlat)
+ ->setParameter('maxlat', $maxlat)
+ ->setParameter('minlong', $minlong)
+ ->setParameter('maxlong', $maxlong)
+ ->getArrayResult();
+
+ //Set return
+ $return = [];
+
+ //Iterate on each location
+ foreach($result as $id => $data) {
+ //With active locations
+ if ($count && $data['count'] < $count) {
+ //Skip unactive locations
+ continue;
+ }
+
+ //Add location
+ $return[$id] = [
+ 'id' => $data['id'],
+ 'title' => $title = $this->translator->trans($data['title']),
+ 'latitude' => $data['latitude'],
+ 'longitude' => $data['longitude'],
+ 'created' => $data['created'],
+ 'updated' => $data['updated'],
+ 'modified' => $data['modified'],
+ 'count' => $data['count'],
+ 'slug' => $slug = $this->slugger->slug($title),
+ 'link' => $this->router->generate('rapsysair_location_view', ['id' => $data['id'], 'location' => $slug])
+ ];
+ }
+
+ //Return return
+ return $return;
+ }
+
+ /**
+ * Find locations by user id sorted by period as array
+ *
+ * @param int $userId The user id
+ * @param DatePeriod $period The period
+ * @return array The locations array
+ */
+ public function findAllByUserIdAsArray(int $userId, \DatePeriod $period, $distance = 15): array {
+ //Set the request
+ //TODO: ajouter pays ???
+ $req = <<<SQL
+SELECT
+ a.id,
+ a.title,
+ a.city,
+ a.latitude,
+ a.longitude,
+ a.created,
+ a.updated,
+ MAX(GREATEST(a.modified, COALESCE(s3.created, '1970-01-01'), COALESCE(s3.updated, '1970-01-01'))) AS modified,
+ a.pcount,
+ COUNT(s3.id) AS tcount
+FROM (
+ SELECT
+ b.id,
+ b.title,
+ b.city,
+ b.latitude,
+ b.longitude,
+ b.created,
+ b.updated,
+ MAX(GREATEST(b.modified, COALESCE(s2.created, '1970-01-01'), COALESCE(s2.updated, '1970-01-01'))) AS modified,
+ COUNT(s2.id) AS pcount
+ FROM (
+ SELECT
+ l2.id,
+ l2.city,
+ l2.title,
+ l2.latitude,
+ l2.longitude,
+ l2.created,
+ l2.updated,
+ GREATEST(l2.created, l2.updated) AS modified
+ FROM (
+ SELECT
+ l.id,
+ l.latitude,
+ l.longitude
+ FROM applications AS a
+ JOIN sessions AS s ON (s.id = a.session_id)
+ JOIN locations AS l ON (l.id = s.location_id)
+ WHERE a.user_id = :id
+ GROUP BY l.id
+ ORDER BY NULL
+ LIMIT 0, :limit
+ ) AS a
+ JOIN locations AS l2
+ WHERE ACOS(SIN(RADIANS(a.latitude))*SIN(RADIANS(l2.latitude))+COS(RADIANS(a.latitude))*COS(RADIANS(l2.latitude))*COS(RADIANS(a.longitude - l2.longitude)))*40030.17/2/PI() BETWEEN 0 AND :distance
+ GROUP BY l2.id
+ ORDER BY NULL
+ LIMIT 0, :limit
+ ) AS b
+ LEFT JOIN sessions AS s2 ON (s2.location_id = b.id AND s2.date BETWEEN :begin AND :end)
+ GROUP BY b.id
+ ORDER BY NULL
+ LIMIT 0, :limit
+) AS a
+LEFT JOIN sessions AS s3 ON (s3.location_id = a.id)
+GROUP BY a.id
+ORDER BY pcount DESC, tcount DESC, a.id
+SQL;
+
+ //Replace bundle entity name by table name
+ $req = str_replace($this->tableKeys, $this->tableValues, $req);
+
+ //Get result set mapping instance
+ //XXX: DEBUG: see ../blog.orig/src/Rapsys/BlogBundle/Repository/ArticleRepository.php
+ $rsm = new ResultSetMapping();
+
+ //Declare all fields
+ //XXX: see vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/Types.php
+ //addScalarResult($sqlColName, $resColName, $type = 'string');
+ $rsm->addScalarResult('id', 'id', 'integer')
+ ->addScalarResult('title', 'title', 'string')
+ ->addScalarResult('city', 'city', 'string')
+ ->addScalarResult('latitude', 'latitude', 'float')
+ ->addScalarResult('longitude', 'longitude', 'float')
+ ->addScalarResult('created', 'created', 'datetime')
+ ->addScalarResult('updated', 'updated', 'datetime')
+ ->addScalarResult('modified', 'modified', 'datetime')
+ ->addScalarResult('pcount', 'pcount', 'integer')
+ ->addScalarResult('tcount', 'tcount', 'integer');
+
+ //Get result
+ $result = $this->_em
+ ->createNativeQuery($req, $rsm)
+ ->setParameter('begin', $period->getStartDate())
+ ->setParameter('end', $period->getEndDate())
+ ->setParameter('id', $userId)
+ ->setParameter('distance', $distance)
+ ->getArrayResult();
+
+ //Set return
+ $return = [];
+
+ //Iterate on each location
+ foreach($result as $id => $data) {
+ //With active locations
+ if (!empty($result[0]['tcount']) && empty($data['tcount'])) {
+ //Skip unactive locations
+ break;
+ }
+
+ //Add location
+ $return[$id] = [
+ 'id' => $data['id'],
+ 'city' => $data['city'],
+ 'title' => $title = $this->translator->trans($data['title']),
+ 'at' => $this->translator->trans('at '.$data['title']),
+ 'miniature' => $this->translator->trans($data['title'].' miniature'),
+ 'latitude' => $data['latitude'],
+ 'longitude' => $data['longitude'],
+ 'created' => $data['created'],
+ 'updated' => $data['updated'],
+ 'modified' => $data['modified'],
+ 'pcount' => $data['pcount'],
+ 'tcount' => $data['tcount'],
+ 'slug' => $slug = $this->slugger->slug($title),
+ 'link' => $this->router->generate('rapsysair_location_view', ['id' => $data['id'], 'location' => $slug])
+ ];
+ }
+
+ //Return return
+ return $return;
+ }
+
+ /**
+ * Find location as array by id
+ *
+ * @param int $id The location id
+ * @param string $locale The locale
+ * @return array The location data
+ */
+ public function findOneByIdAsArray(int $id, string $locale): ?array {
+ //Set the request
+ $req = <<<SQL
+SELECT
+ l.id,
+ l.title,
+ l.city,
+ l.latitude,
+ l.longitude,
+ l.indoor,
+ l.zipcode,
+ MAX(GREATEST(l.created, l.updated, l2.created, l2.updated)) AS modified,
+ SUBSTRING(l.zipcode, 1, 2) AS city_id,
+ ROUND(AVG(l2.latitude), 6) AS city_latitude,
+ ROUND(AVG(l2.longitude), 6) AS city_longitude
+FROM Rapsys\AirBundle\Entity\Location AS l
+JOIN Rapsys\AirBundle\Entity\Location AS l2 ON (l2.city = l.city AND SUBSTRING(l2.zipcode, 1, 2) = SUBSTRING(l.zipcode, 1, 2))
+WHERE l.id = :id
+GROUP BY l.id
+LIMIT 0, 1
+SQL;
+
+ //Replace bundle entity name by table name
+ $req = str_replace($this->tableKeys, $this->tableValues, $req);