system/modules/sg-references/modules/SgModuleReferencesReader.php line 106

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgReferences
  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 SgM;
  16. use Contao\StringUtil;
  17. /**
  18.  * Class SgModuleReferencesList
  19.  *
  20.  * Frontend module "references list".
  21.  *
  22.  * @package   SgReferences
  23.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  24.  * @copyright Sg-Medien GmbH 2017
  25.  */
  26. class SgModuleReferencesReader extends \SgModuleReferences
  27. {
  28.     /**
  29.      * Template
  30.      * @var string
  31.      */
  32.     protected $strTemplate 'mod_references_reader';
  33.     /**
  34.      * Display a wildcard in the backend
  35.      * @return string
  36.      */
  37.     public function generate()
  38.     {
  39.         if (TL_MODE == 'BE') {
  40.             $objTemplate = new \BackendTemplate('be_wildcard');
  41.             $objTemplate->wildcard '### ' utf8_strtoupper($GLOBALS['TL_LANG']['FMD']['references_reader'][0]) . ' ###';
  42.             $objTemplate->title $this->headline;
  43.             $objTemplate->id $this->id;
  44.             $objTemplate->link $this->name;
  45.             $objTemplate->href 'contao/main.php?do=themes&amp;table=tl_module&amp;act=edit&amp;id=' $this->id;
  46.             return $objTemplate->parse();
  47.         }
  48.         // set the item from the auto_item parameter
  49.         if (!isset($_GET['items']) && \Config::get('useAutoItem') && isset($_GET['auto_item'])) {
  50.             \Input::setGet('items'\Input::get('auto_item'));
  51.         }
  52.         // do not index or cache the page if no reference item has been specified
  53.         if (!\Input::get('items')) {
  54.             global $objPage;
  55.             $objPage->noSearch 1;
  56.             $objPage->cache 0;
  57.             return '';
  58.         }
  59.         $this->reference_categories deserialize($this->reference_categories);
  60.         // do not index or cache the page if there are no reference categories
  61.         if (!is_array($this->reference_categories) || empty($this->reference_categories)) {
  62.             global $objPage;
  63.             $objPage->noSearch 1;
  64.             $objPage->cache 0;
  65.             return '';
  66.         }
  67.         $file \Input::get('file'true);
  68.         $fid \Input::get('fid'true);
  69.         // send the file to the browser and do not send a 404 header
  70.         if ($file != '' AND is_numeric($fid)) {
  71.             $objItem \SgReferencesModel::findByParentAndIdOrAlias(\Input::get('items'), $this->reference_categories);
  72.             if ($objItem !== null) {
  73.                 if ($objItem->useDownloads AND $objItem->multiDownloadsSRC != '') {
  74.                     $objFile \FilesModel::findByPk($fid);
  75.                     if ($file == $objFile->path) {
  76.                         \Controller::sendFileToBrowser($file);
  77.                     }
  78.                 }
  79.             }
  80.         }
  81.         return parent::generate();
  82.     }
  83.     /**
  84.      * Generate the module
  85.      */
  86.     protected function compile()
  87.     {
  88.         global $objPage;
  89.         $strRequest ampersand(\Environment::get('request'), true);
  90.         $this->Template->content '';
  91.         $this->Template->referer 'javascript:history.go(-1)';
  92.         $this->Template->back $GLOBALS['TL_LANG']['MSC']['goBack'];
  93.         $objItem \SgReferencesModel::findByParentAndIdOrAlias(\Input::get('items'), $this->reference_categories);
  94.         if ($objItem === null) {
  95.             // do not index or cache the page
  96.             $objPage->noSearch 1;
  97.             $objPage->cache 0;
  98.             // send a 404 header
  99.             header('HTTP/1.1 404 Not Found');
  100.             $this->Template->content '<p class="error">' sprintf($GLOBALS['TL_LANG']['MSC']['invalidPage'], \Input::get('items')) . '</p>';
  101.             return;
  102.         }
  103.         // overwrite the page title
  104.         if ($objItem->reference_headline != '') {
  105.             $objPage->pageTitle strip_tags(strip_insert_tags($objItem->reference_headline));
  106.         }
  107.         // add customer logo
  108.         $customerLogo false;
  109.         if ($objItem->addCustomerLogo AND $objItem->logoSRC != '') {
  110.             $objModel \FilesModel::findByUuid($objItem->logoSRC);
  111.             if ($objModel !== null) {
  112.                 $objFile = new \File($objModel->pathtrue);
  113.                 $arrMeta $this->getMetaData($objModel->meta$objPage->language);
  114.                 if (!empty($arrMeta)) {
  115.                     if ($objPage->rootFallbackLanguage !== null) {
  116.                         $arrMeta $this->getMetaData($objModel->meta$objPage->rootFallbackLanguage);
  117.                     }
  118.                 }
  119.                 // use the file name as title if none is given
  120.                 if (empty($arrMeta['title'])) {
  121.                     $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  122.                 }
  123.                 // add the customer logo
  124.                 $objLogo = new \stdClass();
  125.                 $this->addImageToTemplate($objLogo, array
  126.                 (
  127.                     'id' => $objModel->id,
  128.                     'uuid' => $objModel->uuid,
  129.                     'name' => $objFile->basename,
  130.                     'singleSRC' => $objModel->path,
  131.                     'alt' => $arrMeta['title'],
  132.                     'imageUrl' => ($arrMeta['link'] ?? ''),
  133.                     'caption' => ($arrMeta['caption'] ?? ''),
  134.                     'size' => $this->imgSize
  135.                 ), floor(\Config::get('maxImageWidth')));
  136.                 $customerLogo $objLogo;
  137.             }
  138.         }
  139.         // add image
  140.         $image false;
  141.         if ($objItem->addImage AND $objItem->singleSRC != '') {
  142.             $objModel \FilesModel::findByUuid($objItem->singleSRC);
  143.             $objFile = new \File($objModel->pathtrue);
  144.             $arrMeta $this->getMetaData($objModel->meta$objPage->language);
  145.             if (!empty($arrMeta)) {
  146.                 if ($objPage->rootFallbackLanguage !== null) {
  147.                     $arrMeta $this->getMetaData($objModel->meta$objPage->rootFallbackLanguage);
  148.                 }
  149.             }
  150.             // use the file name as title if none is given
  151.             if (empty($arrMeta['title'])) {
  152.                 $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  153.             }
  154.             // add the image
  155.             $objImg = new \stdClass();
  156.             $this->addImageToTemplate($objImg, array
  157.             (
  158.                 'id' => $objModel->id,
  159.                 'uuid' => $objModel->uuid,
  160.                 'name' => $objFile->basename,
  161.                 'singleSRC' => $objModel->path,
  162.                 'alt' => $arrMeta['title'],
  163.                 'imageUrl' => ($arrMeta['link'] ?? ''),
  164.                 'caption' => ($arrMeta['caption'] ?? ''),
  165.                 'size' => $this->imgSize
  166.             ), floor(\Config::get('maxImageWidth')));
  167.             $image $objImg;
  168.         }
  169.         // add gallery
  170.         $gallery false;
  171.         if ($objItem->useImages AND $objItem->multiImagesSRC != '') {
  172.             $objItem->multiImagesSRC deserialize($objItem->multiImagesSRC);
  173.             if (is_array($objItem->multiImagesSRC) && !empty($objItem->multiImagesSRC)) {
  174.                 $images = [];
  175.                 $objFiles \FilesModel::findMultipleByUuids($objItem->multiImagesSRC);
  176.                 if ($objFiles !== null) {
  177.                     // Get all images
  178.                     while ($objFiles->next()) {
  179.                         // Continue if the files has been processed or does not exist
  180.                         if (isset($images[$objFiles->path]) || !file_exists(TL_ROOT '/' $objFiles->path)) {
  181.                             continue;
  182.                         }
  183.                         // Single files
  184.                         if ($objFiles->type == 'file') {
  185.                             $objFile = new \File($objFiles->pathtrue);
  186.                             if (!$objFile->isImage) {
  187.                                 continue;
  188.                             }
  189.                             $arrMeta $this->getMetaData($objFiles->meta$objPage->language);
  190.                             if (!empty($arrMeta)) {
  191.                                 if ($objPage->rootFallbackLanguage !== null) {
  192.                                     $arrMeta $this->getMetaData($objFiles->meta$objPage->rootFallbackLanguage);
  193.                                 }
  194.                             }
  195.                             // use the file name as title if none is given
  196.                             if (empty($arrMeta['title'])) {
  197.                                 $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  198.                             }
  199.                             // add the image
  200.                             $objImg = new \stdClass();
  201.                             $objImg->uuid $objFiles->uuid;
  202.                             $this->addImageToTemplate($objImg, array
  203.                             (
  204.                                 'id' => $objFiles->id,
  205.                                 'uuid' => $objFiles->uuid,
  206.                                 'name' => $objFile->basename,
  207.                                 'singleSRC' => $objFiles->path,
  208.                                 'alt' => $arrMeta['title'],
  209.                                 'imageUrl' => ($arrMeta['link'] ?? ''),
  210.                                 'caption' => ($arrMeta['caption'] ?? ''),
  211.                                 'size' => $this->imgSize
  212.                             ), floor(\Config::get('maxImageWidth')));
  213.                             $images[] = $objImg;
  214.                         } // Folders
  215.                         else {
  216.                             $objSubfiles \FilesModel::findByPid($objFiles->uuid);
  217.                             if ($objSubfiles === null) {
  218.                                 continue;
  219.                             }
  220.                             while ($objSubfiles->next()) {
  221.                                 // Skip subfolders
  222.                                 if ($objSubfiles->type == 'folder') {
  223.                                     continue;
  224.                                 }
  225.                                 $objFile = new \File($objSubfiles->pathtrue);
  226.                                 if (!$objFile->isImage) {
  227.                                     continue;
  228.                                 }
  229.                                 $arrMeta $this->getMetaData($objSubfiles->meta$objPage->language);
  230.                                 if (!empty($arrMeta)) {
  231.                                     if ($objPage->rootFallbackLanguage !== null) {
  232.                                         $arrMeta $this->getMetaData($objSubfiles->meta$objPage->rootFallbackLanguage);
  233.                                     }
  234.                                 }
  235.                                 // use the file name as title if none is given
  236.                                 if (empty($arrMeta['title'])) {
  237.                                     $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  238.                                 }
  239.                                 // add the image
  240.                                 $objImg = new \stdClass();
  241.                                 $objImg->uuid $objSubfiles->uuid;
  242.                                 $this->addImageToTemplate($objImg, array
  243.                                 (
  244.                                     'id' => $objSubfiles->id,
  245.                                     'uuid' => $objSubfiles->uuid,
  246.                                     'name' => $objFile->basename,
  247.                                     'singleSRC' => $objSubfiles->path,
  248.                                     'alt' => $arrMeta['title'],
  249.                                     'imageUrl' => ($arrMeta['link'] ?? ''),
  250.                                     'caption' => ($arrMeta['caption'] ?? ''),
  251.                                     'size' => $this->imgSize
  252.                                 ), floor(\Config::get('maxImageWidth')));
  253.                                 $images[] = $objImg;
  254.                             }
  255.                         }
  256.                     }
  257.                     if (!empty($images)) {
  258.                         if ($objItem->orderImagesSRC != '') {
  259.                             $tmp deserialize($objItem->orderImagesSRC);
  260.                             if (!empty($tmp) && is_array($tmp)) {
  261.                                 // Remove all values
  262.                                 $arrOrder array_map(function () {
  263.                                 }, array_flip($tmp));
  264.                                 // Move the matching elements to their position in $arrOrder
  265.                                 foreach ($images as $k => $v) {
  266.                                     if (array_key_exists($v->uuid$arrOrder)) {
  267.                                         $arrOrder[$v->uuid] = $v;
  268.                                         unset($images[$k]);
  269.                                     }
  270.                                 }
  271.                                 // Append the left-over images at the end
  272.                                 if (!empty($images)) {
  273.                                     $arrOrder array_merge($arrOrderarray_values($images));
  274.                                 }
  275.                                 // Remove empty (unreplaced) entries
  276.                                 $images array_values(array_filter($arrOrder));
  277.                                 unset($arrOrder);
  278.                             }
  279.                         }
  280.                         $gallery array_values($images);
  281.                     }
  282.                 }
  283.             }
  284.         }
  285.         // add downloads
  286.         $downloads false;
  287.         if ($objItem->useDownloads AND $objItem->multiDownloadsSRC != '') {
  288.             $objItem->multiDownloadsSRC deserialize($objItem->multiDownloadsSRC);
  289.             if (is_array($objItem->multiDownloadsSRC) && !empty($objItem->multiDownloadsSRC)) {
  290.                 $dls = [];
  291.                 $objFiles \FilesModel::findMultipleByUuids($objItem->multiDownloadsSRC);
  292.                 if ($objFiles !== null) {
  293.                     // Get all downloads
  294.                     while ($objFiles->next()) {
  295.                         // Continue if the files has been processed or does not exist
  296.                         if (isset($dls[$objFiles->path]) || !file_exists(TL_ROOT '/' $objFiles->path)) {
  297.                             continue;
  298.                         }
  299.                         // Single files
  300.                         if ($objFiles->type == 'file') {
  301.                             if ($objFiles === null) {
  302.                                 if (!\Validator::isUuid($objFiles->uuid)) {
  303.                                     return '<p class="error">' $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
  304.                                 }
  305.                             }
  306.                             $allowedDownload trimsplit(','strtolower(\Config::get('allowedDownload')));
  307.                             if (in_array($objFiles->extension$allowedDownload)) {
  308.                                 $objFile = new \File($objFiles->pathtrue);
  309.                                 $strHref $strRequest;
  310.                                 $strHref preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  311.                                 $strHref preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  312.                                 $strHref .= ((\Config::get('disableAlias') || strpos($strHref'?') !== false) ? '&amp;' '?') . 'file=' \System::urlEncode($objFile->value) . '&amp;fid=' \System::urlEncode($objFiles->id);
  313.                                 $dls[] = array
  314.                                 (
  315.                                     'link' => StringUtil::specialchars($objFile->basename),
  316.                                     'title' => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  317.                                     'href' => $strHref,
  318.                                     'filesize' => $this->getReadableSize($objFile->filesize1),
  319.                                     'icon' => TL_ASSETS_URL 'assets/contao/images/' $objFile->icon,
  320.                                     'mime' => $objFile->mime,
  321.                                     'extension' => $objFile->extension,
  322.                                     'path' => $objFile->dirname,
  323.                                     'uuid' => $objFiles->uuid,
  324.                                 );
  325.                             }
  326.                         } // Folders
  327.                         else {
  328.                             $objSubfiles \FilesModel::findByPid($objFiles->uuid);
  329.                             if ($objSubfiles === null) {
  330.                                 continue;
  331.                             }
  332.                             while ($objSubfiles->next()) {
  333.                                 // Skip subfolders
  334.                                 if ($objSubfiles->type == 'folder') {
  335.                                     continue;
  336.                                 }
  337.                                 if ($objSubfiles === null) {
  338.                                     if (!\Validator::isUuid($objSubfiles->uuid)) {
  339.                                         return '<p class="error">' $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
  340.                                     }
  341.                                 }
  342.                                 $allowedDownload trimsplit(','strtolower(\Config::get('allowedDownload')));
  343.                                 if (in_array($objSubfiles->extension$allowedDownload)) {
  344.                                     $objFile = new \File($objSubfiles->pathtrue);
  345.                                     $strHref $strRequest;
  346.                                     $strHref preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  347.                                     $strHref preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  348.                                     $strHref preg_replace('/(\&(amp;)?|\?)(ffid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  349.                                     $strHref .= ((\Config::get('disableAlias') || strpos($strHref'?') !== false) ? '&amp;' '?') . 'file=' \System::urlEncode($objFile->value) . '&amp;fid=' \System::urlEncode($objSubfiles->id);
  350.                                     $dls[] = array
  351.                                     (
  352.                                         'link' => StringUtil::specialchars($objFile->basename),
  353.                                         'title' => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  354.                                         'href' => $strHref,
  355.                                         'filesize' => $this->getReadableSize($objFile->filesize1),
  356.                                         'icon' => TL_ASSETS_URL 'assets/contao/images/' $objFile->icon,
  357.                                         'mime' => $objFile->mime,
  358.                                         'extension' => $objFile->extension,
  359.                                         'path' => $objFile->dirname,
  360.                                         'uuid' => $objSubfiles->uuid,
  361.                                     );
  362.                                 }
  363.                             }
  364.                         }
  365.                     }
  366.                     if (!empty($dls)) {
  367.                         if ($objItem->orderDownloadsSRC != '') {
  368.                             $tmp deserialize($objItem->orderDownloadsSRC);
  369.                             if (!empty($tmp) && is_array($tmp)) {
  370.                                 // Remove all values
  371.                                 $arrOrder array_map(function () {
  372.                                 }, array_flip($tmp));
  373.                                 // Move the matching elements to their position in $arrOrder
  374.                                 foreach ($dls as $k => $v) {
  375.                                     if (array_key_exists($v['uuid'], $arrOrder)) {
  376.                                         $arrOrder[$v['uuid']] = $v;
  377.                                         unset($dls[$k]);
  378.                                     }
  379.                                 }
  380.                                 // Append the left-over downloads at the end
  381.                                 if (!empty($dls)) {
  382.                                     $arrOrder array_merge($arrOrderarray_values($dls));
  383.                                 }
  384.                                 // Remove empty (unreplaced) entries
  385.                                 $dls array_values(array_filter($arrOrder));
  386.                                 unset($arrOrder);
  387.                             }
  388.                         }
  389.                         $downloads array_values($dls);
  390.                     }
  391.                 }
  392.             }
  393.         }
  394.         // clean service list items
  395.         $arrListItems = array();
  396.         $arrListItemsTemp deserialize($objItem->service_listitems);
  397.         if (is_array($arrListItemsTemp)) {
  398.             for ($i 0$c count($arrListItemsTemp); $i $c$i++) {
  399.                 if (trim($arrListItemsTemp[$i]) !== '') {
  400.                     $arrListItems[] = $arrListItemsTemp[$i];
  401.                 }
  402.             }
  403.         }
  404.         $objItem->service_listitems $arrListItems;
  405.         $item $objItem->row();
  406.         $item['customerLogo'] = $customerLogo;
  407.         $item['service_listitems'] = $objItem->service_listitems;
  408.         $item['image'] = $image;
  409.         $item['gallery'] = $gallery;
  410.         $item['downloads'] = $downloads;
  411.         // add item to template
  412.         $this->Template->item $item;
  413.     }
  414. }