<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgContacts
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2015
*/
/**
* Set custom namespace
*/
namespace SgM;
use \Contao\StringUtil;
/**
* Load tl_sg_contacts language file
*/
\System::loadLanguageFile('tl_sg_contacts');
/**
* Load countries language file
*/
\System::loadLanguageFile('countries');
/**
* Class SgContentContact
*
* Frontend content element "contact".
*
* @package SgContacts
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2015
*/
class SgContentContact extends \ContentElement
{
/**
* Template
* @var string
*/
protected $strTemplate = 'ce_contact';
/**
* Return if the contact does not exist
*
* @return string
*/
public function generate()
{
// get page object
global $objPage;
if (empty($this->contact))
{
return '';
}
// get contact data
$objContact = \SgContactsModel::findById($this->contact);
if ($objContact===null)
{
return '';
}
$arrContactRow = $objContact->row();
// update contact data object
$this->contact = $arrContactRow;
if (TL_MODE == 'BE')
{
return '<strong>'.(!empty($this->contact_headline) ? $this->contact_headline : '').'</strong>'.
'<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['name'].': '.$this->replaceInsertTags($this->contact['firstname'], false).' '.$this->replaceInsertTags($this->contact['lastname'], false).'</div>'.
($this->contact['phone'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['phone'][0].': '.$this->replaceInsertTags($this->contact['phone'], false).'</div>' : '').
($this->contact['mobile'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['mobile'][0].': '.$this->replaceInsertTags($this->contact['mobile'], false).'</div>' : '').
($this->contact['fax'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['fax'][0].': '.$this->replaceInsertTags($this->contact['fax'], false).'</div>' : '').
($this->contact['email'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['email'][0].': '.$this->replaceInsertTags($this->contact['email'], false).'</div>' : '');
}
$file = \Input::get('file', true);
$fid = \Input::get('fid', true);
$ffid = \Input::get('ffid', true);
// send the file to the browser and do not send a 404 header
if ($file != '' AND is_numeric($fid) AND is_numeric($ffid)) {
if ($objContact !== null) {
if ($objContact->useDownloads AND $objContact->multiDownloadsSRC != '') {
$objFile = \FilesModel::findByPk($fid);
if ($file == $objFile->path) {
\Controller::sendFileToBrowser($file);
}
}
}
}
return parent::generate();
}
/**
* Generate the content element
*/
protected function compile()
{
// get page object
global $objPage;
// set the size
$this->Template->size = '';
if ($this->contact_image_size != '')
{
$size = deserialize($this->contact_image_size);
if (is_array($size))
{
$this->Template->size = ' width="' . $size[0] . '" height="' . $size[1] . '"';
}
}
// add contact image
$image = false;
if ($this->contact['addImage'] AND $this->contact['singleSRC']!='')
{
$objModel = \FilesModel::findByUuid($this->contact['singleSRC']);
$objFile = new \File($objModel->path, true);
if ($objFile->isImage) {
$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->contact_image_size
),
floor(\Config::get('maxImageWidth'))
);
$image = $objImg;
}
}
// add downloads
$downloads = false;
$contact = $this->contact;
if ($contact['useDownloads'] AND $contact['multiDownloadsSRC'] != '') {
$contact['multiDownloadsSRC'] = deserialize($contact['multiDownloadsSRC']);
if (is_array($contact['multiDownloadsSRC']) && !empty($contact['multiDownloadsSRC'])) {
$dls = [];
$objFiles = \FilesModel::findMultipleByUuids($contact['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') {
$arrMeta = $this->getMetaData($objFiles->meta, $objPage->language);
if (empty($arrMeta))
{
if ($this->metaIgnore)
{
continue;
}
elseif ($objPage->rootFallbackLanguage !== null)
{
$arrMeta = $this->getMetaData($objFiles->meta, $objPage->rootFallbackLanguage);
}
}
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 = \Environment::get('request');
$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($objFiles->id) . '&ffid=' . \System::urlEncode($contact['id']);
$dls[] = array
(
'link' => specialchars($objFile->basename),
'title' => specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
'name' => $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,
'meta' => $arrMeta,
);
}
} // 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 = \Environment::get('request');
$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) . '&ffid=' . \System::urlEncode($contact['id']);
$dls[] = array
(
'link' => specialchars($objFile->basename),
'title' => specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
'name' => $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 ($contact['orderDownloadsSRC'] != '') {
$tmp = deserialize($contact['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);
}
}
}
}
// add contact data
$this->Template->contact = array_merge($this->contact, array('image' => $image, 'downloads' => $downloads));
$this->Template->contactLabel = $GLOBALS['TL_LANG']['tl_sg_contacts'];
}
}