vendor/contao/calendar-bundle/src/Resources/contao/modules/ModuleEventlist.php line 48

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Contao.
  4.  *
  5.  * (c) Leo Feyer
  6.  *
  7.  * @license LGPL-3.0-or-later
  8.  */
  9. namespace Contao;
  10. use Contao\CoreBundle\Exception\PageNotFoundException;
  11. /**
  12.  * Front end module "event list".
  13.  *
  14.  * @property bool   $cal_noSpan
  15.  * @property string $cal_template
  16.  * @property int    $cal_limit
  17.  * @property string $cal_order
  18.  * @property array  $cal_calendar
  19.  * @property string $cal_format
  20.  * @property bool   $cal_ignoreDynamic
  21.  * @property int    $cal_readerModule
  22.  * @property bool   $cal_hideRunning
  23.  * @property string $cal_featured
  24.  */
  25. class ModuleEventlist extends Events
  26. {
  27.     /**
  28.      * Current date object
  29.      * @var Date
  30.      */
  31.     protected $Date;
  32.     /**
  33.      * Template
  34.      * @var string
  35.      */
  36.     protected $strTemplate 'mod_eventlist';
  37.     /**
  38.      * Display a wildcard in the back end
  39.      *
  40.      * @return string
  41.      */
  42.     public function generate()
  43.     {
  44.         $request System::getContainer()->get('request_stack')->getCurrentRequest();
  45.         if ($request && System::getContainer()->get('contao.routing.scope_matcher')->isBackendRequest($request))
  46.         {
  47.             $objTemplate = new BackendTemplate('be_wildcard');
  48.             $objTemplate->wildcard '### ' $GLOBALS['TL_LANG']['FMD']['eventlist'][0] . ' ###';
  49.             $objTemplate->title $this->headline;
  50.             $objTemplate->id $this->id;
  51.             $objTemplate->link $this->name;
  52.             $objTemplate->href StringUtil::specialcharsUrl(System::getContainer()->get('router')->generate('contao_backend', array('do'=>'themes''table'=>'tl_module''act'=>'edit''id'=>$this->id)));
  53.             return $objTemplate->parse();
  54.         }
  55.         $this->cal_calendar $this->sortOutProtected(StringUtil::deserialize($this->cal_calendartrue));
  56.         // Return if there are no calendars
  57.         if (empty($this->cal_calendar) || !\is_array($this->cal_calendar))
  58.         {
  59.             return '';
  60.         }
  61.         // Show the event reader if an item has been selected
  62.         if ($this->cal_readerModule && (isset($_GET['events']) || (Config::get('useAutoItem') && isset($_GET['auto_item']))))
  63.         {
  64.             return $this->getFrontendModule($this->cal_readerModule$this->strColumn);
  65.         }
  66.         // Tag the calendars (see #2137)
  67.         if (System::getContainer()->has('fos_http_cache.http.symfony_response_tagger'))
  68.         {
  69.             $responseTagger System::getContainer()->get('fos_http_cache.http.symfony_response_tagger');
  70.             $responseTagger->addTags(array_map(static function ($id) { return 'contao.db.tl_calendar.' $id; }, $this->cal_calendar));
  71.         }
  72.         return parent::generate();
  73.     }
  74.     /**
  75.      * Generate the module
  76.      */
  77.     protected function compile()
  78.     {
  79.         /** @var PageModel $objPage */
  80.         global $objPage;
  81.         $blnClearInput false;
  82.         $intYear = (int) Input::get('year');
  83.         $intMonth = (int) Input::get('month');
  84.         $intDay = (int) Input::get('day');
  85.         // Handle featured events
  86.         $blnFeatured null;
  87.         if ($this->cal_featured == 'featured')
  88.         {
  89.             $blnFeatured true;
  90.         }
  91.         elseif ($this->cal_featured == 'unfeatured')
  92.         {
  93.             $blnFeatured false;
  94.         }
  95.         // Jump to the current period
  96.         if (!isset($_GET['year']) && !isset($_GET['month']) && !isset($_GET['day']))
  97.         {
  98.             switch ($this->cal_format)
  99.             {
  100.                 case 'cal_year':
  101.                     $intYear date('Y');
  102.                     break;
  103.                 case 'cal_month':
  104.                     $intMonth date('Ym');
  105.                     break;
  106.                 case 'cal_day':
  107.                     $intDay date('Ymd');
  108.                     break;
  109.             }
  110.             $blnClearInput true;
  111.         }
  112.         $blnDynamicFormat = (!$this->cal_ignoreDynamic && \in_array($this->cal_format, array('cal_day''cal_month''cal_year')));
  113.         // Create the date object
  114.         try
  115.         {
  116.             if ($blnDynamicFormat && $intYear)
  117.             {
  118.                 $this->Date = new Date($intYear'Y');
  119.                 $this->cal_format 'cal_year';
  120.                 $this->headline .= ' ' date('Y'$this->Date->tstamp);
  121.             }
  122.             elseif ($blnDynamicFormat && $intMonth)
  123.             {
  124.                 $this->Date = new Date($intMonth'Ym');
  125.                 $this->cal_format 'cal_month';
  126.                 $this->headline .= ' ' Date::parse('F Y'$this->Date->tstamp);
  127.             }
  128.             elseif ($blnDynamicFormat && $intDay)
  129.             {
  130.                 $this->Date = new Date($intDay'Ymd');
  131.                 $this->cal_format 'cal_day';
  132.                 $this->headline .= ' ' Date::parse($objPage->dateFormat$this->Date->tstamp);
  133.             }
  134.             else
  135.             {
  136.                 $this->Date = new Date();
  137.             }
  138.         }
  139.         catch (\OutOfBoundsException $e)
  140.         {
  141.             throw new PageNotFoundException('Page not found: ' Environment::get('uri'));
  142.         }
  143.         list($intStart$intEnd$strEmpty) = $this->getDatesFromFormat($this->Date$this->cal_format);
  144.         // Get all events
  145.         $arrAllEvents $this->getAllEvents($this->cal_calendar$intStart$intEnd$blnFeatured);
  146.         $sort = ($this->cal_order == 'descending') ? 'krsort' 'ksort';
  147.         // Sort the days
  148.         $sort($arrAllEvents);
  149.         // Sort the events
  150.         foreach (array_keys($arrAllEvents) as $key)
  151.         {
  152.             $sort($arrAllEvents[$key]);
  153.         }
  154.         $intCount 0;
  155.         $arrEvents = array();
  156.         // Remove events outside the scope
  157.         foreach ($arrAllEvents as $days)
  158.         {
  159.             foreach ($days as $day=>$events)
  160.             {
  161.                 // Skip events before the start day if the "shortened view" option is not set.
  162.                 // Events after the end day are filtered in the Events::addEvent() method (see #8782).
  163.                 if (!$this->cal_noSpan && $day $intStart)
  164.                 {
  165.                     continue;
  166.                 }
  167.                 foreach ($events as $event)
  168.                 {
  169.                     // Use repeatEnd if > 0 (see #8447)
  170.                     if ($event['startTime'] > $intEnd || ($event['repeatEnd'] ?: $event['endTime']) < $intStart)
  171.                     {
  172.                         continue;
  173.                     }
  174.                     // Hide running events
  175.                     if ($this->cal_hideRunning && $event['begin'] < $intStart)
  176.                     {
  177.                         continue;
  178.                     }
  179.                     // Skip occurrences in the past
  180.                     if ($event['repeatEnd'] && $event['end'] < $intStart)
  181.                     {
  182.                         continue;
  183.                     }
  184.                     // Hide running non-recurring events (see #30)
  185.                     if ($this->cal_hideRunning && !$event['recurring'] && $event['startTime'] < time())
  186.                     {
  187.                         continue;
  188.                     }
  189.                     $event['firstDay'] = $GLOBALS['TL_LANG']['DAYS'][date('w', (int) $day)];
  190.                     $event['firstDate'] = Date::parse($objPage->dateFormat$day);
  191.                     $event['count'] = ++$intCount// see #74
  192.                     $arrEvents[] = $event;
  193.                 }
  194.             }
  195.         }
  196.         unset($arrAllEvents);
  197.         // Limit the number of recurrences if both the event list and the event
  198.         // allow unlimited recurrences (see #4037)
  199.         if (!$this->numberOfItems)
  200.         {
  201.             $unset = array();
  202.             foreach ($arrEvents as $k=>$v)
  203.             {
  204.                 if ($v['recurring'] && !$v['recurrences'])
  205.                 {
  206.                     if (!isset($unset[$v['id']]))
  207.                     {
  208.                         $unset[$v['id']] = true;
  209.                     }
  210.                     else
  211.                     {
  212.                         unset($arrEvents[$k]);
  213.                     }
  214.                 }
  215.             }
  216.             unset($unset);
  217.             $arrEvents array_values($arrEvents);
  218.         }
  219.         $total \count($arrEvents);
  220.         $limit $total;
  221.         $offset 0;
  222.         // Overall limit
  223.         if ($this->cal_limit 0)
  224.         {
  225.             $total min($this->cal_limit$total);
  226.             $limit $total;
  227.         }
  228.         // Pagination
  229.         if ($this->perPage 0)
  230.         {
  231.             $id 'page_e' $this->id;
  232.             $page = (int) (Input::get($id) ?? 1);
  233.             // Do not index or cache the page if the page number is outside the range
  234.             if ($page || $page max(ceil($total/$this->perPage), 1))
  235.             {
  236.                 throw new PageNotFoundException('Page not found: ' Environment::get('uri'));
  237.             }
  238.             $offset = ($page 1) * $this->perPage;
  239.             $limit min($this->perPage $offset$total);
  240.             $objPagination = new Pagination($total$this->perPageConfig::get('maxPaginationLinks'), $id);
  241.             $this->Template->pagination $objPagination->generate("\n  ");
  242.         }
  243.         $strMonth '';
  244.         $strDate '';
  245.         $strEvents '';
  246.         $dayCount 0;
  247.         $eventCount 0;
  248.         $headerCount 0;
  249.         $uuids = array();
  250.         for ($i=$offset$i<$limit$i++)
  251.         {
  252.             if ($arrEvents[$i]['addImage'] && $arrEvents[$i]['singleSRC'])
  253.             {
  254.                 $uuids[] = $arrEvents[$i]['singleSRC'];
  255.             }
  256.         }
  257.         // Preload all images in one query, so they are loaded into the model registry
  258.         FilesModel::findMultipleByUuids($uuids);
  259.         // Parse events
  260.         for ($i=$offset$i<$limit$i++)
  261.         {
  262.             $event $arrEvents[$i];
  263.             $blnIsLastEvent false;
  264.             // Last event on the current day
  265.             if (($i+1) == $limit || !isset($arrEvents[($i+1)]['firstDate']) || $event['firstDate'] != $arrEvents[($i+1)]['firstDate'])
  266.             {
  267.                 $blnIsLastEvent true;
  268.             }
  269.             $objTemplate = new FrontendTemplate($this->cal_template ?: 'event_list');
  270.             $objTemplate->setData($event);
  271.             // Month header
  272.             if ($strMonth != $event['month'])
  273.             {
  274.                 $objTemplate->newMonth true;
  275.                 $strMonth $event['month'];
  276.             }
  277.             // Day header
  278.             if ($strDate != $event['firstDate'])
  279.             {
  280.                 $headerCount 0;
  281.                 $objTemplate->header true;
  282.                 $objTemplate->classHeader = ((($dayCount 2) == 0) ? ' even' ' odd') . (($dayCount == 0) ? ' first' '') . (($event['firstDate'] == $arrEvents[($limit-1)]['firstDate']) ? ' last' '');
  283.                 $strDate $event['firstDate'];
  284.                 ++$dayCount;
  285.             }
  286.             // Show the teaser text of redirect events (see #6315)
  287.             if (\is_bool($event['details']) && $event['source'] == 'default')
  288.             {
  289.                 $objTemplate->hasDetails false;
  290.             }
  291.             $objTemplate->hasReader $event['source'] == 'default';
  292.             // Add the template variables
  293.             $objTemplate->classList $event['class'] . ((($headerCount 2) == 0) ? ' even' ' odd') . (($headerCount == 0) ? ' first' '') . ($blnIsLastEvent ' last' '') . ' cal_' $event['parent'];
  294.             $objTemplate->classUpcoming $event['class'] . ((($eventCount 2) == 0) ? ' even' ' odd') . (($eventCount == 0) ? ' first' '') . ((($offset $eventCount 1) >= $limit) ? ' last' '') . ' cal_' $event['parent'];
  295.             $objTemplate->readMore StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['readMore'], $event['title']));
  296.             $objTemplate->more $GLOBALS['TL_LANG']['MSC']['more'];
  297.             $objTemplate->locationLabel $GLOBALS['TL_LANG']['MSC']['location'];
  298.             // Short view
  299.             if ($this->cal_noSpan)
  300.             {
  301.                 $objTemplate->day $event['day'];
  302.                 $objTemplate->date $event['date'];
  303.             }
  304.             else
  305.             {
  306.                 $objTemplate->day $event['firstDay'];
  307.                 $objTemplate->date $event['firstDate'];
  308.             }
  309.             $objTemplate->addImage false;
  310.             $objTemplate->addBefore false;
  311.             // Add an image
  312.             if ($event['addImage'])
  313.             {
  314.                 /** @var CalendarEventsModel $eventModel */
  315.                 $eventModel CalendarEventsModel::findByPk($event['id']);
  316.                 $imgSize $eventModel->size ?: null;
  317.                 // Override the default image size
  318.                 if ($this->imgSize)
  319.                 {
  320.                     $size StringUtil::deserialize($this->imgSize);
  321.                     if ($size[0] > || $size[1] > || is_numeric($size[2]) || ($size[2][0] ?? null) === '_')
  322.                     {
  323.                         $imgSize $this->imgSize;
  324.                     }
  325.                 }
  326.                 $figureBuilder System::getContainer()->get('contao.image.studio')->createFigureBuilder();
  327.                 $figure $figureBuilder
  328.                     ->from($event['singleSRC'])
  329.                     ->setSize($imgSize)
  330.                     ->setOverwriteMetadata($eventModel->getOverwriteMetadata())
  331.                     ->enableLightbox((bool) $eventModel->fullsize)
  332.                     ->buildIfResourceExists();
  333.                 if (null !== $figure)
  334.                 {
  335.                     // Rebuild with link to event if none is set
  336.                     if (!$figure->getLinkHref())
  337.                     {
  338.                         $figure $figureBuilder
  339.                             ->setLinkHref($event['href'])
  340.                             ->setLinkAttribute('title'$objTemplate->readMore)
  341.                             ->build();
  342.                     }
  343.                     $figure->applyLegacyTemplateData($objTemplate$eventModel->imagemargin$eventModel->floating);
  344.                 }
  345.             }
  346.             $objTemplate->enclosure = array();
  347.             // Add enclosure
  348.             if ($event['addEnclosure'])
  349.             {
  350.                 $this->addEnclosuresToTemplate($objTemplate$event);
  351.             }
  352.             // schema.org information
  353.             $objTemplate->getSchemaOrgData = static function () use ($objTemplate$event): array
  354.             {
  355.                 $jsonLd Events::getSchemaOrgData((new CalendarEventsModel())->setRow($event));
  356.                 if ($objTemplate->addImage && $objTemplate->figure)
  357.                 {
  358.                     $jsonLd['image'] = $objTemplate->figure->getSchemaOrgData();
  359.                 }
  360.                 return $jsonLd;
  361.             };
  362.             $strEvents .= $objTemplate->parse();
  363.             ++$eventCount;
  364.             ++$headerCount;
  365.         }
  366.         // No events found
  367.         if (!$strEvents)
  368.         {
  369.             $strEvents "\n" '<div class="empty">' $strEmpty '</div>' "\n";
  370.         }
  371.         // See #3672
  372.         $this->Template->headline $this->headline;
  373.         $this->Template->events $strEvents;
  374.         $this->Template->eventCount $eventCount;
  375.         // Clear the $_GET array (see #2445)
  376.         if ($blnClearInput)
  377.         {
  378.             Input::setGet('year'null);
  379.             Input::setGet('month'null);
  380.             Input::setGet('day'null);
  381.         }
  382.     }
  383. }
  384. class_alias(ModuleEventlist::class, 'ModuleEventlist');