system/modules/sg-contacts/elements/SgContentContact.php line 122

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgContacts
  8.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  9.  * @license   EULA
  10.  * @copyright Sg-Medien GmbH 2015
  11.  */
  12. /**
  13.  * Set custom namespace
  14.  */
  15. namespace SgM;
  16. use \Contao\StringUtil;
  17. /**
  18.  * Load tl_sg_contacts language file
  19.  */
  20. \System::loadLanguageFile('tl_sg_contacts');
  21. /**
  22.  * Load countries language file
  23.  */
  24. \System::loadLanguageFile('countries');
  25. /**
  26.  * Class SgContentContact
  27.  *
  28.  * Frontend content element "contact".
  29.  * 
  30.  * @package   SgContacts
  31.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  32.  * @copyright Sg-Medien GmbH 2015
  33.  */
  34. class SgContentContact extends \ContentElement
  35. {
  36.     /**
  37.      * Template
  38.      * @var string
  39.      */
  40.     protected $strTemplate 'ce_contact';
  41.     /**
  42.      * Return if the contact does not exist
  43.      * 
  44.      * @return string
  45.      */
  46.     public function generate()
  47.     {
  48.         // get page object
  49.         global $objPage;
  50.         
  51.         if (empty($this->contact))
  52.         {
  53.             return '';
  54.         }
  55.         
  56.         // get contact data
  57.         $objContact \SgContactsModel::findById($this->contact);
  58.         if ($objContact===null)
  59.         {
  60.             return '';
  61.         }
  62.         $arrContactRow $objContact->row();
  63.         // update contact data object
  64.         $this->contact $arrContactRow;
  65.         
  66.         if (TL_MODE == 'BE')
  67.         {
  68.             return '<strong>'.(!empty($this->contact_headline) ?  $this->contact_headline '').'</strong>'.
  69.             '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['name'].': '.$this->replaceInsertTags($this->contact['firstname'], false).' '.$this->replaceInsertTags($this->contact['lastname'], false).'</div>'.
  70.             ($this->contact['phone'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['phone'][0].': '.$this->replaceInsertTags($this->contact['phone'], false).'</div>' '').
  71.             ($this->contact['mobile'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['mobile'][0].': '.$this->replaceInsertTags($this->contact['mobile'], false).'</div>' '').
  72.             ($this->contact['fax'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['fax'][0].': '.$this->replaceInsertTags($this->contact['fax'], false).'</div>' '').
  73.             ($this->contact['email'] ? '<div>'.$GLOBALS['TL_LANG']['tl_sg_contacts']['email'][0].': '.$this->replaceInsertTags($this->contact['email'], false).'</div>' '');  
  74.         }
  75.         $file \Input::get('file'true);
  76.         $fid \Input::get('fid'true);
  77.         $ffid \Input::get('ffid'true);
  78.         // send the file to the browser and do not send a 404 header
  79.         if ($file != '' AND is_numeric($fid) AND is_numeric($ffid)) {
  80.             if ($objContact !== null) {
  81.                 if ($objContact->useDownloads AND $objContact->multiDownloadsSRC != '') {
  82.                     $objFile \FilesModel::findByPk($fid);
  83.                     if ($file == $objFile->path) {
  84.                         \Controller::sendFileToBrowser($file);
  85.                     }
  86.                 }
  87.             }
  88.         }
  89.         return parent::generate();
  90.     }
  91.     
  92.     /**
  93.      * Generate the content element
  94.      */
  95.     protected function compile()
  96.     {
  97.         // get page object
  98.         global $objPage;
  99.         // set the size
  100.         $this->Template->size '';
  101.         if ($this->contact_image_size != '')
  102.         {
  103.             $size deserialize($this->contact_image_size);
  104.             if (is_array($size))
  105.             {
  106.                 $this->Template->size ' width="' $size[0] . '" height="' $size[1] . '"';
  107.             }
  108.         }
  109.         
  110.         // add contact image
  111.         $image false;
  112.         if ($this->contact['addImage'] AND $this->contact['singleSRC']!='')
  113.         {
  114.             $objModel \FilesModel::findByUuid($this->contact['singleSRC']);
  115.             $objFile = new \File($objModel->pathtrue);
  116.             if ($objFile->isImage) {
  117.                 $arrMeta $this->getMetaData($objModel->meta$objPage->language);
  118.                 if (!empty($arrMeta)) {
  119.                     if ($objPage->rootFallbackLanguage !== null) {
  120.                         $arrMeta $this->getMetaData($objModel->meta$objPage->rootFallbackLanguage);
  121.                     }
  122.                 }
  123.                 // use the file name as title if none is given
  124.                 if (empty($arrMeta['title'])) {
  125.                     $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  126.                 }
  127.                 // add the image
  128.                 $objImg = new \stdClass();
  129.                 $this->addImageToTemplate(
  130.                     $objImg,
  131.                     array
  132.                     (
  133.                         'id'        => $objModel->id,
  134.                         'uuid'      => $objModel->uuid,
  135.                         'name'      => $objFile->basename,
  136.                         'singleSRC' => $objModel->path,
  137.                         'alt'       => $arrMeta['title'],
  138.                         'imageUrl'  => ($arrMeta['link'] ?? ''),
  139.                         'caption'   => ($arrMeta['caption'] ?? ''),
  140.                         'size'      => $this->contact_image_size
  141.                     ),
  142.                     floor(\Config::get('maxImageWidth'))
  143.                 );
  144.                 $image $objImg;
  145.             }
  146.         }
  147.         // add downloads
  148.         $downloads false;
  149.         $contact $this->contact;
  150.         if ($contact['useDownloads'] AND $contact['multiDownloadsSRC'] != '') {
  151.             $contact['multiDownloadsSRC'] = deserialize($contact['multiDownloadsSRC']);
  152.             if (is_array($contact['multiDownloadsSRC']) && !empty($contact['multiDownloadsSRC'])) {
  153.                 $dls = [];
  154.                 $objFiles \FilesModel::findMultipleByUuids($contact['multiDownloadsSRC']);
  155.                 if ($objFiles !== null) {
  156.                     // Get all downloads
  157.                     while ($objFiles->next()) {
  158.                         // Continue if the files has been processed or does not exist
  159.                         if (isset($dls[$objFiles->path]) || !file_exists(TL_ROOT '/' $objFiles->path)) {
  160.                             continue;
  161.                         }
  162.                         // Single files
  163.                         if ($objFiles->type == 'file') {
  164.                             
  165.                                 $arrMeta $this->getMetaData($objFiles->meta$objPage->language);
  166.     
  167.                                                         if (empty($arrMeta))
  168.                                                         {
  169.                                                             if ($this->metaIgnore)
  170.                                                             {
  171.                                                                 continue;
  172.                                                             }
  173.                                                             elseif ($objPage->rootFallbackLanguage !== null)
  174.                                                             {
  175.                                                                 $arrMeta $this->getMetaData($objFiles->meta$objPage->rootFallbackLanguage);
  176.                                                             }
  177.                                                         }
  178.                             if ($objFiles === null) {
  179.                                 if (!\Validator::isUuid($objFiles->uuid)) {
  180.                                     return '<p class="error">' $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
  181.                                 }
  182.                             }
  183.                             $allowedDownload trimsplit(','strtolower(\Config::get('allowedDownload')));
  184.                             if (in_array($objFiles->extension$allowedDownload)) {
  185.                                 $objFile = new \File($objFiles->pathtrue);
  186.                                 $strHref \Environment::get('request');
  187.                                 $strHref preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  188.                                 $strHref preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  189.                                 $strHref preg_replace('/(\&(amp;)?|\?)(ffid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  190.                                 $strHref .= ((\Config::get('disableAlias') || strpos($strHref'?') !== false) ? '&amp;' '?') . 'file=' \System::urlEncode($objFile->value) . '&amp;fid=' \System::urlEncode($objFiles->id) . '&amp;ffid=' \System::urlEncode($contact['id']);
  191.                                 $dls[] = array
  192.                                 (
  193.                                     'link' => specialchars($objFile->basename),
  194.                                     'title' => specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  195.                                     'name'  => $objFile->basename,
  196.                                     'href' => $strHref,
  197.                                     'filesize' => $this->getReadableSize($objFile->filesize1),
  198.                                     'icon' => TL_ASSETS_URL 'assets/contao/images/' $objFile->icon,
  199.                                     'mime' => $objFile->mime,
  200.                                     'extension' => $objFile->extension,
  201.                                     'path' => $objFile->dirname,
  202.                                     'uuid' => $objFiles->uuid,
  203.                                     'meta'      => $arrMeta,
  204.                                 );
  205.                             }
  206.                         } // Folders
  207.                         else {
  208.                             $objSubfiles \FilesModel::findByPid($objFiles->uuid);
  209.                             if ($objSubfiles === null) {
  210.                                 continue;
  211.                             }
  212.                             while ($objSubfiles->next()) {
  213.                                 // Skip subfolders
  214.                                 if ($objSubfiles->type == 'folder') {
  215.                                     continue;
  216.                                 }
  217.                                 if ($objSubfiles === null) {
  218.                                     if (!\Validator::isUuid($objSubfiles->uuid)) {
  219.                                         return '<p class="error">' $GLOBALS['TL_LANG']['ERR']['version2format'] . '</p>';
  220.                                     }
  221.                                 }
  222.                                 $allowedDownload trimsplit(','strtolower(\Config::get('allowedDownload')));
  223.                                 if (in_array($objSubfiles->extension$allowedDownload)) {
  224.                                     $objFile = new \File($objSubfiles->pathtrue);
  225.                                     $strHref \Environment::get('request');
  226.                                     $strHref preg_replace('/(\&(amp;)?|\?)(file)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  227.                                     $strHref preg_replace('/(\&(amp;)?|\?)(fid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  228.                                     $strHref preg_replace('/(\&(amp;)?|\?)(ffid)=(.+?)?(\&(amp;)?|$)/''$1'$strHref);
  229.                                     $strHref .= ((\Config::get('disableAlias') || strpos($strHref'?') !== false) ? '&amp;' '?') . 'file=' \System::urlEncode($objFile->value) . '&amp;fid=' \System::urlEncode($objSubfiles->id) . '&amp;ffid=' \System::urlEncode($contact['id']);
  230.                                     $dls[] = array
  231.                                     (
  232.                                         'link' => specialchars($objFile->basename),
  233.                                         'title' => specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  234.                                         'name'  => $objFile->basename,
  235.                                         'href' => $strHref,
  236.                                         'filesize' => $this->getReadableSize($objFile->filesize1),
  237.                                         'icon' => TL_ASSETS_URL 'assets/contao/images/' $objFile->icon,
  238.                                         'mime' => $objFile->mime,
  239.                                         'extension' => $objFile->extension,
  240.                                         'path' => $objFile->dirname,
  241.                                         'uuid' => $objSubfiles->uuid,
  242.                                     );
  243.                                 }
  244.                             }
  245.                         }
  246.                     }
  247.                     if (!empty($dls)) {
  248.                         if ($contact['orderDownloadsSRC'] != '') {
  249.                             $tmp deserialize($contact['orderDownloadsSRC']);
  250.                             if (!empty($tmp) && is_array($tmp)) {
  251.                                 // Remove all values
  252.                                 $arrOrder array_map(function () {
  253.                                 }, array_flip($tmp));
  254.                                 // Move the matching elements to their position in $arrOrder
  255.                                 foreach ($dls as $k => $v) {
  256.                                     if (array_key_exists($v['uuid'], $arrOrder)) {
  257.                                         $arrOrder[$v['uuid']] = $v;
  258.                                         unset($dls[$k]);
  259.                                     }
  260.                                 }
  261.                                 // Append the left-over downloads at the end
  262.                                 if (!empty($dls)) {
  263.                                     $arrOrder array_merge($arrOrderarray_values($dls));
  264.                                 }
  265.                                 // Remove empty (unreplaced) entries
  266.                                 $dls array_values(array_filter($arrOrder));
  267.                                 unset($arrOrder);
  268.                             }
  269.                         }
  270.                         $downloads array_values($dls);
  271.                     }
  272.                 }
  273.             }
  274.         }
  275.         
  276.         // add contact data
  277.         $this->Template->contact array_merge($this->contact, array('image' => $image'downloads' => $downloads));
  278.         $this->Template->contactLabel $GLOBALS['TL_LANG']['tl_sg_contacts'];
  279.     }
  280. }