src/Module/SgStratecEventList.php line 137

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgStratec
  8.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  9.  * @license   EULA
  10.  * @copyright Sg-Medien GmbH 2017
  11.  */
  12. /**
  13.  * Set custom namespace
  14.  */
  15. namespace App\Module;
  16. use App\Model\SgStratecCalendarEventsModel;
  17. use Contao\ModuleEventlist;
  18. /**
  19.  * Load tl_calendar_events language file
  20.  */
  21. \System::loadLanguageFile('tl_calendar_events');
  22. /**
  23.  * Class SgStratecEventList
  24.  *
  25.  * Frontend module "event list".
  26.  *
  27.  * @package   SgStratec
  28.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  29.  * @copyright Sg-Medien GmbH 2017
  30.  */
  31. class SgStratecEventList extends ModuleEventlist
  32. {
  33.     /**
  34.      * Get all events of a certain period (with custom filters)
  35.      *
  36.      * @param array $arrCalendars
  37.      * @param integer $intStart
  38.      * @param integer $intEnd
  39.      *
  40.      * @return array
  41.      */
  42.     protected function getAllEventsCustom($arrCalendars$intStart$intEnd$arrSqlFilter)
  43.     {
  44.         if (!is_array($arrCalendars)) {
  45.             return array();
  46.         }
  47.         $this->arrEvents = array();
  48.         foreach ($arrCalendars as $id) {
  49.             $strUrl $this->strUrl;
  50.             $objCalendar \CalendarModel::findByPk($id);
  51.             // Get the current "jumpTo" page
  52.             if ($objCalendar !== null && $objCalendar->jumpTo && ($objTarget $objCalendar->getRelated('jumpTo')) !== null) {
  53.                 /** @var \PageModel $objTarget */
  54.                 $strUrl $objTarget->getFrontendUrl((\Config::get('useAutoItem') && !\Config::get('disableAlias')) ? '/%s' '/events/%s');
  55.             }
  56.             // Get the events of the current period
  57.             $objEvents SgStratecCalendarEventsModel::findCurrentByPidCustom($id$intStart$intEnd$arrSqlFilter);
  58.             if ($objEvents === null) {
  59.                 continue;
  60.             }
  61.             while ($objEvents->next()) {
  62.                 $this->addEvent($objEvents$objEvents->startTime$objEvents->endTime$strUrl$intStart$intEnd$id);
  63.                 // Recurring events
  64.                 if ($objEvents->recurring) {
  65.                     $arrRepeat deserialize($objEvents->repeatEach);
  66.                     if (!is_array($arrRepeat) || !isset($arrRepeat['unit']) || !isset($arrRepeat['value'])
  67.                         || $arrRepeat['value'] < 1) {
  68.                         continue;
  69.                     }
  70.                     $count 0;
  71.                     $intStartTime $objEvents->startTime;
  72.                     $intEndTime $objEvents->endTime;
  73.                     $strtotime '+ ' $arrRepeat['value'] . ' ' $arrRepeat['unit'];
  74.                     while ($intEndTime $intEnd) {
  75.                         if ($objEvents->recurrences && $count++ >= $objEvents->recurrences) {
  76.                             break;
  77.                         }
  78.                         $intStartTime strtotime($strtotime$intStartTime);
  79.                         $intEndTime strtotime($strtotime$intEndTime);
  80.                         // Stop if the upper boundary is reached (see #8445)
  81.                         if ($intStartTime === false || $intEndTime === false) {
  82.                             break;
  83.                         }
  84.                         // Skip events outside the scope
  85.                         if ($intEndTime $intStart || $intStartTime $intEnd) {
  86.                             continue;
  87.                         }
  88.                         $this->addEvent($objEvents$intStartTime$intEndTime$strUrl$intStart$intEnd$id);
  89.                     }
  90.                 }
  91.             }
  92.         }
  93.         // Sort the array
  94.         foreach (array_keys($this->arrEvents) as $key) {
  95.             ksort($this->arrEvents[$key]);
  96.         }
  97.         // HOOK: modify the result set
  98.         if (isset($GLOBALS['TL_HOOKS']['getAllEvents']) && is_array($GLOBALS['TL_HOOKS']['getAllEvents'])) {
  99.             foreach ($GLOBALS['TL_HOOKS']['getAllEvents'] as $callback) {
  100.                 $this->import($callback[0]);
  101.                 $this->arrEvents $this->{$callback[0]}->{$callback[1]}($this->arrEvents$arrCalendars$intStart$intEnd$this);
  102.             }
  103.         }
  104.         return $this->arrEvents;
  105.     }
  106.     /**
  107.      * Generate the module
  108.      */
  109.     protected function compile()
  110.     {
  111.         /** @var \PageModel $objPage */
  112.         global $objPage;
  113.         $strRequest ampersand(\Environment::get('request'), true);
  114.         $arrSqlFilter = array();
  115.         $blnClearInput false;
  116.         $intYear \Input::get('year');
  117.         $intMonth \Input::get('month');
  118.         $intDay \Input::get('day');
  119.         // discipline filter
  120.         $curDiscipline \Input::get('discipline'true);
  121.         if ($curDiscipline AND !empty($curDiscipline)) {
  122.             $arrSqlFilter['discipline'] = array
  123.             (
  124.                 'sql' => '%t.discipline=?',
  125.                 'values' => array
  126.                 (
  127.                     $curDiscipline
  128.                 )
  129.             );
  130.         }
  131.         // Jump to the current period
  132.         if (!isset($_GET['year']) && !isset($_GET['month']) && !isset($_GET['day'])) {
  133.             switch ($this->cal_format) {
  134.                 case 'cal_year':
  135.                     $intYear date('Y');
  136.                     break;
  137.                 case 'cal_month':
  138.                     $intMonth date('Ym');
  139.                     break;
  140.                 case 'cal_day':
  141.                     $intDay date('Ymd');
  142.                     break;
  143.             }
  144.             $blnClearInput true;
  145.         }
  146.         $blnDynamicFormat = (!$this->cal_ignoreDynamic && in_array($this->cal_format, array('cal_day''cal_month''cal_year')));
  147.         // Create the date object
  148.         try {
  149.             if ($blnDynamicFormat && $intYear) {
  150.                 $this->Date = new \Date($intYear'Y');
  151.                 $this->cal_format 'cal_year';
  152.                 $this->headline .= ' ' date('Y'$this->Date->tstamp);
  153.             } elseif ($blnDynamicFormat && $intMonth) {
  154.                 $this->Date = new \Date($intMonth'Ym');
  155.                 $this->cal_format 'cal_month';
  156.                 $this->headline .= ' ' \Date::parse('F Y'$this->Date->tstamp);
  157.             } elseif ($blnDynamicFormat && $intDay) {
  158.                 $this->Date = new \Date($intDay'Ymd');
  159.                 $this->cal_format 'cal_day';
  160.                 $this->headline .= ' ' \Date::parse($objPage->dateFormat$this->Date->tstamp);
  161.             } else {
  162.                 $this->Date = new \Date();
  163.             }
  164.         } catch (\OutOfBoundsException $e) {
  165.             /** @var \PageError404 $objHandler */
  166.             $objHandler = new $GLOBALS['TL_PTY']['error_404']();
  167.             $objHandler->generate($objPage->id);
  168.         }
  169.         list($intStart$intEnd$strEmpty) = $this->getDatesFromFormat($this->Date$this->cal_format);
  170.         // Get event years
  171.         $years = array();
  172.         $arrAllEvents $this->getAllEventsCustom($this->cal_calendar0strtotime('+100 years'$this->Date->__get('tstamp')), $arrSqlFilter);
  173.         foreach ($arrAllEvents as $date => $data) {
  174.             $year intval(substr($date04));
  175.             
  176.             if (!in_array($year$years)) {
  177.                 $years[] = $year;
  178.             }
  179.         }
  180.         // Get custom events
  181.         $arrCustomEvents $this->getAllEventsCustom($this->cal_calendar$intStart$intEnd$arrSqlFilter);
  182.         $sort = ($this->cal_order == 'descending') ? 'krsort' 'ksort';
  183.         // Sort the days
  184.         $sort($arrCustomEvents);
  185.         // Sort the events
  186.         foreach (array_keys($arrCustomEvents) as $key) {
  187.             $sort($arrCustomEvents[$key]);
  188.         }
  189.         $arrEvents = array();
  190.         // Remove events outside the scope
  191.         foreach ($arrCustomEvents as $key => $days) {
  192.             foreach ($days as $day => $events) {
  193.                 // Skip events before the start day if the "shortened view" option is not set.
  194.                 // Events after the end day are filtered in the Events::addEvent() method (see #8782).
  195.                 if (!$this->cal_noSpan && $day $intStart) {
  196.                     continue;
  197.                 }
  198.                 foreach ($events as $event) {
  199.                     // Use repeatEnd if > 0 (see #8447)
  200.                     if (($event['repeatEnd'] ?: $event['endTime']) < $intStart || $event['startTime'] > $intEnd) {
  201.                         continue;
  202.                     }
  203.                     // Skip occurrences in the past but show running events (see #8497)
  204.                     if ($event['repeatEnd'] && $event['end'] < $intStart) {
  205.                         continue;
  206.                     }
  207.                     $event['firstDay'] = $GLOBALS['TL_LANG']['DAYS'][date('w'$day)];
  208.                     $event['firstDate'] = \Date::parse($objPage->dateFormat$day);
  209.                     $arrEvents[] = $event;
  210.                 }
  211.             }
  212.         }
  213.         unset($arrCustomEvents);
  214.         $total count($arrEvents);
  215.         $limit $total;
  216.         $offset 0;
  217.         // Overall limit
  218.         if ($this->cal_limit 0) {
  219.             $total min($this->cal_limit$total);
  220.             $limit $total;
  221.         }
  222.         // Pagination
  223.         if ($this->perPage 0) {
  224.             $id 'page_e' $this->id;
  225.             $page = (\Input::get($id) !== null) ? \Input::get($id) : 1;
  226.             // Do not index or cache the page if the page number is outside the range
  227.             if ($page || $page max(ceil($total $this->perPage), 1)) {
  228.                 /** @var \PageError404 $objHandler */
  229.                 $objHandler = new $GLOBALS['TL_PTY']['error_404']();
  230.                 $objHandler->generate($objPage->id);
  231.             }
  232.             $offset = ($page 1) * $this->perPage;
  233.             $limit min($this->perPage $offset$total);
  234.             $objPagination = new \Pagination($total$this->perPage\Config::get('maxPaginationLinks'), $id);
  235.             $this->Template->pagination $objPagination->generate("\n  ");
  236.         }
  237.         $strMonth '';
  238.         $strDate '';
  239.         $strEvents '';
  240.         $dayCount 0;
  241.         $eventCount 0;
  242.         $headerCount 0;
  243.         $imgSize false;
  244.         // Override the default image size
  245.         if ($this->imgSize != '') {
  246.             $size deserialize($this->imgSize);
  247.             if ($size[0] > || $size[1] > || is_numeric($size[2])) {
  248.                 $imgSize $this->imgSize;
  249.             }
  250.         }
  251.         // Parse events
  252.         for ($i $offset$i $limit$i++) {
  253.             $event $arrEvents[$i];
  254.             $blnIsLastEvent false;
  255.             // Last event on the current day
  256.             if (($i 1) == $limit || !isset($arrEvents[($i 1)]['firstDate']) || $event['firstDate'] != $arrEvents[($i 1)]['firstDate']) {
  257.                 $blnIsLastEvent true;
  258.             }
  259.             /** @var \FrontendTemplate|object $objTemplate */
  260.             $objTemplate = new \FrontendTemplate($this->cal_template);
  261.             $objTemplate->setData($event);
  262.             // Month header
  263.             if ($strMonth != $event['month']) {
  264.                 $objTemplate->newMonth true;
  265.                 $strMonth $event['month'];
  266.             }
  267.             // Day header
  268.             if ($strDate != $event['firstDate']) {
  269.                 $headerCount 0;
  270.                 $objTemplate->header true;
  271.                 $objTemplate->classHeader = ((($dayCount 2) == 0) ? ' even' ' odd') . (($dayCount == 0) ? ' first' '') . (($event['firstDate'] == $arrEvents[($limit 1)]['firstDate']) ? ' last' '');
  272.                 $strDate $event['firstDate'];
  273.                 ++$dayCount;
  274.             }
  275.             // Show the teaser text of redirect events (see #6315)
  276.             if (is_bool($event['details'])) {
  277.                 $objTemplate->hasDetails false;
  278.             }
  279.             // Add the template variables
  280.             $objTemplate->classList $event['class'] . ((($headerCount 2) == 0) ? ' even' ' odd') . (($headerCount == 0) ? ' first' '') . ($blnIsLastEvent ' last' '') . ' cal_' $event['parent'];
  281.             $objTemplate->classUpcoming $event['class'] . ((($eventCount 2) == 0) ? ' even' ' odd') . (($eventCount == 0) ? ' first' '') . ((($offset $eventCount 1) >= $limit) ? ' last' '') . ' cal_' $event['parent'];
  282.             $objTemplate->readMore specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['readMore'], $event['title']));
  283.             $objTemplate->more $GLOBALS['TL_LANG']['MSC']['more'];
  284.             $objTemplate->locationLabel $GLOBALS['TL_LANG']['MSC']['location'];
  285.             // Short view
  286.             if ($this->cal_noSpan) {
  287.                 $objTemplate->day $event['day'];
  288.                 $objTemplate->date $event['date'];
  289.             } else {
  290.                 $objTemplate->day $event['firstDay'];
  291.                 $objTemplate->date $event['firstDate'];
  292.             }
  293.             $objTemplate->addImage false;
  294.             // Add an image
  295.             if ($event['addImage'] && $event['singleSRC'] != '') {
  296.                 $objModel \FilesModel::findByUuid($event['singleSRC']);
  297.                 if ($objModel === null) {
  298.                     if (!\Validator::isUuid($event['singleSRC'])) {
  299.                         $objTemplate->text '<p class="error">' $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
  300.                     }
  301.                 } elseif (is_file(TL_ROOT '/' $objModel->path)) {
  302.                     if ($imgSize) {
  303.                         $event['size'] = $imgSize;
  304.                     }
  305.                     $event['singleSRC'] = $objModel->path;
  306.                     $this->addImageToTemplate($objTemplate$event);
  307.                 }
  308.             }
  309.             $objTemplate->enclosure = array();
  310.             // Add enclosure
  311.             if ($event['addEnclosure']) {
  312.                 $this->addEnclosuresToTemplate($objTemplate$event);
  313.             }
  314.             $strEvents .= $objTemplate->parse();
  315.             ++$eventCount;
  316.             ++$headerCount;
  317.         }
  318.         // No events found
  319.         if ($strEvents == '') {
  320.             $strEvents "\n" '<div class="empty">' $strEmpty '</div>' "\n";
  321.         }
  322.         // See #3672
  323.         $this->Template->headline $this->headline;
  324.         $this->Template->events $strEvents;
  325.         // Clear the $_GET array (see #2445)
  326.         if ($blnClearInput) {
  327.             \Input::setGet('year'null);
  328.             \Input::setGet('month'null);
  329.             \Input::setGet('day'null);
  330.         }
  331.         $arrFilter = array();
  332.         // build filter href
  333.         $filterHref $strRequest;
  334.         $filterHref preg_replace('/(\&(amp;))+$/'''$filterHref);
  335.         // build discipline filter
  336.         $arrFilter['discipline'] = array();
  337.         $disciplineHref $filterHref;
  338.         $disciplineHref preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/(\&(amp;)?|\?)(discipline)=(.+?)?(\&(amp;)?|$)/''$1'$disciplineHref));
  339.         $disciplines $GLOBALS['TL_LANG']['tl_calendar_events']['discipline']['options'];
  340.         if (is_array($disciplines) AND count($disciplines)) {
  341.             $arrFilter['discipline']['all'] = array
  342.             (
  343.                 'isActive' => true,
  344.                 'name' => $GLOBALS['TL_LANG']['tl_calendar_events']['discipline']['all'],
  345.                 'href' => preg_replace('/(\&(amp;)?)+$/'''$disciplineHref),
  346.             );
  347.             $arrFilter['discipline']['all']['href'] = preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/\?(\&(amp;)?)+/''?'$arrFilter['discipline']['all']['href']));
  348.             $disciplineActive false;
  349.             foreach ($disciplines AS $code => $discipline) {
  350.                 $arrFilter['discipline'][$code] = array
  351.                 (
  352.                     'isActive' => $curDiscipline == $code true false,
  353.                     'name' => $discipline,
  354.                     'href' => $disciplineHref . ((\Config::get('disableAlias') || strpos($disciplineHref'?') !== false) ? '&amp;' '?') . 'discipline=' \System::urlEncode($code),
  355.                 );
  356.                 $arrFilter['discipline'][$code]['href'] = preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/\?(\&(amp;)?)+/''?'$arrFilter['discipline'][$code]['href']));
  357.                 $disciplineActive = !$disciplineActive ? ($curDiscipline == $code true false) : false;
  358.                 if ($disciplineActive) {
  359.                     $arrFilter['discipline']['all']['isActive'] = false;
  360.                 }
  361.             }
  362.         }
  363.         
  364.         // build year filter
  365.         $arrFilter['year'] = array();
  366.         $yearHref $filterHref;
  367.         $yearHref preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/(\&(amp;)?|\?)(year)=(.+?)?(\&(amp;)?|$)/''$1'preg_replace('/(\&(amp;)?|\?)(month)=(.+?)?(\&(amp;)?|$)/''$1'$yearHref)));
  368.         if (is_array($years) AND count($years)) {
  369.             foreach ($years AS $index => $year) {
  370.                 $arrFilter['year'][$index] = array
  371.                 (
  372.                     'isActive' => date('Y'$this->Date->__get('tstamp')) == $year true false,
  373.                     'name' => $year,
  374.                     'href' => $yearHref . ((\Config::get('disableAlias') || strpos($yearHref'?') !== false) ? '&amp;' '?') . 'year=' \System::urlEncode($year),
  375.                 );
  376.                 $arrFilter['year'][$index]['href'] = preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/\?(\&(amp;)?)+/''?'$arrFilter['year'][$index]['href']));
  377.             }
  378.         }
  379.         // build month filter
  380.         $arrFilter['month'] = array();
  381.         $monthHref $filterHref;
  382.         $monthHref preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/(\&(amp;)?|\?)(year)=(.+?)?(\&(amp;)?|$)/''$1'preg_replace('/(\&(amp;)?|\?)(month)=(.+?)?(\&(amp;)?|$)/''$1'$monthHref)));
  383.         $months $GLOBALS['TL_LANG']['tl_calendar_events']['month']['options'];
  384.         if (is_array($months) AND count($months)) {
  385.             $arrFilter['month']['all'] = array
  386.             (
  387.                 'isActive' => (!isset($_GET['month']) && !isset($_GET['day'])) ? true false,
  388.                 'name' => $GLOBALS['TL_LANG']['tl_calendar_events']['month']['all'],
  389.                 'href' => preg_replace('/(\&(amp;)?)+$/'''$monthHref),
  390.             );
  391.             $arrFilter['month']['all']['href'] = preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/\?(\&(amp;)?)+/''?'$arrFilter['month']['all']['href']));
  392.             $monthActive false;
  393.             foreach ($months AS $no => $month) {
  394.                 $arrFilter['month'][$no] = array
  395.                 (
  396.                     'isActive' => (!$arrFilter['month']['all']['isActive'] && date('n'$this->Date->__get('tstamp')) == $no) ? true false,
  397.                     'name' => $month,
  398.                     'href' => $monthHref . ((\Config::get('disableAlias') || strpos($monthHref'?') !== false) ? '&amp;' '?') . 'month=' date('Y'$this->Date->__get('tstamp')) . preg_replace('/^([0-9]{1})$/''0$1'\System::urlEncode($no)),
  399.                 );
  400.                 $arrFilter['month'][$no]['href'] = preg_replace('/(\&(amp;)?)+/''&amp;'preg_replace('/\?(\&(amp;)?)+/''?'$arrFilter['month'][$no]['href']));
  401.                 if ($arrFilter['month'][$no]['isActive']) {
  402.                     $monthActive true;
  403.                 }
  404.             }
  405.             if (!$monthActive) {
  406.                 $arrFilter['month']['all']['isActive'] = true;
  407.             }
  408.         }
  409.         // add template vars
  410.         $this->Template->date $this->Date;
  411.         $this->Template->filter $arrFilter;
  412.     }
  413. }