- //Set the request
- $req = <<<SQL
-
-SELECT
- s.id,
- s.date,
- s.rainrisk,
- s.rainfall,
- s.realfeel,
- s.temperature,
- s.locked,
- ADDDATE(ADDTIME(s.date, s.begin), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) AS start,
- ADDDATE(ADDTIME(ADDTIME(s.date, s.begin), s.length), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) AS stop,
- s.location_id AS l_id,
- l.title AS l_title,
- s.slot_id AS t_id,
- t.title AS t_title,
- s.application_id AS a_id,
- a.canceled AS a_canceled,
- ad.name AS ad_name,
- ad.type AS ad_type,
- a.user_id AS au_id,
- au.pseudonym AS au_pseudonym,
- p.rate AS p_rate,
- p.hat AS p_hat,
- GROUP_CONCAT(sa.user_id ORDER BY sa.user_id SEPARATOR "\\n") AS sau_id,
- GROUP_CONCAT(sau.pseudonym ORDER BY sa.user_id SEPARATOR "\\n") AS sau_pseudonym
-FROM RapsysAirBundle:Session AS s
-JOIN RapsysAirBundle:Location AS l ON (l.id = s.location_id)
-JOIN RapsysAirBundle:Slot AS t ON (t.id = s.slot_id)
-${grantSql}JOIN RapsysAirBundle:Application AS a ON (a.id = s.application_id)
-${grantSql}JOIN RapsysAirBundle:Dance AS ad ON (ad.id = a.dance_id)
-${grantSql}JOIN RapsysAirBundle:User AS au ON (au.id = a.user_id)
-LEFT JOIN RapsysAirBundle:Application AS sa ON (sa.session_id = s.id)
-LEFT JOIN RapsysAirBundle:Snippet AS p ON (p.location_id = s.location_id AND p.user_id = a.user_id AND p.locale = :locale)
-LEFT JOIN RapsysAirBundle:User AS sau ON (sau.id = sa.user_id)
-WHERE s.date BETWEEN :begin AND :end${locationSql}
-GROUP BY s.id
-ORDER BY NULL
-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('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 = <<<SQL
-SELECT
- s.id,
- s.date,
- s.rainrisk,
- s.rainfall,
- s.realfeel,
- s.temperature,
- s.locked,
- ADDDATE(ADDTIME(s.date, s.begin), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) AS start,
- ADDDATE(ADDTIME(ADDTIME(s.date, s.begin), s.length), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) AS stop,
- s.location_id AS l_id,
- l.title AS l_title,
- s.slot_id AS t_id,
- t.title AS t_title,
- s.application_id AS a_id,
- ad.name AS ad_name,
- ad.type AS ad_type,
- a.user_id AS au_id,
- au.pseudonym AS au_pseudonym,
- p.rate AS p_rate,
- p.hat AS p_hat,
- GROUP_CONCAT(sa.user_id ORDER BY sa.user_id SEPARATOR "\\n") AS sau_id,
- GROUP_CONCAT(CONCAT("- ", sau.pseudonym) ORDER BY sa.user_id SEPARATOR "\\n") AS sau_pseudonym
-FROM RapsysAirBundle:Session AS s
-JOIN RapsysAirBundle:Location AS l ON (l.id = s.location_id)
-JOIN RapsysAirBundle:Slot AS t ON (t.id = s.slot_id)
-${userJoinSql}LEFT JOIN RapsysAirBundle:Application AS a ON (a.id = s.application_id)
-LEFT JOIN RapsysAirBundle:Snippet AS p ON (p.location_id = s.location_id AND p.user_id = a.user_id AND p.locale = :locale)
-LEFT JOIN RapsysAirBundle:Dance AS ad ON (ad.id = a.dance_id)
-LEFT JOIN RapsysAirBundle:User AS au ON (au.id = a.user_id)
-LEFT JOIN RapsysAirBundle:Application AS sa ON (sa.session_id = s.id)
-LEFT JOIN RapsysAirBundle:User AS sau ON (sau.id = sa.user_id)
-WHERE s.date BETWEEN :begin AND :end${userWhereSql}
-GROUP BY s.id
-ORDER BY NULL
-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('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<Session> 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 = <<<SQL
-SELECT s.id, s.slot_id, s.location_id, s.date, s.begin, s.length, s.rainfall, s.rainrisk, s.realfeel, s.realfeelmin, s.realfeelmax, s.temperature, s.temperaturemin, s.temperaturemax, l.zipcode
-FROM RapsysAirBundle:Session AS s
-JOIN RapsysAirBundle:Location AS l ON (l.id = s.location_id)
-WHERE ADDDATE(ADDTIME(s.date, s.begin), INTERVAL IF(s.slot_id = :afterid, 1, 0) DAY) >= 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();
-
- //Declare all fields
- $rsm
- ->addEntityResult('RapsysAirBundle:Session', 's')
- ->addFieldResult('s', 'id', 'id')
- ->addFieldResult('s', 'date', 'date')
- ->addFieldResult('s', 'begin', 'begin')
- ->addFieldResult('s', 'length', 'length')
- ->addFieldResult('s', 'rainfall', 'rainfall')
- ->addFieldResult('s', 'rainrisk', 'rainrisk')
- ->addFieldResult('s', 'realfeel', 'realfeel')
- ->addFieldResult('s', 'realfeelmin', 'realfeelmin')
- ->addFieldResult('s', 'realfeelmax', 'realfeelmax')
- ->addFieldResult('s', 'temperature', 'temperature')
- ->addFieldResult('s', 'temperaturemin', 'temperaturemin')
- ->addFieldResult('s', 'temperaturemax', 'temperaturemax')
- ->addJoinedEntityResult('RapsysAirBundle:Slot', 'o', 's', 'slot')
- ->addFieldResult('o', 'slot_id', 'id')
- ->addJoinedEntityResult('RapsysAirBundle:Location', 'l', 's', 'location')
- ->addFieldResult('l', 'location_id', 'id')
- ->addFieldResult('l', 'zipcode', 'zipcode')
- ->addIndexBy('s', 'id');