vendor/contao/core-bundle/src/Resources/contao/elements/ContentDownloads.php line 67

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. use Contao\Model\Collection;
  12. /**
  13.  * Front end content element "downloads".
  14.  */
  15. class ContentDownloads extends ContentDownload
  16. {
  17.     /**
  18.      * Files object
  19.      * @var Collection|FilesModel
  20.      */
  21.     protected $objFiles;
  22.     /**
  23.      * Template
  24.      * @var string
  25.      */
  26.     protected $strTemplate 'ce_downloads';
  27.     /**
  28.      * Return if there are no files
  29.      *
  30.      * @return string
  31.      */
  32.     public function generate()
  33.     {
  34.         if ($this->isHidden())
  35.         {
  36.             return '';
  37.         }
  38.         // Use the home directory of the current user as file source
  39.         if ($this->useHomeDir && System::getContainer()->get('contao.security.token_checker')->hasFrontendUser())
  40.         {
  41.             $this->import(FrontendUser::class, 'User');
  42.             if ($this->User->assignDir && $this->User->homeDir)
  43.             {
  44.                 $this->multiSRC = array($this->User->homeDir);
  45.             }
  46.         }
  47.         else
  48.         {
  49.             $this->multiSRC StringUtil::deserialize($this->multiSRC);
  50.         }
  51.         // Return if there are no files
  52.         if (empty($this->multiSRC) && !\is_array($this->multiSRC))
  53.         {
  54.             return '';
  55.         }
  56.         // Get the file entries from the database
  57.         $this->objFiles FilesModel::findMultipleByUuids($this->multiSRC);
  58.         if ($this->objFiles === null)
  59.         {
  60.             return '';
  61.         }
  62.         $file Input::get('file'true);
  63.         // Send the file to the browser (see #4632 and #8375)
  64.         if ($file && \is_string($file) && (!isset($_GET['cid']) || Input::get('cid') == $this->id))
  65.         {
  66.             while ($this->objFiles->next())
  67.             {
  68.                 if ($file == $this->objFiles->path || \dirname($file) == $this->objFiles->path)
  69.                 {
  70.                     Controller::sendFileToBrowser($file, (bool) $this->inline);
  71.                 }
  72.             }
  73.             if (isset($_GET['cid']))
  74.             {
  75.                 throw new PageNotFoundException('Invalid file name');
  76.             }
  77.             $this->objFiles->reset();
  78.         }
  79.         return ContentElement::generate();
  80.     }
  81.     /**
  82.      * Generate the content element
  83.      */
  84.     protected function compile()
  85.     {
  86.         $files = array();
  87.         $allowedDownload StringUtil::trimsplit(','strtolower(Config::get('allowedDownload')));
  88.         $container System::getContainer();
  89.         $projectDir $container->getParameter('kernel.project_dir');
  90.         $request $container->get('request_stack')->getCurrentRequest();
  91.         $isBackend $request && $container->get('contao.routing.scope_matcher')->isBackendRequest($request);
  92.         $objFiles $this->objFiles;
  93.         // Get all files
  94.         while ($objFiles->next())
  95.         {
  96.             // Continue if the files has been processed or does not exist
  97.             if (isset($files[$objFiles->path]) || !file_exists($projectDir '/' $objFiles->path))
  98.             {
  99.                 continue;
  100.             }
  101.             // Single files
  102.             if ($objFiles->type == 'file')
  103.             {
  104.                 $objFile = new File($objFiles->path);
  105.                 if (!\in_array($objFile->extension$allowedDownload) || preg_match('/^meta(_[a-z]{2})?\.txt$/'$objFile->basename))
  106.                 {
  107.                     continue;
  108.                 }
  109.                 if ($isBackend)
  110.                 {
  111.                     $arrMeta $this->getMetaData($objFiles->meta$GLOBALS['TL_LANGUAGE']);
  112.                 }
  113.                 else
  114.                 {
  115.                     /** @var PageModel $objPage */
  116.                     global $objPage;
  117.                     $arrMeta $this->getMetaData($objFiles->meta$objPage->language);
  118.                     if (empty($arrMeta))
  119.                     {
  120.                         if ($this->metaIgnore)
  121.                         {
  122.                             continue;
  123.                         }
  124.                         if ($objPage->rootFallbackLanguage !== null)
  125.                         {
  126.                             $arrMeta $this->getMetaData($objFiles->meta$objPage->rootFallbackLanguage);
  127.                         }
  128.                     }
  129.                 }
  130.                 // Use the file name as title if none is given
  131.                 if (empty($arrMeta['title']))
  132.                 {
  133.                     $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  134.                 }
  135.                 $strHref Environment::get('request');
  136.                 // Remove an existing file parameter (see #5683)
  137.                 if (isset($_GET['file']))
  138.                 {
  139.                     $strHref preg_replace('/(&(amp;)?|\?)file=[^&]+/'''$strHref);
  140.                 }
  141.                 if (isset($_GET['cid']))
  142.                 {
  143.                     $strHref preg_replace('/(&(amp;)?|\?)cid=\d+/'''$strHref);
  144.                 }
  145.                 $strHref .= (strpos($strHref'?') !== false '&amp;' '?') . 'file=' System::urlEncode($objFiles->path) . '&amp;cid=' $this->id;
  146.                 // Add the image
  147.                 $files[$objFiles->path] = array
  148.                 (
  149.                     'id'        => $objFiles->id,
  150.                     'uuid'      => $objFiles->uuid,
  151.                     'name'      => $objFile->basename,
  152.                     'title'     => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  153.                     'link'      => $arrMeta['title'] ?? null,
  154.                     'caption'   => $arrMeta['caption'] ?? null,
  155.                     'href'      => $strHref,
  156.                     'filesize'  => $this->getReadableSize($objFile->filesize),
  157.                     'icon'      => Image::getPath($objFile->icon),
  158.                     'mime'      => $objFile->mime,
  159.                     'meta'      => $arrMeta,
  160.                     'extension' => $objFile->extension,
  161.                     'path'      => $objFile->dirname,
  162.                     'previews'  => $this->getPreviews($objFile->path$strHref),
  163.                     'mtime'     => $objFile->mtime,
  164.                 );
  165.             }
  166.             // Folders
  167.             else
  168.             {
  169.                 $objSubfiles FilesModel::findByPid($objFiles->uuid, array('order' => 'name'));
  170.                 if ($objSubfiles === null)
  171.                 {
  172.                     continue;
  173.                 }
  174.                 while ($objSubfiles->next())
  175.                 {
  176.                     // Skip subfolders
  177.                     if ($objSubfiles->type == 'folder')
  178.                     {
  179.                         continue;
  180.                     }
  181.                     $objFile = new File($objSubfiles->path);
  182.                     if (!\in_array($objFile->extension$allowedDownload) || preg_match('/^meta(_[a-z]{2})?\.txt$/'$objFile->basename))
  183.                     {
  184.                         continue;
  185.                     }
  186.                     if ($isBackend)
  187.                     {
  188.                         $arrMeta $this->getMetaData($objSubfiles->meta$GLOBALS['TL_LANGUAGE']);
  189.                     }
  190.                     else
  191.                     {
  192.                         /** @var PageModel $objPage */
  193.                         global $objPage;
  194.                         $arrMeta $this->getMetaData($objSubfiles->meta$objPage->language);
  195.                         if (empty($arrMeta))
  196.                         {
  197.                             if ($this->metaIgnore)
  198.                             {
  199.                                 continue;
  200.                             }
  201.                             if ($objPage->rootFallbackLanguage !== null)
  202.                             {
  203.                                 $arrMeta $this->getMetaData($objSubfiles->meta$objPage->rootFallbackLanguage);
  204.                             }
  205.                         }
  206.                     }
  207.                     // Use the file name as title if none is given
  208.                     if (empty($arrMeta['title']))
  209.                     {
  210.                         $arrMeta['title'] = StringUtil::specialchars($objFile->basename);
  211.                     }
  212.                     $strHref Environment::get('request');
  213.                     // Remove an existing file parameter (see #5683)
  214.                     if (preg_match('/(&(amp;)?|\?)file=/'$strHref))
  215.                     {
  216.                         $strHref preg_replace('/(&(amp;)?|\?)file=[^&]+/'''$strHref);
  217.                     }
  218.                     $strHref .= (strpos($strHref'?') !== false '&amp;' '?') . 'file=' System::urlEncode($objSubfiles->path);
  219.                     // Add the image
  220.                     $files[$objSubfiles->path] = array
  221.                     (
  222.                         'id'        => $objSubfiles->id,
  223.                         'uuid'      => $objSubfiles->uuid,
  224.                         'name'      => $objFile->basename,
  225.                         'title'     => StringUtil::specialchars(sprintf($GLOBALS['TL_LANG']['MSC']['download'], $objFile->basename)),
  226.                         'link'      => $arrMeta['title'],
  227.                         'caption'   => $arrMeta['caption'] ?? null,
  228.                         'href'      => $strHref,
  229.                         'filesize'  => $this->getReadableSize($objFile->filesize),
  230.                         'icon'      => Image::getPath($objFile->icon),
  231.                         'mime'      => $objFile->mime,
  232.                         'meta'      => $arrMeta,
  233.                         'extension' => $objFile->extension,
  234.                         'path'      => $objFile->dirname,
  235.                         'previews'  => $this->getPreviews($objFile->path$strHref),
  236.                         'mtime'     => $objFile->mtime,
  237.                     );
  238.                 }
  239.             }
  240.         }
  241.         // Sort array
  242.         switch ($this->sortBy)
  243.         {
  244.             default:
  245.             case 'name_asc':
  246.                 uksort($files, static function ($a$b): int
  247.                 {
  248.                     return strnatcasecmp(basename($a), basename($b));
  249.                 });
  250.                 break;
  251.             case 'name_desc':
  252.                 uksort($files, static function ($a$b): int
  253.                 {
  254.                     return -strnatcasecmp(basename($a), basename($b));
  255.                 });
  256.                 break;
  257.             case 'date_asc':
  258.                 uasort($files, static function (array $a, array $b)
  259.                 {
  260.                     return $a['mtime'] <=> $b['mtime'];
  261.                 });
  262.                 break;
  263.             case 'date_desc':
  264.                 uasort($files, static function (array $a, array $b)
  265.                 {
  266.                     return $b['mtime'] <=> $a['mtime'];
  267.                 });
  268.                 break;
  269.             // Deprecated since Contao 4.0, to be removed in Contao 5.0
  270.             case 'meta':
  271.                 trigger_deprecation('contao/core-bundle''4.0''The "meta" key in "Contao\ContentDownloads::compile()" has been deprecated and will no longer work in Contao 5.0.');
  272.                 // no break
  273.             case 'custom':
  274.                 $files ArrayUtil::sortByOrderField($files$this->orderSRC);
  275.                 break;
  276.             case 'random':
  277.                 shuffle($files);
  278.                 break;
  279.         }
  280.         $this->Template->files array_values($files);
  281.     }
  282. }
  283. class_alias(ContentDownloads::class, 'ContentDownloads');