<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgStratec
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2017
*/
/**
* Set custom namespace
*/
namespace App\Module;
use App\Model\SgStratecCalendarEventsModel;
use Contao\ModuleEventlist;
/**
* Load tl_calendar_events language file
*/
\System::loadLanguageFile('tl_calendar_events');
/**
* Class SgStratecEventList
*
* Frontend module "event list".
*
* @package SgStratec
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2017
*/
class SgStratecEventList extends ModuleEventlist
{
/**
* Get all events of a certain period (with custom filters)
*
* @param array $arrCalendars
* @param integer $intStart
* @param integer $intEnd
*
* @return array
*/
protected function getAllEventsCustom($arrCalendars, $intStart, $intEnd, $arrSqlFilter)
{
if (!is_array($arrCalendars)) {
return array();
}
$this->arrEvents = array();
foreach ($arrCalendars as $id) {
$strUrl = $this->strUrl;
$objCalendar = \CalendarModel::findByPk($id);
// Get the current "jumpTo" page
if ($objCalendar !== null && $objCalendar->jumpTo && ($objTarget = $objCalendar->getRelated('jumpTo')) !== null) {
/** @var \PageModel $objTarget */
$strUrl = $objTarget->getFrontendUrl((\Config::get('useAutoItem') && !\Config::get('disableAlias')) ? '/%s' : '/events/%s');
}
// Get the events of the current period
$objEvents = SgStratecCalendarEventsModel::findCurrentByPidCustom($id, $intStart, $intEnd, $arrSqlFilter);
if ($objEvents === null) {
continue;
}
while ($objEvents->next()) {
$this->addEvent($objEvents, $objEvents->startTime, $objEvents->endTime, $strUrl, $intStart, $intEnd, $id);
// Recurring events
if ($objEvents->recurring) {
$arrRepeat = deserialize($objEvents->repeatEach);
if (!is_array($arrRepeat) || !isset($arrRepeat['unit']) || !isset($arrRepeat['value'])
|| $arrRepeat['value'] < 1) {
continue;
}
$count = 0;
$intStartTime = $objEvents->startTime;
$intEndTime = $objEvents->endTime;
$strtotime = '+ ' . $arrRepeat['value'] . ' ' . $arrRepeat['unit'];
while ($intEndTime < $intEnd) {
if ($objEvents->recurrences > 0 && $count++ >= $objEvents->recurrences) {
break;
}
$intStartTime = strtotime($strtotime, $intStartTime);
$intEndTime = strtotime($strtotime, $intEndTime);
// Stop if the upper boundary is reached (see #8445)
if ($intStartTime === false || $intEndTime === false) {
break;
}
// Skip events outside the scope
if ($intEndTime < $intStart || $intStartTime > $intEnd) {
continue;
}
$this->addEvent($objEvents, $intStartTime, $intEndTime, $strUrl, $intStart, $intEnd, $id);
}
}
}
}
// Sort the array
foreach (array_keys($this->arrEvents) as $key) {
ksort($this->arrEvents[$key]);
}
// HOOK: modify the result set
if (isset($GLOBALS['TL_HOOKS']['getAllEvents']) && is_array($GLOBALS['TL_HOOKS']['getAllEvents'])) {
foreach ($GLOBALS['TL_HOOKS']['getAllEvents'] as $callback) {
$this->import($callback[0]);
$this->arrEvents = $this->{$callback[0]}->{$callback[1]}($this->arrEvents, $arrCalendars, $intStart, $intEnd, $this);
}
}
return $this->arrEvents;
}
/**
* Generate the module
*/
protected function compile()
{
/** @var \PageModel $objPage */
global $objPage;
$strRequest = ampersand(\Environment::get('request'), true);
$arrSqlFilter = array();
$blnClearInput = false;
$intYear = \Input::get('year');
$intMonth = \Input::get('month');
$intDay = \Input::get('day');
// discipline filter
$curDiscipline = \Input::get('discipline', true);
if ($curDiscipline AND !empty($curDiscipline)) {
$arrSqlFilter['discipline'] = array
(
'sql' => '%t.discipline=?',
'values' => array
(
$curDiscipline
)
);
}
// Jump to the current period
if (!isset($_GET['year']) && !isset($_GET['month']) && !isset($_GET['day'])) {
switch ($this->cal_format) {
case 'cal_year':
$intYear = date('Y');
break;
case 'cal_month':
$intMonth = date('Ym');
break;
case 'cal_day':
$intDay = date('Ymd');
break;
}
$blnClearInput = true;
}
$blnDynamicFormat = (!$this->cal_ignoreDynamic && in_array($this->cal_format, array('cal_day', 'cal_month', 'cal_year')));
// Create the date object
try {
if ($blnDynamicFormat && $intYear) {
$this->Date = new \Date($intYear, 'Y');
$this->cal_format = 'cal_year';
$this->headline .= ' ' . date('Y', $this->Date->tstamp);
} elseif ($blnDynamicFormat && $intMonth) {
$this->Date = new \Date($intMonth, 'Ym');
$this->cal_format = 'cal_month';
$this->headline .= ' ' . \Date::parse('F Y', $this->Date->tstamp);
} elseif ($blnDynamicFormat && $intDay) {
$this->Date = new \Date($intDay, 'Ymd');
$this->cal_format = 'cal_day';
$this->headline .= ' ' . \Date::parse($objPage->dateFormat, $this->Date->tstamp);
} else {
$this->Date = new \Date();
}
} catch (\OutOfBoundsException $e) {
/** @var \PageError404 $objHandler */
$objHandler = new $GLOBALS['TL_PTY']['error_404']();
$objHandler->generate($objPage->id);
}
list($intStart, $intEnd, $strEmpty) = $this->getDatesFromFormat($this->Date, $this->cal_format);
// Get event years
$years = array();
$arrAllEvents = $this->getAllEventsCustom($this->cal_calendar, 0, strtotime('+100 years', $this->Date->__get('tstamp')), $arrSqlFilter);
foreach ($arrAllEvents as $date => $data) {
$year = intval(substr($date, 0, 4));
if (!in_array($year, $years)) {
$years[] = $year;
}
}
// Get custom events
$arrCustomEvents = $this->getAllEventsCustom($this->cal_calendar, $intStart, $intEnd, $arrSqlFilter);
$sort = ($this->cal_order == 'descending') ? 'krsort' : 'ksort';
// Sort the days
$sort($arrCustomEvents);
// Sort the events
foreach (array_keys($arrCustomEvents) as $key) {
$sort($arrCustomEvents[$key]);
}
$arrEvents = array();
// Remove events outside the scope
foreach ($arrCustomEvents as $key => $days) {
foreach ($days as $day => $events) {
// Skip events before the start day if the "shortened view" option is not set.
// Events after the end day are filtered in the Events::addEvent() method (see #8782).
if (!$this->cal_noSpan && $day < $intStart) {
continue;
}
foreach ($events as $event) {
// Use repeatEnd if > 0 (see #8447)
if (($event['repeatEnd'] ?: $event['endTime']) < $intStart || $event['startTime'] > $intEnd) {
continue;
}
// Skip occurrences in the past but show running events (see #8497)
if ($event['repeatEnd'] && $event['end'] < $intStart) {
continue;
}
$event['firstDay'] = $GLOBALS['TL_LANG']['DAYS'][date('w', $day)];
$event['firstDate'] = \Date::parse($objPage->dateFormat, $day);
$arrEvents[] = $event;
}
}
}
unset($arrCustomEvents);
$total = count($arrEvents);
$limit = $total;
$offset = 0;
// Overall limit
if ($this->cal_limit > 0) {
$total = min($this->cal_limit, $total);
$limit = $total;
}
// Pagination
if ($this->perPage > 0) {
$id = 'page_e' . $this->id;
$page = (\Input::get($id) !== null) ? \Input::get($id) : 1;
// Do not index or cache the page if the page number is outside the range
if ($page < 1 || $page > max(ceil($total / $this->perPage), 1)) {
/** @var \PageError404 $objHandler */
$objHandler = new $GLOBALS['TL_PTY']['error_404']();
$objHandler->generate($objPage->id);
}
$offset = ($page - 1) * $this->perPage;
$limit = min($this->perPage + $offset, $total);
$objPagination = new \Pagination($total, $this->perPage, \Config::get('maxPaginationLinks'), $id);
$this->Template->pagination = $objPagination->generate("\n ");
}
$strMonth = '';
$strDate = '';
$strEvents = '';
$dayCount = 0;
$eventCount = 0;
$headerCount = 0;
$imgSize = false;
// Override the default image size
if ($this->imgSize != '') {
$size = deserialize($this->imgSize);
if ($size[0] > 0 || $size[1] > 0 || is_numeric($size[2])) {
$imgSize = $this->imgSize;
}
}
// Parse events
for ($i = $offset; $i < $limit; $i++) {
$event = $arrEvents[$i];
$blnIsLastEvent = false;
// Last event on the current day
if (($i + 1) == $limit || !isset($arrEvents[($i + 1)]['firstDate']) || $event['firstDate'] != $arrEvents[($i + 1)]['firstDate']) {
$blnIsLastEvent = true;
}
/** @var \FrontendTemplate|object $objTemplate */
$objTemplate = new \FrontendTemplate($this->cal_template);
$objTemplate->setData($event);
// Month header
if ($strMonth != $event['month']) {
$objTemplate->newMonth = true;
$strMonth = $event['month'];
}
// Day header
if ($strDate != $event['firstDate']) {
$headerCount = 0;
$objTemplate->header = true;
$objTemplate->classHeader = ((($dayCount % 2) == 0) ? ' even' : ' odd') . (($dayCount == 0) ? ' first' : '') . (($event['firstDate'] == $arrEvents[($limit - 1)]['firstDate']) ? ' last' : '');
$strDate = $event['firstDate'];
++$dayCount;
}
// Show the teaser text of redirect events (see #6315)
if (is_bool($event['details'])) {
$objTemplate->hasDetails = false;
}
// Add the template variables
$objTemplate->classList = $event['class'] . ((($headerCount % 2) == 0) ? ' even' : ' odd') . (($headerCount == 0) ? ' first' : '') . ($blnIsLastEvent ? ' last' : '') . ' cal_' . $event['parent'];
$objTemplate->classUpcoming = $event['class'] . ((($eventCount % 2) == 0) ? ' even' : ' odd') . (($eventCount == 0) ? ' first' : '') . ((($offset + $eventCount + 1) >= $limit) ? ' last' : '') . ' cal_' . $event['parent'];
$objTemplate->readMore = specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['readMore'], $event['title']));
$objTemplate->more = $GLOBALS['TL_LANG']['MSC']['more'];
$objTemplate->locationLabel = $GLOBALS['TL_LANG']['MSC']['location'];
// Short view
if ($this->cal_noSpan) {
$objTemplate->day = $event['day'];
$objTemplate->date = $event['date'];
} else {
$objTemplate->day = $event['firstDay'];
$objTemplate->date = $event['firstDate'];
}
$objTemplate->addImage = false;
// Add an image
if ($event['addImage'] && $event['singleSRC'] != '') {
$objModel = \FilesModel::findByUuid($event['singleSRC']);
if ($objModel === null) {
if (!\Validator::isUuid($event['singleSRC'])) {
$objTemplate->text = '<p class="error">' . $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
}
} elseif (is_file(TL_ROOT . '/' . $objModel->path)) {
if ($imgSize) {
$event['size'] = $imgSize;
}
$event['singleSRC'] = $objModel->path;
$this->addImageToTemplate($objTemplate, $event);
}
}
$objTemplate->enclosure = array();
// Add enclosure
if ($event['addEnclosure']) {
$this->addEnclosuresToTemplate($objTemplate, $event);
}
$strEvents .= $objTemplate->parse();
++$eventCount;
++$headerCount;
}
// No events found
if ($strEvents == '') {
$strEvents = "\n" . '<div class="empty">' . $strEmpty . '</div>' . "\n";
}
// See #3672
$this->Template->headline = $this->headline;
$this->Template->events = $strEvents;
// Clear the $_GET array (see #2445)
if ($blnClearInput) {
\Input::setGet('year', null);
\Input::setGet('month', null);
\Input::setGet('day', null);
}
$arrFilter = array();
// build filter href
$filterHref = $strRequest;
$filterHref = preg_replace('/(\&(amp;))+$/', '', $filterHref);
// build discipline filter
$arrFilter['discipline'] = array();
$disciplineHref = $filterHref;
$disciplineHref = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/(\&(amp;)?|\?)(discipline)=(.+?)?(\&(amp;)?|$)/', '$1', $disciplineHref));
$disciplines = $GLOBALS['TL_LANG']['tl_calendar_events']['discipline']['options'];
if (is_array($disciplines) AND count($disciplines)) {
$arrFilter['discipline']['all'] = array
(
'isActive' => true,
'name' => $GLOBALS['TL_LANG']['tl_calendar_events']['discipline']['all'],
'href' => preg_replace('/(\&(amp;)?)+$/', '', $disciplineHref),
);
$arrFilter['discipline']['all']['href'] = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/\?(\&(amp;)?)+/', '?', $arrFilter['discipline']['all']['href']));
$disciplineActive = false;
foreach ($disciplines AS $code => $discipline) {
$arrFilter['discipline'][$code] = array
(
'isActive' => $curDiscipline == $code ? true : false,
'name' => $discipline,
'href' => $disciplineHref . ((\Config::get('disableAlias') || strpos($disciplineHref, '?') !== false) ? '&' : '?') . 'discipline=' . \System::urlEncode($code),
);
$arrFilter['discipline'][$code]['href'] = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/\?(\&(amp;)?)+/', '?', $arrFilter['discipline'][$code]['href']));
$disciplineActive = !$disciplineActive ? ($curDiscipline == $code ? true : false) : false;
if ($disciplineActive) {
$arrFilter['discipline']['all']['isActive'] = false;
}
}
}
// build year filter
$arrFilter['year'] = array();
$yearHref = $filterHref;
$yearHref = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/(\&(amp;)?|\?)(year)=(.+?)?(\&(amp;)?|$)/', '$1', preg_replace('/(\&(amp;)?|\?)(month)=(.+?)?(\&(amp;)?|$)/', '$1', $yearHref)));
if (is_array($years) AND count($years)) {
foreach ($years AS $index => $year) {
$arrFilter['year'][$index] = array
(
'isActive' => date('Y', $this->Date->__get('tstamp')) == $year ? true : false,
'name' => $year,
'href' => $yearHref . ((\Config::get('disableAlias') || strpos($yearHref, '?') !== false) ? '&' : '?') . 'year=' . \System::urlEncode($year),
);
$arrFilter['year'][$index]['href'] = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/\?(\&(amp;)?)+/', '?', $arrFilter['year'][$index]['href']));
}
}
// build month filter
$arrFilter['month'] = array();
$monthHref = $filterHref;
$monthHref = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/(\&(amp;)?|\?)(year)=(.+?)?(\&(amp;)?|$)/', '$1', preg_replace('/(\&(amp;)?|\?)(month)=(.+?)?(\&(amp;)?|$)/', '$1', $monthHref)));
$months = $GLOBALS['TL_LANG']['tl_calendar_events']['month']['options'];
if (is_array($months) AND count($months)) {
$arrFilter['month']['all'] = array
(
'isActive' => (!isset($_GET['month']) && !isset($_GET['day'])) ? true : false,
'name' => $GLOBALS['TL_LANG']['tl_calendar_events']['month']['all'],
'href' => preg_replace('/(\&(amp;)?)+$/', '', $monthHref),
);
$arrFilter['month']['all']['href'] = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/\?(\&(amp;)?)+/', '?', $arrFilter['month']['all']['href']));
$monthActive = false;
foreach ($months AS $no => $month) {
$arrFilter['month'][$no] = array
(
'isActive' => (!$arrFilter['month']['all']['isActive'] && date('n', $this->Date->__get('tstamp')) == $no) ? true : false,
'name' => $month,
'href' => $monthHref . ((\Config::get('disableAlias') || strpos($monthHref, '?') !== false) ? '&' : '?') . 'month=' . date('Y', $this->Date->__get('tstamp')) . preg_replace('/^([0-9]{1})$/', '0$1', \System::urlEncode($no)),
);
$arrFilter['month'][$no]['href'] = preg_replace('/(\&(amp;)?)+/', '&', preg_replace('/\?(\&(amp;)?)+/', '?', $arrFilter['month'][$no]['href']));
if ($arrFilter['month'][$no]['isActive']) {
$monthActive = true;
}
}
if (!$monthActive) {
$arrFilter['month']['all']['isActive'] = true;
}
}
// add template vars
$this->Template->date = $this->Date;
$this->Template->filter = $arrFilter;
}
}