X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/954ca125d28b5fd3437fc889ef32565ad36c3765..9413ff9b480fca9b0be354069e478758a1cee794:/Repository/SessionRepository.php diff --git a/Repository/SessionRepository.php b/Repository/SessionRepository.php index 7c6f574..c310b54 100644 --- a/Repository/SessionRepository.php +++ b/Repository/SessionRepository.php @@ -12,13 +12,21 @@ namespace Rapsys\AirBundle\Repository; use Doctrine\DBAL\Types\Types; +use Doctrine\ORM\AbstractQuery; use Doctrine\ORM\Query\ResultSetMapping; + use Symfony\Component\Routing\Generator\UrlGeneratorInterface; +use Rapsys\AirBundle\Entity\Application; +use Rapsys\AirBundle\Entity\Location; +use Rapsys\AirBundle\Entity\Session; +use Rapsys\AirBundle\Entity\Slot; +use Rapsys\AirBundle\Repository; + /** * SessionRepository */ -class SessionRepository extends EntityRepository { +class SessionRepository extends Repository { ///Set glyphs //TODO: document utf-8 codes ? //TODO: use unknown == ? symbol by default ??? @@ -47,10 +55,9 @@ class SessionRepository extends EntityRepository { * Find session as array by id * * @param int $id The session id - * @param string $locale The locale * @return array The session data */ - public function findOneByIdAsArray(int $id, string $locale): ?array { + public function findOneByIdAsArray(int $id): ?array { //Set the request $req =<<_em ->createNativeQuery($req, $rsm) ->setParameter('id', $id) - ->setParameter('locale', $locale) ->getOneOrNullResult(); //Without result @@ -207,7 +213,7 @@ SQL; } //Set route - $route = 'rapsys_air_session_view'; + $route = 'rapsysair_session_view'; //Set route params $routeParams = ['id' => $id, 'location' => $this->slugger->slug($this->translator->trans($result['l_title']))]; @@ -249,7 +255,7 @@ SQL; 'longitude' => $result['l_longitude'], 'indoor' => $result['l_indoor'], 'slug' => $routeParams['location'], - 'link' => $this->router->generate('rapsys_air_location_view', ['id' => $result['l_id'], 'location' => $routeParams['location']]) + 'link' => $this->router->generate('rapsysair_location_view', ['id' => $result['l_id'], 'location' => $routeParams['location']]) ], 'slot' => [ 'id' => $result['t_id'], @@ -269,15 +275,15 @@ SQL; 'name' => $this->translator->trans($result['ad_name']), 'type' => $this->translator->trans($result['ad_type']), 'slug' => $routeParams['dance'] = $this->slugger->slug($this->translator->trans($result['ad_name'].' '.lcfirst($result['ad_type']))), - 'link' => $this->router->generate('rapsys_air_dance_view', ['id' => $result['ad_id'], 'name' => $this->slugger->slug($this->translator->trans($result['ad_name'])), 'type' => $this->slugger->slug($this->translator->trans($result['ad_type']))]) + 'link' => $this->router->generate('rapsysair_dance_view', ['id' => $result['ad_id'], 'name' => $this->slugger->slug($this->translator->trans($result['ad_name'])), 'type' => $this->slugger->slug($this->translator->trans($result['ad_type']))]) ], 'user' => [ 'id' => $result['au_id'], 'by' => $this->translator->trans('by %pseudonym%', [ '%pseudonym%' => $result['au_pseudonym'] ]), 'title' => $result['au_pseudonym'], 'slug' => $routeParams['user'] = $this->slugger->slug($result['au_pseudonym']), - 'link' => $result['au_id'] == 1 && $routeParams['user'] == 'milonga-raphael' ? $this->router->generate('rapsys_air_user_milongaraphael') : $this->router->generate('rapsys_air_user_view', ['id' => $result['au_id'], 'user' => $routeParams['user']]), - 'contact' => $this->router->generate('rapsys_air_contact', ['id' => $result['au_id'], 'user' => $routeParams['user']]) + 'link' => $result['au_id'] == 1 && $routeParams['user'] == 'milonga-raphael' ? $this->router->generate('rapsysair_user_milongaraphael') : $this->router->generate('rapsysair_user_view', ['id' => $result['au_id'], 'user' => $routeParams['user']]), + 'contact' => $this->router->generate('rapsysair_contact', ['id' => $result['au_id'], 'user' => $routeParams['user']]) ], 'id' => $result['a_id'], 'canceled' => $result['a_canceled'] @@ -369,9 +375,9 @@ SQL; } //With current locale - if ($fallback === $locale) { + if ($fallback === $this->locale) { //Set current locale title - $titles[$locale] = $this->translator->trans($this->languages[$locale]); + $titles[$this->locale] = $this->translator->trans($this->languages[$this->locale]); //Without current locale } else { //Iterate on other locales @@ -409,38 +415,13 @@ SQL; * Find sessions as calendar array by date period * * @param DatePeriod $period The date period - * @param string $locale The locale * @param ?bool $granted The session is granted * @param ?float $latitude The latitude * @param ?float $longitude The longitude * @param ?int $userId The user id * @return array The session data */ - - //TODO: calculer un titre de la page intelligent ? - //(utiliser la liste des villes par exemple ???) - - //TODO: finir cette merde pour toutes les pages de listing !!! - - //TODO: compute a max updated ??? - - //TODO: à priori si l'userId est fourni, qu'on veut pas juste les granted et que l'userId correspond pas à l'utilisateur à qui ça a été attribué et que la personne a demandé la session, on a envie de lui afficher le disputed ??? - //(ce serait même plus un refused, voir le cas où c'est pas encore attribué, comment ça se passe ???) - - //TODO: la gestion des sessions pas granted et contestées est à faire au niveau du contrôleur userView si l'user est connecté - //On peut utiliser le système des applications, l'id user dans application et l'id utilisateur connecté pour faire la détection - //Ça se résume à coller un $class[] = 'disputed' ou 'lost' ? sur la session ??? - - #TODO: mettre en grisé les sessions pas granted - #TODO: mettre en highlight (violet) les sessions de la location ou de l'user si fourni - //TODO: penser au cas où on est sur un utilisateur, on veut mettre - //TODO: faire la détection des séances perdues par l'utilisateur ??? - //XXX: à priori ça va se jouer au niveau du contrôleur où on va setter ça - /*} elseif (!empty($userId) && $session['au_id'] != $userId) { - $class[] = 'disputed';*/ - - - public function findAllByPeriodAsArray(\DatePeriod $period, string $locale, ?bool $granted = null, ?float $latitude = null, ?float $longitude = null, ?int $userId = null) { + public function findAllByPeriodAsCalendarArray(\DatePeriod $period, ?bool $granted = null, ?float $latitude = null, ?float $longitude = null, ?int $userId = null): array { //Init granted sql $grantSql = ''; @@ -459,7 +440,7 @@ SQL; //XXX: get every location between 0 and 15 km of latitude and longitude $req = <<addScalarResult('t_title', 't_title', 'string') ->addScalarResult('l_id', 'l_id', 'integer') ->addScalarResult('l_title', 'l_title', 'string') + ->addScalarResult('l_address', 'l_address', 'string') ->addScalarResult('l_zipcode', 'l_zipcode', 'string') ->addScalarResult('l_city', 'l_city', 'string') ->addScalarResult('l_latitude', 'l_latitude', 'float') @@ -627,26 +611,26 @@ SQL; ->addScalarResult('ad_type', 'ad_type', 'string') ->addScalarResult('au_id', 'au_id', 'integer') ->addScalarResult('au_pseudonym', 'au_pseudonym', 'string') - ->addScalarResult('p_rate', 'p_rate', 'integer') ->addScalarResult('p_hat', 'p_hat', 'boolean') - //XXX: is a string because of \n separator - ->addScalarResult('sau_id', 'sau_id', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sau_pseudonym', 'sau_pseudonym', 'string') + ->addScalarResult('p_rate', 'p_rate', 'integer') + ->addScalarResult('p_short', 'p_short', 'string') //XXX: is a string because of \n separator ->addScalarResult('sad_id', 'sad_id', 'string') //XXX: is a string because of \n separator ->addScalarResult('sad_name', 'sad_name', 'string') //XXX: is a string because of \n separator ->addScalarResult('sad_type', 'sad_type', 'string') + //XXX: is a string because of \n separator + ->addScalarResult('sau_id', 'sau_id', 'string') + //XXX: is a string because of \n separator + ->addScalarResult('sau_pseudonym', 'sau_pseudonym', 'string') ->addIndexByScalar('id'); //Fetch result $res = $this->_em ->createNativeQuery($req, $rsm) ->setParameter('begin', $period->getStartDate()) - ->setParameter('end', $period->getEndDate()) - ->setParameter('locale', $locale); + ->setParameter('end', $period->getEndDate()); //Add optional location ids if (!empty($locationIds)) { @@ -663,7 +647,7 @@ SQL; $month = null; //Set route - $route = 'rapsys_air_session_view'; + $route = 'rapsysair_session_view'; //Iterate on each day foreach($period as $date) { @@ -847,6 +831,7 @@ SQL; $rate = [ 'glyph' => self::GLYPHS['Free'], 'rate' => null, + 'short' => $session['p_short'], 'title' => $this->translator->trans('Free') ]; @@ -861,7 +846,7 @@ SQL; $rate['rate'] = $session['p_rate']; //Set title - $rate['title'] = $this->translator->trans('To the hat, ideally %rate% €', ['%rate%' => $session['p_rate']]); + $rate['title'] = $this->translator->trans('%rate%€ to the hat', ['%rate%' => $session['p_rate']]); //Without rate } else { //Set title @@ -920,6 +905,7 @@ SQL; 'location' => [ 'id' => $session['l_id'], 'title' => $this->translator->trans($session['l_title']), + 'address' => $session['l_address'], 'latitude' => $session['l_latitude'], 'longitude' => $session['l_longitude'], 'indoor' => $session['l_indoor'], @@ -935,6 +921,7 @@ SQL; 'title' => $this->translator->trans($session['t_title']) ], 'rate' => $rate, + 'modified' => $session['modified'], 'applications' => $applications ]; } @@ -948,67 +935,50 @@ SQL; return $calendar; } - /** - * Find session by location, slot and date - * - * @param $location The location - * @param $slot The slot - * @param $date The datetime - */ - public function findOneByLocationSlotDate($location, $slot, $date) { - //Return sessions - return $this->getEntityManager() - ->createQuery('SELECT s FROM RapsysAirBundle:Session s WHERE (s.location = :location AND s.slot = :slot AND s.date = :date)') - ->setParameter('location', $location) - ->setParameter('slot', $slot) - ->setParameter('date', $date) - ->getSingleResult(); - } /** - * Find sessions by date period + * Find sessions by user id and synchronized date time * - * @param $period The date period + * @param int $userId The user id + * @param DateTime $synchronized The synchronized datetime + * @return array The session data */ - public function findAllByDatePeriod($period) { - //Return sessions - return $this->getEntityManager() - ->createQuery('SELECT s FROM RapsysAirBundle:Session s WHERE s.date BETWEEN :begin AND :end') - ->setParameter('begin', $period->getStartDate()) - ->setParameter('end', $period->getEndDate()) - ->getResult(); - } + public function findAllByUserIdSynchronized(int $userId, \DateTime $synchronized = new \DateTime('1970-01-01')): array { + //Set the request + $req = <<getEntityManager() - ->createQuery('SELECT s FROM RapsysAirBundle:Session s WHERE (s.location = :location AND s.date BETWEEN :begin AND :end)') - ->setParameter('location', $location) - ->setParameter('begin', $period->getStartDate()) - ->setParameter('end', $period->getEndDate()) - ->getResult(); - } + //Replace bundle entity name by table name + $req = str_replace($this->tableKeys, $this->tableValues, $req); + + //Get result set mapping instance + $rsm = new ResultSetMapping(); + + //Declare dance id field + $rsm->addScalarResult('dance_id', 'dance_id', 'integer'); + + //Set dance sql part + $danceSql = ''; + + //With user dance + if ( + $userDances = $this->_em + ->createNativeQuery($req, $rsm) + ->setParameter('uid', $userId) + ->getResult(AbstractQuery::HYDRATE_SCALAR_COLUMN) + ) { + //Set dance sql part + $danceSql = ' AND a.dance_id IN (:dids)'; + } - /** - * Find one session by location and user id within last month - * - * @param $location The location id - * @param $user The user id - */ - public function findOneWithinLastMonthByLocationUser($location, $user) { //Set the request - //XXX: give the gooddelay to guest just in case - $req =<<= DATE_ADD(DATE_SUB(NOW(), INTERVAL 1 MONTH), INTERVAL :gooddelay DAY) + $req = <<addScalarResult('id', 'id', 'integer') - ->addIndexByScalar('id'); - - //Return result - return $this->_em - ->createNativeQuery($req, $rsm) - ->setParameter('lid', $location) - ->setParameter('uid', $user) - ->setParameter('gooddelay', self::SENIOR_DELAY) - ->getOneOrNullResult(); - } + //Declare user id field + $rsm->addScalarResult('subscribed_id', 'subscribed_id', 'integer'); + + //Set subscription sql part + $subscriptionSql = ''; + + //With user subscription + if ( + $userSubscriptions = $this->_em + ->createNativeQuery($req, $rsm) + ->setParameter('uid', $userId) + ->getResult(AbstractQuery::HYDRATE_SCALAR_COLUMN) + ) { + //Set subscription sql part + $subscriptionSql = ' AND a.user_id IN (:uids)'; + } - /** - * Fetch sessions by date period - * - * @param $period The date period - * @param $locale The locale - */ - public function fetchAllByDatePeriod($period, $locale = null) { //Set the request - //TODO: exclude opera and others ? $req = <<= :synchronized 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') + $rsm + ->addScalarResult('id', 'id', 'integer') ->addScalarResult('date', 'date', 'date') ->addScalarResult('locked', 'locked', 'datetime') - ->addScalarResult('updated', 'updated', 'datetime') + ->addScalarResult('modified', 'modified', 'datetime') ->addScalarResult('start', 'start', 'datetime') ->addScalarResult('stop', 'stop', 'datetime') ->addScalarResult('l_id', 'l_id', 'integer') @@ -1128,100 +1092,85 @@ SQL; ->addScalarResult('p_profile', 'p_profile', 'string') ->addIndexByScalar('id'); - //Fetch result - $res = $this->_em + //Return sessions + //TODO: XXX: finish here + return $this->_em ->createNativeQuery($req, $rsm) - ->setParameter('begin', $period->getStartDate()) - ->setParameter('end', $period->getEndDate()) - ->setParameter('locale', $locale); + ->setParameter('dids', $userDances) + ->setParameter('uids', $userSubscriptions) + ->setParameter('synchronized', $synchronized) + ->getResult(AbstractQuery::HYDRATE_ARRAY); + } - //Return result - return $res->getResult(); + /** + * Find session by location, slot and date + * + * @param Location $location The location + * @param Slot $slot The slot + * @param DateTime $date The datetime + * @return ?Session The found session + */ + public function findOneByLocationSlotDate(Location $location, Slot $slot, \DateTime $date): ?Session { + //Return sessions + return $this->getEntityManager() + ->createQuery('SELECT s FROM Rapsys\AirBundle\Entity\Session s WHERE (s.location = :location AND s.slot = :slot AND s.date = :date)') + ->setParameter('location', $location) + ->setParameter('slot', $slot) + ->setParameter('date', $date) + ->getSingleResult(); } /** - * Fetch session by id + * Fetch sessions by date period * - * @todo drop fetchOneById when migration is complete - * @todo FIX the updated computation, we can drop the group_concat for a MAX() - * @XXX DO NOT ADD a.updated as we already compute that with applications !!! + * @XXX: used in calendar command * - * @param $id The session id - * @param $locale The locale - * @return array The session data + * @param DatePeriod $period The date period + * @return array The session array */ - public function fetchOneById($id, $locale = null) { + public function fetchAllByDatePeriod(\DatePeriod $period): array { //Set the request - //TODO: compute scores ? - //TODO: compute delivery date ? (J-3/J-4 ?) - $req =<<addScalarResult('id', 'id', 'integer') ->addScalarResult('date', 'date', 'date') - ->addScalarResult('begin', 'begin', 'time') - ->addScalarResult('start', 'start', 'datetime') - ->addScalarResult('length', 'length', 'time') - ->addScalarResult('stop', 'stop', 'datetime') - ->addScalarResult('rainfall', 'rainfall', 'float') - ->addScalarResult('rainrisk', 'rainrisk', 'float') - ->addScalarResult('realfeel', 'realfeel', 'float') - ->addScalarResult('realfeelmin', 'realfeelmin', 'float') - ->addScalarResult('realfeelmax', 'realfeelmax', 'float') - ->addScalarResult('temperature', 'temperature', 'float') - ->addScalarResult('temperaturemin', 'temperaturemin', 'float') - ->addScalarResult('temperaturemax', 'temperaturemax', 'float') ->addScalarResult('locked', 'locked', 'datetime') - ->addScalarResult('created', 'created', 'datetime') ->addScalarResult('updated', 'updated', 'datetime') + ->addScalarResult('start', 'start', 'datetime') + ->addScalarResult('stop', 'stop', 'datetime') ->addScalarResult('l_id', 'l_id', 'integer') - ->addScalarResult('l_title', 'l_title', 'string') - ->addScalarResult('l_description', 'l_description', 'string') ->addScalarResult('l_address', 'l_address', 'string') ->addScalarResult('l_zipcode', 'l_zipcode', 'string') ->addScalarResult('l_city', 'l_city', 'string') ->addScalarResult('l_latitude', 'l_latitude', 'float') ->addScalarResult('l_longitude', 'l_longitude', 'float') - ->addScalarResult('l_indoor', 'l_indoor', 'boolean') - ->addScalarResult('l_updated', 'l_updated', 'datetime') + ->addScalarResult('l_title', 'l_title', 'string') + ->addScalarResult('l_description', 'l_description', 'string') ->addScalarResult('t_id', 't_id', 'integer') ->addScalarResult('t_title', 't_title', 'string') - ->addScalarResult('t_updated', 't_updated', 'datetime') ->addScalarResult('a_id', 'a_id', 'integer') ->addScalarResult('a_canceled', 'a_canceled', 'datetime') - ->addScalarResult('ad_id', 'ad_id', 'integer') ->addScalarResult('ad_name', 'ad_name', 'string') ->addScalarResult('ad_type', 'ad_type', 'string') - ->addScalarResult('ad_updated', 'ad_updated', 'datetime') ->addScalarResult('au_id', 'au_id', 'integer') + ->addScalarResult('au_forename', 'au_forename', 'string') ->addScalarResult('au_pseudonym', 'au_pseudonym', 'string') ->addScalarResult('p_id', 'p_id', 'integer') - ->addScalarResult('p_description', 'p_description', 'text') - ->addScalarResult('p_class', 'p_class', 'text') - ->addScalarResult('p_contact', 'p_contact', 'text') - ->addScalarResult('p_donate', 'p_donate', 'text') - ->addScalarResult('p_link', 'p_link', 'text') - ->addScalarResult('p_profile', 'p_profile', 'text') + ->addScalarResult('p_description', 'p_description', 'string') + ->addScalarResult('p_class', 'p_class', 'string') + ->addScalarResult('p_short', 'p_short', 'string') + ->addScalarResult('p_hat', 'p_hat', 'integer') ->addScalarResult('p_rate', 'p_rate', 'integer') - ->addScalarResult('p_hat', 'p_hat', 'boolean') - ->addScalarResult('p_updated', 'p_updated', 'datetime') - //XXX: is a string because of \n separator - ->addScalarResult('sa_id', 'sa_id', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sa_score', 'sa_score', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sa_created', 'sa_created', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sa_updated', 'sa_updated', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sa_canceled', 'sa_canceled', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sau_id', 'sau_id', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sau_pseudonym', 'sau_pseudonym', 'string') + ->addScalarResult('p_contact', 'p_contact', 'string') + ->addScalarResult('p_donate', 'p_donate', 'string') + ->addScalarResult('p_link', 'p_link', 'string') + ->addScalarResult('p_profile', 'p_profile', 'string') ->addIndexByScalar('id'); - //Set result - return $this->_em + //Fetch result + $res = $this->_em ->createNativeQuery($req, $rsm) - ->setParameter('id', $id) - ->setParameter('locale', $locale) - ->getOneOrNullResult(); + ->setParameter('begin', $period->getStartDate()) + ->setParameter('end', $period->getEndDate()); + + //Return result + return $res->getResult(); } /** - * Fetch sessions calendar with translated location by date period + * Find all session pending hourly weather * - * @param $period The date period - * @param $locationId The location id - * @param $sessionId The session id - * @param $granted The session is granted + * @return array The sessions to update */ - public function fetchCalendarByDatePeriod($period, $locationId = null, $sessionId = null, $granted = false, $locale = null) { - //Init granted sql - $grantSql = ''; - - //When granted is set - if (empty($granted)) { - //Set application and user as optional - $grantSql = 'LEFT '; - } - - //Init location sql - $locationSql = ''; + public function findAllPendingHourlyWeather(): array { + //Select all sessions starting and stopping in the next 3 days + //XXX: select session starting after now and stopping before date(now)+3d as accuweather only provide hourly data for the next 3 days (INTERVAL 3 DAY) + $req = <<= NOW() AND ADDDATE(ADDTIME(ADDTIME(s.date, s.begin), s.length), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) < DATE(ADDDATE(NOW(), INTERVAL :accuhourly DAY)) +SQL; - //When location id is set - if (!empty($locationId)) { - //Add location id clause - $locationSql = "\n\t".'AND s.location_id = :lid'; - } + //Replace bundle entity name by table name + $req = str_replace($this->tableKeys, $this->tableValues, $req); - //Set the request - $req = <<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('date', 'date', 'date') - ->addScalarResult('rainrisk', 'rainrisk', 'float') - ->addScalarResult('rainfall', 'rainfall', 'float') - ->addScalarResult('realfeel', 'realfeel', 'float') - ->addScalarResult('temperature', 'temperature', 'float') - ->addScalarResult('locked', 'locked', 'datetime') - ->addScalarResult('start', 'start', 'datetime') - ->addScalarResult('stop', 'stop', 'datetime') - ->addScalarResult('t_id', 't_id', 'integer') - ->addScalarResult('t_title', 't_title', 'string') - ->addScalarResult('l_id', 'l_id', 'integer') - ->addScalarResult('l_title', 'l_title', 'string') - ->addScalarResult('a_id', 'a_id', 'integer') - ->addScalarResult('a_canceled', 'a_canceled', 'datetime') - ->addScalarResult('ad_name', 'ad_name', 'string') - ->addScalarResult('ad_type', 'ad_type', 'string') - ->addScalarResult('au_id', 'au_id', 'integer') - ->addScalarResult('au_pseudonym', 'au_pseudonym', 'string') - ->addScalarResult('p_rate', 'p_rate', 'integer') - ->addScalarResult('p_hat', 'p_hat', 'boolean') - //XXX: is a string because of \n separator - ->addScalarResult('sau_id', 'sau_id', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sau_pseudonym', 'sau_pseudonym', 'string') - ->addIndexByScalar('id'); - - //Fetch result - $res = $this->_em - ->createNativeQuery($req, $rsm) - ->setParameter('begin', $period->getStartDate()) - ->setParameter('end', $period->getEndDate()) - ->setParameter('locale', $locale); - - //Add optional location id - if (!empty($locationId)) { - $res->setParameter('lid', $locationId); - } - - //Get result - $res = $res->getResult(); - - //Init calendar - $calendar = []; - - //Init month - $month = null; - - //Iterate on each day - foreach($period as $date) { - //Init day in calendar - $calendar[$Ymd = $date->format('Ymd')] = [ - 'title' => $this->translator->trans($date->format('l')).' '.$date->format('d'), - 'class' => [], - 'sessions' => [] - ]; - - //Detect month change - if ($month != $date->format('m')) { - $month = $date->format('m'); - //Append month for first day of month - //XXX: except if today to avoid double add - if ($date->format('U') != strtotime('today')) { - $calendar[$Ymd]['title'] .= '/'.$month; - } - } - //Deal with today - if ($date->format('U') == ($today = strtotime('today'))) { - $calendar[$Ymd]['title'] .= '/'.$month; - $calendar[$Ymd]['current'] = true; - $calendar[$Ymd]['class'][] = 'current'; - } - //Disable passed days - if ($date->format('U') < $today) { - $calendar[$Ymd]['disabled'] = true; - $calendar[$Ymd]['class'][] = 'disabled'; - } - //Set next month days - if ($date->format('m') > date('m')) { - $calendar[$Ymd]['next'] = true; - #$calendar[$Ymd]['class'][] = 'next'; - } - - //Detect sunday - if ($date->format('w') == 0) { - $calendar[$Ymd]['class'][] = 'sunday'; - } - - //Iterate on each session to find the one of the day - foreach($res as $session) { - if (($sessionYmd = $session['date']->format('Ymd')) == $Ymd) { - //Count number of application - $count = count(explode("\n", $session['sau_id'])); - - //Compute classes - $class = []; - if (!empty($session['a_id'])) { - $applications = [ $session['au_id'] => $session['au_pseudonym'] ]; - if (!empty($session['a_canceled'])) { - $class[] = 'canceled'; - } else { - $class[] = 'granted'; - } - } elseif ($count > 1) { - $class[] = 'disputed'; - } elseif (!empty($session['locked'])) { - $class[] = 'locked'; - } else { - $class[] = 'pending'; - } - - if ($sessionId == $session['id']) { - $class[] = 'highlight'; - } - - //Set temperature - //XXX: realfeel may be null, temperature should not - $temperature = $session['realfeel'] !== null ? $session['realfeel'] : $session['temperature']; - - //Compute weather - //XXX: rainfall may be null - if ($session['rainrisk'] > 0.50 || $session['rainfall'] > 2) { - $weather = self::GLYPHS['Stormy']; - } elseif ($session['rainrisk'] > 0.40 || $session['rainfall'] > 1) { - $weather = self::GLYPHS['Rainy']; - } elseif ($temperature > 24) { - $weather = self::GLYPHS['Cleary']; - } elseif ($temperature > 17) { - $weather = self::GLYPHS['Sunny']; - } elseif ($temperature > 10) { - $weather = self::GLYPHS['Cloudy']; - } elseif ($temperature !== null) { - $weather = self::GLYPHS['Winty']; - } else { - $weather = null; - } - - //Init weathertitle - $weathertitle = []; - - //Check if realfeel is available - if ($session['realfeel'] !== null) { - $weathertitle[] = $session['realfeel'].'°R'; - } - - //Check if temperature is available - if ($session['temperature'] !== null) { - $weathertitle[] = $session['temperature'].'°C'; - } - - //Check if rainrisk is available - if ($session['rainrisk'] !== null) { - $weathertitle[] = ($session['rainrisk']*100).'%'; - } - - //Check if rainfall is available - if ($session['rainfall'] !== null) { - $weathertitle[] = $session['rainfall'].'mm'; - } - - //Set applications - $applications = [ - 0 => $this->translator->trans($session['t_title']).' '.$this->translator->trans('at '.$session['l_title']).$this->translator->trans(':') - ]; - - //Fetch pseudonyms from session applications - $applications += array_combine(explode("\n", $session['sau_id']), array_map(function ($v) {return '- '.$v;}, explode("\n", $session['sau_pseudonym']))); - - //Set dance - $dance = null; - - //Set pseudonym - $pseudonym = null; - - //Check that session is not granted - if (empty($session['a_id'])) { - //With location id and unique application - if ($count == 1) { - //Set unique application pseudonym - $pseudonym = $session['sau_pseudonym']; - } - //Session is granted - } else { - //Replace granted application - $applications[$session['au_id']] = '* '.$session['au_pseudonym']; - - //Set dance - $dance = $this->translator->trans($session['ad_name'].' '.lcfirst($session['ad_type'])); - - //Set pseudonym - $pseudonym = $session['au_pseudonym'].($count > 1 ? ' ['.$count.']':''); - } - - //Add the session - $calendar[$Ymd]['sessions'][$session['t_id'].sprintf('%05d', $session['id'])] = [ - 'id' => $session['id'], - 'start' => $session['start'], - 'stop' => $session['stop'], - 'location' => $this->translator->trans($session['l_title']), - 'dance' => $dance, - 'pseudonym' => $pseudonym, - 'class' => $class, - 'slot' => self::GLYPHS[$session['t_title']], - 'slottitle' => $this->translator->trans($session['t_title']), - 'weather' => $weather, - 'weathertitle' => implode(' ', $weathertitle), - 'applications' => $applications, - 'rate' => $session['p_rate'], - 'hat' => $session['p_hat'] - ]; - } - } - - //Sort sessions - ksort($calendar[$Ymd]['sessions']); - } - - //Send result - return $calendar; - } - - /** - * Fetch sessions calendar with translated location by date period and user - * - * @param $period The date period - * @param $userId The user id - * @param $sessionId The session id - */ - public function fetchUserCalendarByDatePeriod($period, $userId = null, $sessionId = null, $locale = null) { - //Init user sql - $userJoinSql = $userWhereSql = ''; - - //When user id is set - if (!empty($userId)) { - //Add user join - $userJoinSql = 'JOIN RapsysAirBundle:Application AS sua ON (sua.session_id = s.id)'."\n"; - //Add user id clause - $userWhereSql = "\n\t".'AND sua.user_id = :uid'; - } - - //Set the request - //TODO: change as_u_* in sau_*, a_u_* in au_*, etc, see request up - $req = <<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('date', 'date', 'date') - ->addScalarResult('rainrisk', 'rainrisk', 'float') - ->addScalarResult('rainfall', 'rainfall', 'float') - ->addScalarResult('realfeel', 'realfeel', 'float') - ->addScalarResult('temperature', 'temperature', 'float') - ->addScalarResult('locked', 'locked', 'datetime') - ->addScalarResult('start', 'start', 'datetime') - ->addScalarResult('stop', 'stop', 'datetime') - ->addScalarResult('t_id', 't_id', 'integer') - ->addScalarResult('t_title', 't_title', 'string') - ->addScalarResult('l_id', 'l_id', 'integer') - ->addScalarResult('l_title', 'l_title', 'string') - ->addScalarResult('a_id', 'a_id', 'integer') - ->addScalarResult('ad_name', 'ad_name', 'string') - ->addScalarResult('ad_type', 'ad_type', 'string') - ->addScalarResult('au_id', 'au_id', 'integer') - ->addScalarResult('au_pseudonym', 'au_pseudonym', 'string') - ->addScalarResult('p_rate', 'p_rate', 'integer') - ->addScalarResult('p_hat', 'p_hat', 'boolean') - //XXX: is a string because of \n separator - ->addScalarResult('sau_id', 'sau_id', 'string') - //XXX: is a string because of \n separator - ->addScalarResult('sau_pseudonym', 'sau_pseudonym', 'string') - ->addIndexByScalar('id'); - - //Fetch result - $res = $this->_em - ->createNativeQuery($req, $rsm) - ->setParameter('begin', $period->getStartDate()) - ->setParameter('end', $period->getEndDate()) - ->setParameter('uid', $userId) - ->setParameter('locale', $locale) - ->getResult(); - - //Init calendar - $calendar = []; - - //Init month - $month = null; - - //Iterate on each day - foreach($period as $date) { - //Init day in calendar - $calendar[$Ymd = $date->format('Ymd')] = [ - 'title' => $this->translator->trans($date->format('l')).' '.$date->format('d'), - 'class' => [], - 'sessions' => [] - ]; - - //Detect month change - if ($month != $date->format('m')) { - $month = $date->format('m'); - //Append month for first day of month - //XXX: except if today to avoid double add - if ($date->format('U') != strtotime('today')) { - $calendar[$Ymd]['title'] .= '/'.$month; - } - } - //Deal with today - if ($date->format('U') == ($today = strtotime('today'))) { - $calendar[$Ymd]['title'] .= '/'.$month; - $calendar[$Ymd]['current'] = true; - $calendar[$Ymd]['class'][] = 'current'; - } - //Disable passed days - if ($date->format('U') < $today) { - $calendar[$Ymd]['disabled'] = true; - $calendar[$Ymd]['class'][] = 'disabled'; - } - //Set next month days - if ($date->format('m') > date('m')) { - $calendar[$Ymd]['next'] = true; - #$calendar[$Ymd]['class'][] = 'next'; - } - - //Detect sunday - if ($date->format('w') == 0) { - $calendar[$Ymd]['class'][] = 'sunday'; - } - - //Iterate on each session to find the one of the day - foreach($res as $session) { - if (($sessionYmd = $session['date']->format('Ymd')) == $Ymd) { - //Count number of application - $count = count(explode("\n", $session['sau_id'])); - - //Compute classes - $class = []; - if (!empty($session['a_id'])) { - $applications = [ $session['au_id'] => $session['au_pseudonym'] ]; - if ($session['au_id'] == $userId) { - $class[] = 'granted'; - } else { - $class[] = 'disputed'; - } - } elseif ($count > 1) { - $class[] = 'disputed'; - } elseif (!empty($session['locked'])) { - $class[] = 'locked'; - } else { - $class[] = 'pending'; - } - - if ($sessionId == $session['id']) { - $class[] = 'highlight'; - } - - //Set temperature - //XXX: realfeel may be null, temperature should not - $temperature = $session['realfeel'] !== null ? $session['realfeel'] : $session['temperature']; - - //Compute weather - //XXX: rainfall may be null - if ($session['rainrisk'] > 0.50 || $session['rainfall'] > 2) { - $weather = self::GLYPHS['Stormy']; - } elseif ($session['rainrisk'] > 0.40 || $session['rainfall'] > 1) { - $weather = self::GLYPHS['Rainy']; - } elseif ($temperature > 24) { - $weather = self::GLYPHS['Cleary']; - } elseif ($temperature > 17) { - $weather = self::GLYPHS['Sunny']; - } elseif ($temperature > 10) { - $weather = self::GLYPHS['Cloudy']; - } elseif ($temperature !== null) { - $weather = self::GLYPHS['Winty']; - } else { - $weather = null; - } - - //Init weathertitle - $weathertitle = []; - - //Check if realfeel is available - if ($session['realfeel'] !== null) { - $weathertitle[] = $session['realfeel'].'°R'; - } - - //Check if temperature is available - if ($session['temperature'] !== null) { - $weathertitle[] = $session['temperature'].'°C'; - } - - //Check if rainrisk is available - if ($session['rainrisk'] !== null) { - $weathertitle[] = ($session['rainrisk']*100).'%'; - } - - //Check if rainfall is available - if ($session['rainfall'] !== null) { - $weathertitle[] = $session['rainfall'].'mm'; - } - - //Set applications - $applications = [ - 0 => $this->translator->trans($session['t_title']).' '.$this->translator->trans('at '.$session['l_title']).$this->translator->trans(':') - ]; - - //Fetch pseudonyms from session applications - $applications += array_combine(explode("\n", $session['sau_id']), array_map(function ($v) {return '- '.$v;}, explode("\n", $session['sau_pseudonym']))); - - //Set dance - $dance = null; - - //Set pseudonym - $pseudonym = null; - - //Check that session is not granted - if (empty($session['a_id'])) { - //With location id and unique application - if ($count == 1) { - //Set unique application pseudonym - $pseudonym = $session['sau_pseudonym']; - } - //Session is granted - } else { - //Replace granted application - $applications[$session['au_id']] = '* '.$session['au_pseudonym']; - - //Set dance - $dance = $this->translator->trans($session['ad_name'].' '.lcfirst($session['ad_type'])); - - //Set pseudonym - $pseudonym = $session['au_pseudonym'].($count > 1 ? ' ['.$count.']':''); - } - - //Set title - $title = $this->translator->trans($session['l_title']).($count > 1 ? ' ['.$count.']':''); - - //Add the session - $calendar[$Ymd]['sessions'][$session['t_id'].sprintf('%02d', $session['l_id'])] = [ - 'id' => $session['id'], - 'start' => $session['start'], - 'stop' => $session['stop'], - 'location' => $this->translator->trans($session['l_title']), - 'dance' => $dance, - 'pseudonym' => $pseudonym, - 'class' => $class, - 'slot' => self::GLYPHS[$session['t_title']], - 'slottitle' => $this->translator->trans($session['t_title']), - 'weather' => $weather, - 'weathertitle' => implode(' ', $weathertitle), - 'applications' => $applications, - 'rate' => $session['p_rate'], - 'hat' => $session['p_hat'] - ]; - } - } - - //Sort sessions - ksort($calendar[$Ymd]['sessions']); - } - - //Send result - return $calendar; - } - - /** - * Find all session pending hourly weather - * - * @return array The sessions to update - */ - public function findAllPendingHourlyWeather() { - //Select all sessions starting and stopping in the next 3 days - //XXX: select session starting after now and stopping before date(now)+3d as accuweather only provide hourly data for the next 3 days (INTERVAL 3 DAY) - $req = <<= NOW() AND ADDDATE(ADDTIME(ADDTIME(s.date, s.begin), s.length), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) < DATE(ADDDATE(NOW(), INTERVAL :accuhourly DAY)) -SQL; - - //Replace bundle entity name by table name - $req = str_replace($this->tableKeys, $this->tableValues, $req); - - //Get result set mapping instance - $rsm = new ResultSetMapping(); + //Get result set mapping instance + $rsm = new ResultSetMapping(); //Declare all fields $rsm - ->addEntityResult('RapsysAirBundle:Session', 's') + ->addEntityResult('Rapsys\AirBundle\Entity\Session', 's') ->addFieldResult('s', 'id', 'id') ->addFieldResult('s', 'date', 'date') ->addFieldResult('s', 'begin', 'begin') @@ -1927,9 +1265,9 @@ SQL; ->addFieldResult('s', 'temperature', 'temperature') ->addFieldResult('s', 'temperaturemin', 'temperaturemin') ->addFieldResult('s', 'temperaturemax', 'temperaturemax') - ->addJoinedEntityResult('RapsysAirBundle:Slot', 'o', 's', 'slot') + ->addJoinedEntityResult('Rapsys\AirBundle\Entity\Slot', 'o', 's', 'slot') ->addFieldResult('o', 'slot_id', 'id') - ->addJoinedEntityResult('RapsysAirBundle:Location', 'l', 's', 'location') + ->addJoinedEntityResult('Rapsys\AirBundle\Entity\Location', 'l', 's', 'location') ->addFieldResult('l', 'location_id', 'id') ->addFieldResult('l', 'zipcode', 'zipcode') ->addIndexBy('s', 'id'); @@ -1943,15 +1281,15 @@ SQL; /** * Find all session pending daily weather * - * @return array The sessions to update + * @return array The sessions to update */ - public function findAllPendingDailyWeather() { + public function findAllPendingDailyWeather(): array { //Select all sessions stopping after next 3 days //XXX: select session stopping after or equal date(now)+3d as accuweather only provide hourly data for the next 3 days (INTERVAL 3 DAY) $req = <<= DATE(ADDDATE(NOW(), INTERVAL :accuhourly DAY)) AND ADDDATE(ADDTIME(ADDTIME(s.date, s.begin), s.length), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) < DATE(ADDDATE(NOW(), INTERVAL :accudaily DAY)) SQL; @@ -1963,7 +1301,7 @@ SQL; //Declare all fields $rsm - ->addEntityResult('RapsysAirBundle:Session', 's') + ->addEntityResult('Rapsys\AirBundle\Entity\Session', 's') ->addFieldResult('s', 'id', 'id') ->addFieldResult('s', 'date', 'date') ->addFieldResult('s', 'begin', 'begin') @@ -1976,9 +1314,9 @@ SQL; ->addFieldResult('s', 'temperature', 'temperature') ->addFieldResult('s', 'temperaturemin', 'temperaturemin') ->addFieldResult('s', 'temperaturemax', 'temperaturemax') - ->addJoinedEntityResult('RapsysAirBundle:Slot', 'o', 's', 'slot') + ->addJoinedEntityResult('Rapsys\AirBundle\Entity\Slot', 'o', 's', 'slot') ->addFieldResult('o', 'slot_id', 'id') - ->addJoinedEntityResult('RapsysAirBundle:Location', 'l', 's', 'location') + ->addJoinedEntityResult('Rapsys\AirBundle\Entity\Location', 'l', 's', 'location') ->addFieldResult('l', 'location_id', 'id') ->addFieldResult('l', 'zipcode', 'zipcode') ->addIndexBy('s', 'id'); @@ -1992,21 +1330,21 @@ SQL; /** * Find every session pending application * - * @return array The sessions to update + * @return array The sessions to update */ - public function findAllPendingApplication() { + public function findAllPendingApplication(): array { //Select all sessions not locked without application or canceled application within attribution period //XXX: DIFF(start, now) <= IF(DIFF(start, created) <= SENIOR_DELAY in DAY, DIFF(start, created) * 3 / 4, SENIOR_DELAY) //TODO: remonter les données pour le mail ? $req =<<addEntityResult('RapsysAirBundle:Session', 's') + ->addEntityResult('Rapsys\AirBundle\Entity\Session', 's') ->addFieldResult('s', 'id', 'id') ->addIndexBy('s', 'id'); @@ -2035,9 +1373,9 @@ SQL; * Fetch session best application by session id * * @param int $id The session id - * @return Application|null The application or null + * @return ?Application The application or null */ - public function findBestApplicationById($id) { + public function findBestApplicationById(int $id): ?Application { /** * Query session applications ranked by location score, global score, created and user_id * @@ -2120,33 +1458,33 @@ FROM ( AVG(IF(a2.id IS NOT NULL AND s2.temperature IS NOT NULL AND s2.rainfall IS NOT NULL, s2.temperature/(1+s2.rainfall), NULL)) AS l_tr_ratio, (SUM(IF(a2.id IS NOT NULL AND s2.premium = 1, 1, 0))+1)/(SUM(IF(a2.id IS NOT NULL AND s2.premium = 0, 1, 0))+1) AS l_pn_ratio, MIN(IF(a2.id IS NOT NULL, DATEDIFF(ADDDATE(s.date, INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY), ADDDATE(s2.date, INTERVAL IF(s2.slot_id = :afterid, 1, 0) DAY)), NULL)) AS l_previous, - TIME_TO_SEC(TIMEDIFF(ADDDATE(ADDTIME(s.date, s.begin), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY), NOW())) AS remaining, + UNIX_TIMESTAMP(ADDDATE(ADDTIME(s.date, s.begin), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY)) - UNIX_TIMESTAMP() AS remaining, s.premium, l.hotspot, a.created - FROM RapsysAirBundle:Session AS s - JOIN RapsysAirBundle:Location AS l ON (l.id = s.location_id) - JOIN RapsysAirBundle:Application AS a ON (a.session_id = s.id AND a.canceled IS NULL) - LEFT JOIN RapsysAirBundle:Session AS s2 ON (s2.id != s.id AND s2.location_id = s.location_id AND s2.slot_id IN (:afternoonid, :eveningid) AND s2.application_id IS NOT NULL AND s2.locked IS NULL AND s2.date > s.date - INTERVAL 1 YEAR) - LEFT JOIN RapsysAirBundle:Application AS a2 ON (a2.id = s2.application_id AND a2.user_id = a.user_id AND (a2.canceled IS NULL OR TIMESTAMPDIFF(DAY, a2.canceled, ADDDATE(ADDTIME(s2.date, s2.begin), INTERVAL IF(s2.slot_id = :afterid, 1, 0) DAY)) < 1)) + FROM Rapsys\AirBundle\Entity\Session AS s + JOIN Rapsys\AirBundle\Entity\Location AS l ON (l.id = s.location_id) + JOIN Rapsys\AirBundle\Entity\Application AS a ON (a.session_id = s.id AND a.canceled IS NULL) + LEFT JOIN Rapsys\AirBundle\Entity\Session AS s2 ON (s2.id != s.id AND s2.location_id = s.location_id AND s2.slot_id IN (:afternoonid, :eveningid) AND s2.application_id IS NOT NULL AND s2.locked IS NULL AND s2.date > s.date - INTERVAL 1 YEAR) + LEFT JOIN Rapsys\AirBundle\Entity\Application AS a2 ON (a2.id = s2.application_id AND a2.user_id = a.user_id AND (a2.canceled IS NULL OR TIMESTAMPDIFF(DAY, a2.canceled, ADDDATE(ADDTIME(s2.date, s2.begin), INTERVAL IF(s2.slot_id = :afterid, 1, 0) DAY)) < 1)) WHERE s.id = :sid GROUP BY a.id ORDER BY NULL LIMIT 0, :limit ) AS b - LEFT JOIN RapsysAirBundle:Session AS s3 ON (s3.id != b.session_id AND s3.application_id IS NOT NULL AND s3.locked IS NULL AND s3.date > b.date - INTERVAL 1 YEAR) - LEFT JOIN RapsysAirBundle:Application AS a3 ON (a3.id = s3.application_id AND a3.user_id = b.user_id AND (a3.canceled IS NULL OR TIMESTAMPDIFF(DAY, a3.canceled, ADDDATE(ADDTIME(s3.date, s3.begin), INTERVAL IF(s3.slot_id = :afterid, 1, 0) DAY)) < 1)) + LEFT JOIN Rapsys\AirBundle\Entity\Session AS s3 ON (s3.id != b.session_id AND s3.application_id IS NOT NULL AND s3.locked IS NULL AND s3.date > b.date - INTERVAL 1 YEAR) + LEFT JOIN Rapsys\AirBundle\Entity\Application AS a3 ON (a3.id = s3.application_id AND a3.user_id = b.user_id AND (a3.canceled IS NULL OR TIMESTAMPDIFF(DAY, a3.canceled, ADDDATE(ADDTIME(s3.date, s3.begin), INTERVAL IF(s3.slot_id = :afterid, 1, 0) DAY)) < 1)) GROUP BY b.id ORDER BY NULL LIMIT 0, :limit ) AS c - LEFT JOIN RapsysAirBundle:Session AS s4 ON (s4.id != c.session_id AND s4.location_id = c.location_id AND s4.application_id IS NOT NULL AND s4.locked IS NULL AND s4.date > c.date - INTERVAL 1 YEAR) - LEFT JOIN RapsysAirBundle:Application AS a4 ON (a4.id = s4.application_id AND a4.user_id != c.user_id AND (a4.canceled IS NULL OR TIMESTAMPDIFF(DAY, a4.canceled, ADDDATE(ADDTIME(s4.date, s4.begin), INTERVAL IF(s4.slot_id = :afterid, 1, 0) DAY)) < 1)) + LEFT JOIN Rapsys\AirBundle\Entity\Session AS s4 ON (s4.id != c.session_id AND s4.location_id = c.location_id AND s4.application_id IS NOT NULL AND s4.locked IS NULL AND s4.date > c.date - INTERVAL 1 YEAR) + LEFT JOIN Rapsys\AirBundle\Entity\Application AS a4 ON (a4.id = s4.application_id AND a4.user_id != c.user_id AND (a4.canceled IS NULL OR TIMESTAMPDIFF(DAY, a4.canceled, ADDDATE(ADDTIME(s4.date, s4.begin), INTERVAL IF(s4.slot_id = :afterid, 1, 0) DAY)) < 1)) GROUP BY c.id ORDER BY NULL LIMIT 0, :limit ) AS d - LEFT JOIN RapsysAirBundle:UserGroup AS ug ON (ug.user_id = d.user_id) + LEFT JOIN Rapsys\AirBundle\Entity\UserGroup AS ug ON (ug.user_id = d.user_id) GROUP BY d.id LIMIT 0, :limit ) AS e @@ -2163,7 +1501,7 @@ SQL; $req = str_replace($this->tableKeys, $this->tableValues, $req); //Set update request - $upreq = 'UPDATE RapsysAirBundle:Application SET score = :score, updated = NOW() WHERE id = :id'; + $upreq = 'UPDATE Rapsys\AirBundle\Entity\Application SET score = :score, updated = NOW() WHERE id = :id'; //Replace bundle entity name by table name $upreq = str_replace($this->tableKeys, $this->tableValues, $upreq); @@ -2173,7 +1511,7 @@ SQL; //Declare all fields $rsm - ->addEntityResult('RapsysAirBundle:Application', 'a') + ->addEntityResult('Rapsys\AirBundle\Entity\Application', 'a') ->addFieldResult('a', 'id', 'id') ->addFieldResult('a', 'score', 'score') ->addIndexBy('a', 'id'); @@ -2205,7 +1543,6 @@ SQL; return $ret; } - /** * Rekey sessions and applications by chronological session id * @@ -2227,8 +1564,8 @@ FROM ( s.begin, s.slot_id, GROUP_CONCAT(sa.id ORDER BY sa.id SEPARATOR "\\n") AS sa_id - FROM RapsysAirBundle:Session AS s - LEFT JOIN RapsysAirBundle:Application AS sa ON (sa.session_id = s.id) + FROM Rapsys\AirBundle\Entity\Session AS s + LEFT JOIN Rapsys\AirBundle\Entity\Application AS sa ON (sa.session_id = s.id) GROUP BY s.id ORDER BY NULL ) AS a @@ -2260,7 +1597,7 @@ SQL; //Set update session request $sreq = <<