<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgReferences
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2017
*/
/**
* Set custom namespace
*/
namespace SgM;
use Contao\StringUtil;
/**
* Class SgModuleReferencesList
*
* Frontend module "references list".
*
* @package SgReferences
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2017
*/
class SgModuleReferencesReader extends \SgModuleReferences
{
/**
* Template
* @var string
*/
protected $strTemplate = 'mod_references_reader';
/**
* Display a wildcard in the backend
* @return string
*/
public function generate()
{
if (TL_MODE == 'BE') {
$objTemplate = new \BackendTemplate('be_wildcard');
$objTemplate->wildcard = '### ' . utf8_strtoupper($GLOBALS['TL_LANG']['FMD']['references_reader'][0]) . ' ###';
$objTemplate->title = $this->headline;
$objTemplate->id = $this->id;
$objTemplate->link = $this->name;
$objTemplate->href = 'contao/main.php?do=themes&table=tl_module&act=edit&id=' . $this->id;
return $objTemplate->parse();
}
// set the item from the auto_item parameter
if (!isset($_GET['items']) && \Config::get('useAutoItem') && isset($_GET['auto_item'])) {
\Input::setGet('items', \Input::get('auto_item'));
}
// do not index or cache the page if no reference item has been specified
if (!\Input::get('items')) {
global $objPage;
$objPage->noSearch = 1;
$objPage->cache = 0;
return '';
}
$this->reference_categories = deserialize($this->reference_categories);
// do not index or cache the page if there are no reference categories
if (!is_array($this->reference_categories) || empty($this->reference_categories)) {
global $objPage;
$objPage->noSearch = 1;
$objPage->cache = 0;
return '';
}
$file = \Input::get('file', true);
$fid = \Input::get('fid', true);
// send the file to the browser and do not send a 404 header
if ($file != '' AND is_numeric($fid)) {
$objItem = \SgReferencesModel::findByParentAndIdOrAlias(\Input::get('items'), $this->reference_categories);
if ($objItem !== null) {
if ($objItem->useDownloads AND $objItem->multiDownloadsSRC != '') {
$objFile = \FilesModel::findByPk($fid);
if ($file == $objFile->path) {
\Controller::sendFileToBrowser($file);
}
}
}
}
return parent::generate();
}
/**
* Generate the module
*/
protected function compile()
{
global $objPage;
$strRequest = ampersand(\Environment::get('request'), true);
$this->Template->content = '';
$this->Template->referer = 'javascript:history.go(-1)';
$this->Template->back = $GLOBALS['TL_LANG']['MSC']['goBack'];
$objItem = \SgReferencesModel::findByParentAndIdOrAlias(\Input::get('items'), $this->reference_categories);
if ($objItem === null) {
// do not index or cache the page
$objPage->noSearch = 1;
$objPage->cache = 0;
// send a 404 header
header('HTTP/1.1 404 Not Found');
$this->Template->content = '<p class="error">' . sprintf($GLOBALS['TL_LANG']['MSC']['invalidPage'], \Input::get('items')) . '</p>';
return;
}
// overwrite the page title
if ($objItem->reference_headline != '') {
$objPage->pageTitle = strip_tags(strip_insert_tags($objItem->reference_headline));
}
// add customer logo
$customerLogo = false;
if ($objItem->addCustomerLogo AND $objItem->logoSRC != '') {
$objModel = \FilesModel::findByUuid($objItem->logoSRC);
if ($objModel !== null) {
$objFile = new \File($objModel->path, true);
$arrMeta = $this->getMetaData($objModel->meta, $objPage->language);
if (!empty($arrMeta)) {
if ($objPage->rootFallbackLanguage !== null) {
$arrMeta = $this->getMetaData($objModel->meta, $objPage->rootFallbackLanguage);
}
}
// use the file name as title if none is given
if (empty($arrMeta['title'])) {
$arrMeta['title'] = StringUtil::specialchars($objFile->basename);
}
// add the customer logo
$objLogo = new \stdClass();
$this->addImageToTemplate($objLogo, array
(
'id' => $objModel->id,
'uuid' => $objModel->uuid,
'name' => $objFile->basename,
'singleSRC' => $objModel->path,
'alt' => $arrMeta['title'],
'imageUrl' => ($arrMeta['link'] ?? ''),
'caption' => ($arrMeta['caption'] ?? ''),
'size' => $this->imgSize
), floor(\Config::get('maxImageWidth')));
$customerLogo = $objLogo;
}
}
// add image
$image = false;
if ($objItem->addImage AND $objItem->singleSRC != '') {
$objModel = \FilesModel::findByUuid($objItem->singleSRC);
$objFile = new \File($objModel->path, true);
$arrMeta = $this->getMetaData($objModel->meta, $objPage->language);
if (!empty($arrMeta)) {
if ($objPage->rootFallbackLanguage !== null) {
$arrMeta = $this->getMetaData($objModel->meta, $objPage->rootFallbackLanguage);
}
}
// use the file name as title if none is given
if (empty($arrMeta['title'])) {
$arrMeta['title'] = StringUtil::specialchars($objFile->basename);
}
// add the image
$objImg = new \stdClass();
$this->addImageToTemplate($objImg, array
(
'id' => $objModel->id,
'uuid' => $objModel->uuid,
'name' => $objFile->basename,
'singleSRC' => $objModel->path,
'alt' => $arrMeta['title'],
'imageUrl' => ($arrMeta['link'] ?? ''),
'caption' => ($arrMeta['caption'] ?? ''),
'size' => $this->imgSize
), floor(\Config::get('maxImageWidth')));
$image = $objImg;
}
// add gallery
$gallery = false;
if ($objItem->useImages AND $objItem->multiImagesSRC != '') {
$objItem->multiImagesSRC = deserialize($objItem->multiImagesSRC);
if (is_array($objItem->multiImagesSRC) && !empty($objItem->multiImagesSRC)) {
$images = [];
$objFiles = \FilesModel::findMultipleByUuids($objItem->multiImagesSRC);
if ($objFiles !== null) {
// Get all images
while ($objFiles->next()) {
// Continue if the files has been processed or does not exist
if (isset($images[$objFiles->path]) || !file_exists(TL_ROOT . '/' . $objFiles->path)) {
continue;
}
// Single files
if ($objFiles->type == 'file') {
$objFile = new \File($objFiles->path, true);
if (!$objFile->isImage) {
continue;
}
$arrMeta = $this->getMetaData($objFiles->meta, $objPage->language);
if (!empty($arrMeta)) {
if ($objPage->rootFallbackLanguage !== null) {
$arrMeta = $this->getMetaData($objFiles->meta, $objPage->rootFallbackLanguage);
}
}
// use the file name as title if none is given
if (empty($arrMeta['title'])) {
$arrMeta['title'] = StringUtil::specialchars($objFile->basename);
}
// add the image
$objImg = new \stdClass();
$objImg->uuid = $objFiles->uuid;
$this->addImageToTemplate($objImg, array
(
'id' => $objFiles->id,
'uuid' => $objFiles->uuid,
'name' => $objFile->basename,
'singleSRC' => $objFiles->path,
'alt' => $arrMeta['title'],
'imageUrl' => ($arrMeta['link'] ?? ''),
'caption' => ($arrMeta['caption'] ?? ''),
'size' => $this->imgSize
), floor(\Config::get('maxImageWidth')));
$images[] = $objImg;
} // Folders
else {
$objSubfiles = \FilesModel::findByPid($objFiles->uuid);
if ($objSubfiles === null) {
continue;
}
while ($objSubfiles->next()) {
// Skip subfolders
if ($objSubfiles->type == 'folder') {
continue;
}
$objFile = new \File($objSubfiles->path, true);
if (!$objFile->isImage) {
continue;
}
$arrMeta = $this->getMetaData($objSubfiles->meta, $objPage->language);
if (!empty($arrMeta)) {
if ($objPage->rootFallbackLanguage !== null) {
$arrMeta = $this->getMetaData($objSubfiles->meta, $objPage->rootFallbackLanguage);
}
}
// use the file name as title if none is given
if (empty($arrMeta['title'])) {
$arrMeta['title'] = StringUtil::specialchars($objFile->basename);
}
// add the image
$objImg = new \stdClass();
$objImg->uuid = $objSubfiles->uuid;
$this->addImageToTemplate($objImg, array
(
'id' => $objSubfiles->id,
'uuid' => $objSubfiles->uuid,
'name' => $objFile->basename,
'singleSRC' => $objSubfiles->path,
'alt' => $arrMeta['title'],
'imageUrl' => ($arrMeta['link'] ?? ''),
'caption' => ($arrMeta['caption'] ?? ''),
'size' => $this->imgSize
), floor(\Config::get('maxImageWidth')));
$images[] = $objImg;
}
}
}
if (!empty($images)) {
if ($objItem->orderImagesSRC != '') {
$tmp = deserialize($objItem->orderImagesSRC);
if (!empty($tmp) && is_array($tmp)) {
// Remove all values
$arrOrder = array_map(function () {
}, array_flip($tmp));
// Move the matching elements to their position in $arrOrder
foreach ($images as $k => $v) {
if (array_key_exists($v->uuid, $arrOrder)) {
$arrOrder[$v->uuid] = $v;
unset($images[$k]);
}
}
// Append the left-over images at the end
if (!empty($images)) {
$arrOrder = array_merge($arrOrder, array_values($images));
}
// Remove empty (unreplaced) entries
$images = array_values(array_filter($arrOrder));
unset($arrOrder);
}
}
$gallery = array_values($images);
}
}
}
}
// add downloads
$downloads = false;
if ($objItem->useDownloads AND $objItem->multiDownloadsSRC != '') {
$objItem->multiDownloadsSRC = deserialize($objItem->multiDownloadsSRC);
if (is_array($objItem->multiDownloadsSRC) && !empty($objItem->multiDownloadsSRC)) {
$dls = [];
$objFiles = \FilesModel::findMultipleByUuids($objItem->multiDownloadsSRC);
if ($objFiles !== null) {
// Get all downloads
while ($objFiles->next()) {
// Continue if the files has been processed or does not exist
if (isset($dls[$objFiles->path]) || !file_exists(TL_ROOT . '/' . $objFiles->path)) {
continue;
}
// Single files
if ($objFiles->type == 'file') {
if ($objFiles === null) {
if (!\Validator::isUuid($objFiles->uuid)) {
return '<p class="error">' . $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
}
}
$allowedDownload = trimsplit(',', strtolower(\Config::get('allowedDownload')));
if (in_array($objFiles->extension, $allowedDownload)) {
$objFile = new \File($objFiles->path, true);
$strHref = $strRequest;
$strHref = preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/', '$1', $strHref);
$strHref = preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/', '$1', $strHref);
$strHref .= ((\Config::get('disableAlias') || strpos($strHref, '?') !== false) ? '&' : '?') . 'file=' . \System::urlEncode($objFile->value) . '&fid=' . \System::urlEncode($objFiles->id);
$dls[] = array
(
'link' => StringUtil::specialchars($objFile->basename),
'title' => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
'href' => $strHref,
'filesize' => $this->getReadableSize($objFile->filesize, 1),
'icon' => TL_ASSETS_URL . 'assets/contao/images/' . $objFile->icon,
'mime' => $objFile->mime,
'extension' => $objFile->extension,
'path' => $objFile->dirname,
'uuid' => $objFiles->uuid,
);
}
} // Folders
else {
$objSubfiles = \FilesModel::findByPid($objFiles->uuid);
if ($objSubfiles === null) {
continue;
}
while ($objSubfiles->next()) {
// Skip subfolders
if ($objSubfiles->type == 'folder') {
continue;
}
if ($objSubfiles === null) {
if (!\Validator::isUuid($objSubfiles->uuid)) {
return '<p class="error">' . $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
}
}
$allowedDownload = trimsplit(',', strtolower(\Config::get('allowedDownload')));
if (in_array($objSubfiles->extension, $allowedDownload)) {
$objFile = new \File($objSubfiles->path, true);
$strHref = $strRequest;
$strHref = preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/', '$1', $strHref);
$strHref = preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/', '$1', $strHref);
$strHref = preg_replace('/(\&(amp;)?|\?)(ffid)=(.+?)?(\&(amp;)?|$)/', '$1', $strHref);
$strHref .= ((\Config::get('disableAlias') || strpos($strHref, '?') !== false) ? '&' : '?') . 'file=' . \System::urlEncode($objFile->value) . '&fid=' . \System::urlEncode($objSubfiles->id);
$dls[] = array
(
'link' => StringUtil::specialchars($objFile->basename),
'title' => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
'href' => $strHref,
'filesize' => $this->getReadableSize($objFile->filesize, 1),
'icon' => TL_ASSETS_URL . 'assets/contao/images/' . $objFile->icon,
'mime' => $objFile->mime,
'extension' => $objFile->extension,
'path' => $objFile->dirname,
'uuid' => $objSubfiles->uuid,
);
}
}
}
}
if (!empty($dls)) {
if ($objItem->orderDownloadsSRC != '') {
$tmp = deserialize($objItem->orderDownloadsSRC);
if (!empty($tmp) && is_array($tmp)) {
// Remove all values
$arrOrder = array_map(function () {
}, array_flip($tmp));
// Move the matching elements to their position in $arrOrder
foreach ($dls as $k => $v) {
if (array_key_exists($v['uuid'], $arrOrder)) {
$arrOrder[$v['uuid']] = $v;
unset($dls[$k]);
}
}
// Append the left-over downloads at the end
if (!empty($dls)) {
$arrOrder = array_merge($arrOrder, array_values($dls));
}
// Remove empty (unreplaced) entries
$dls = array_values(array_filter($arrOrder));
unset($arrOrder);
}
}
$downloads = array_values($dls);
}
}
}
}
// clean service list items
$arrListItems = array();
$arrListItemsTemp = deserialize($objItem->service_listitems);
if (is_array($arrListItemsTemp)) {
for ($i = 0, $c = count($arrListItemsTemp); $i < $c; $i++) {
if (trim($arrListItemsTemp[$i]) !== '') {
$arrListItems[] = $arrListItemsTemp[$i];
}
}
}
$objItem->service_listitems = $arrListItems;
$item = $objItem->row();
$item['customerLogo'] = $customerLogo;
$item['service_listitems'] = $objItem->service_listitems;
$item['image'] = $image;
$item['gallery'] = $gallery;
$item['downloads'] = $downloads;
// add item to template
$this->Template->item = $item;
}
}