vendor/pimcore/pimcore/models/Document/Editable/Video.php line 27

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Model\Document\Editable;
  15. use Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener;
  16. use Pimcore\Logger;
  17. use Pimcore\Model;
  18. use Pimcore\Model\Asset;
  19. use Pimcore\Tool;
  20. /**
  21.  * @method \Pimcore\Model\Document\Editable\Dao getDao()
  22.  */
  23. class Video extends Model\Document\Editable implements IdRewriterInterface
  24. {
  25.     public const TYPE_ASSET 'asset';
  26.     public const TYPE_YOUTUBE 'youtube';
  27.     public const TYPE_VIMEO 'vimeo';
  28.     public const TYPE_DAILYMOTION 'dailymotion';
  29.     public const ALLOWED_TYPES = [
  30.         self::TYPE_ASSET,
  31.         self::TYPE_YOUTUBE,
  32.         self::TYPE_VIMEO,
  33.         self::TYPE_DAILYMOTION,
  34.     ];
  35.     /**
  36.      * contains depending on the type of the video the unique identifier eg. "http://www.youtube.com", "789", ...
  37.      *
  38.      * @internal
  39.      *
  40.      * @var int|string|null
  41.      */
  42.     protected $id;
  43.     /**
  44.      * one of self::ALLOWED_TYPES
  45.      *
  46.      * @internal
  47.      *
  48.      * @var string|null
  49.      */
  50.     protected $type;
  51.     /**
  52.      * asset ID of poster image
  53.      *
  54.      * @internal
  55.      *
  56.      * @var int|null
  57.      */
  58.     protected $poster;
  59.     /**
  60.      * @internal
  61.      *
  62.      * @var string
  63.      */
  64.     protected $title '';
  65.     /**
  66.      * @internal
  67.      *
  68.      * @var string
  69.      */
  70.     protected $description '';
  71.     /**
  72.      * @internal
  73.      *
  74.      * @var array|null
  75.      */
  76.     protected $allowedTypes;
  77.     /**
  78.      * @param int|string|null $id
  79.      *
  80.      * @return Video
  81.      */
  82.     public function setId($id)
  83.     {
  84.         $this->id $id;
  85.         return $this;
  86.     }
  87.     /**
  88.      * @return int|string|null
  89.      */
  90.     public function getId()
  91.     {
  92.         return $this->id;
  93.     }
  94.     /**
  95.      * @param string $title
  96.      *
  97.      * @return $this
  98.      */
  99.     public function setTitle($title)
  100.     {
  101.         $this->title $title;
  102.         return $this;
  103.     }
  104.     /**
  105.      * @return string
  106.      */
  107.     public function getTitle()
  108.     {
  109.         if (!$this->title && $this->getVideoAsset()) {
  110.             // default title for microformats
  111.             return $this->getVideoAsset()->getFilename();
  112.         }
  113.         return $this->title;
  114.     }
  115.     /**
  116.      * @param string $description
  117.      *
  118.      * @return $this
  119.      */
  120.     public function setDescription($description)
  121.     {
  122.         $this->description $description;
  123.         return $this;
  124.     }
  125.     /**
  126.      * @return string
  127.      */
  128.     public function getDescription()
  129.     {
  130.         if (!$this->description) {
  131.             // default description for microformats
  132.             return $this->getTitle();
  133.         }
  134.         return $this->description;
  135.     }
  136.     /**
  137.      * @param int|null $id
  138.      *
  139.      * @return $this
  140.      */
  141.     public function setPoster($id)
  142.     {
  143.         $this->poster $id;
  144.         return $this;
  145.     }
  146.     /**
  147.      * @return int|null
  148.      */
  149.     public function getPoster()
  150.     {
  151.         return $this->poster;
  152.     }
  153.     /**
  154.      * @param string $type
  155.      *
  156.      * @return $this
  157.      */
  158.     public function setType($type)
  159.     {
  160.         $this->type $type;
  161.         return $this;
  162.     }
  163.     /**
  164.      * {@inheritdoc}
  165.      */
  166.     public function getType()
  167.     {
  168.         return 'video';
  169.     }
  170.     /**
  171.      * @param array $allowedTypes
  172.      *
  173.      * @return $this
  174.      */
  175.     public function setAllowedTypes($allowedTypes)
  176.     {
  177.         $this->allowedTypes $allowedTypes;
  178.         return $this;
  179.     }
  180.     /**
  181.      * @return array
  182.      */
  183.     public function getAllowedTypes()
  184.     {
  185.         if ($this->allowedTypes === null) {
  186.             $this->updateAllowedTypesFromConfig($this->getConfig());
  187.         }
  188.         return $this->allowedTypes;
  189.     }
  190.     /**
  191.      * {@inheritdoc}
  192.      */
  193.     public function getData()
  194.     {
  195.         $path $this->id;
  196.         if ($this->type === self::TYPE_ASSET && ($video Asset::getById($this->id))) {
  197.             $path $video->getFullPath();
  198.         }
  199.         $allowedTypes $this->getAllowedTypes();
  200.         if (
  201.             empty($this->type) === true
  202.             || in_array($this->type$allowedTypestrue) === false
  203.         ) {
  204.             // Set the first type in array as default selection for dropdown
  205.             $this->type $allowedTypes[0];
  206.             // Reset "id" and "path" to prevent invalid references
  207.             $this->id   '';
  208.             $path       '';
  209.         }
  210.         $poster Asset::getById($this->poster);
  211.         return [
  212.             'id'           => $this->id,
  213.             'type'         => $this->type,
  214.             'allowedTypes' => $allowedTypes,
  215.             'title'        => $this->title,
  216.             'description'  => $this->description,
  217.             'path'         => $path,
  218.             'poster'       => $poster $poster->getFullPath() : '',
  219.         ];
  220.     }
  221.     /**
  222.      * {@inheritdoc}
  223.      */
  224.     public function getDataForResource()
  225.     {
  226.         return [
  227.             'id'           => $this->id,
  228.             'type'         => $this->type,
  229.             'allowedTypes' => $this->getAllowedTypes(),
  230.             'title'        => $this->title,
  231.             'description'  => $this->description,
  232.             'poster'       => $this->poster,
  233.         ];
  234.     }
  235.     /**
  236.      * {@inheritdoc}
  237.      */
  238.     public function frontend()
  239.     {
  240.         $inAdmin false;
  241.         $args    func_get_args();
  242.         if (array_key_exists(0$args)) {
  243.             $inAdmin $args[0];
  244.         }
  245.         if (
  246.             empty($this->id) === true
  247.             || empty($this->type) === true
  248.             || in_array($this->type$this->getAllowedTypes(), true) === false
  249.         ) {
  250.             return $this->getEmptyCode();
  251.         } elseif ($this->type === self::TYPE_ASSET) {
  252.             return $this->getAssetCode($inAdmin);
  253.         } elseif ($this->type === self::TYPE_YOUTUBE) {
  254.             return $this->getYoutubeCode($inAdmin);
  255.         } elseif ($this->type === self::TYPE_VIMEO) {
  256.             return $this->getVimeoCode($inAdmin);
  257.         } elseif ($this->type === self::TYPE_DAILYMOTION) {
  258.             return $this->getDailymotionCode($inAdmin);
  259.         } elseif ($this->type === 'url') {
  260.             return $this->getUrlCode();
  261.         }
  262.         return $this->getEmptyCode();
  263.     }
  264.     /**
  265.      * {@inheritdoc}
  266.      */
  267.     public function resolveDependencies()
  268.     {
  269.         $dependencies = [];
  270.         if ($this->type === self::TYPE_ASSET) {
  271.             $asset Asset::getById($this->id);
  272.             if ($asset instanceof Asset) {
  273.                 $key 'asset_' $asset->getId();
  274.                 $dependencies[$key] = [
  275.                     'id' => $asset->getId(),
  276.                     'type' => self::TYPE_ASSET,
  277.                 ];
  278.             }
  279.         }
  280.         if ($poster Asset::getById($this->poster)) {
  281.             $key 'asset_' $poster->getId();
  282.             $dependencies[$key] = [
  283.                 'id' => $poster->getId(),
  284.                 'type' => self::TYPE_ASSET,
  285.             ];
  286.         }
  287.         return $dependencies;
  288.     }
  289.     /**
  290.      * {@inheritdoc}
  291.      */
  292.     public function checkValidity()
  293.     {
  294.         $valid true;
  295.         if ($this->type === self::TYPE_ASSET && !empty($this->id)) {
  296.             $el Asset::getById($this->id);
  297.             if (!$el instanceof Asset) {
  298.                 $valid false;
  299.                 Logger::notice('Detected invalid relation, removing reference to non existent asset with id ['.$this->id.']');
  300.                 $this->id   null;
  301.                 $this->type null;
  302.             }
  303.         }
  304.         if (!($poster Asset::getById($this->poster))) {
  305.             $valid false;
  306.             Logger::notice('Detected invalid relation, removing reference to non existent asset with id ['.$this->id.']');
  307.             $this->poster null;
  308.         }
  309.         return $valid;
  310.     }
  311.     /**
  312.      * {@inheritdoc}
  313.      */
  314.     public function admin()
  315.     {
  316.         $html parent::admin();
  317.         // get frontendcode for preview
  318.         // put the video code inside the generic code
  319.         $html str_replace('</div>'$this->frontend(true) . '</div>'$html);
  320.         return $html;
  321.     }
  322.     /**
  323.      * {@inheritdoc}
  324.      */
  325.     public function setDataFromResource($data)
  326.     {
  327.         if (!empty($data)) {
  328.             $data \Pimcore\Tool\Serialize::unserialize($data);
  329.         }
  330.         $this->id $data['id'];
  331.         $this->type $data['type'];
  332.         $this->poster $data['poster'];
  333.         $this->title $data['title'];
  334.         $this->description $data['description'];
  335.         return $this;
  336.     }
  337.     /**
  338.      * {@inheritdoc}
  339.      */
  340.     public function setDataFromEditmode($data)
  341.     {
  342.         if (isset($data['type'])
  343.             && in_array($data['type'], self::ALLOWED_TYPEStrue) === true
  344.         ) {
  345.             $this->type $data['type'];
  346.         }
  347.         if (isset($data['title'])) {
  348.             $this->title $data['title'];
  349.         }
  350.         if (isset($data['description'])) {
  351.             $this->description $data['description'];
  352.         }
  353.         // this is to be backward compatible to <= v 1.4.7
  354.         if (isset($data['id']) && $data['id']) {
  355.             $data['path'] = $data['id'];
  356.         }
  357.         $video Asset::getByPath($data['path']);
  358.         if ($video instanceof Asset\Video) {
  359.             $this->id $video->getId();
  360.         } else {
  361.             $this->id $data['path'];
  362.         }
  363.         $this->poster null;
  364.         $poster Asset::getByPath($data['poster']);
  365.         if ($poster instanceof Asset\Image) {
  366.             $this->poster $poster->getId();
  367.         }
  368.         return $this;
  369.     }
  370.     /**
  371.      * @return int|string
  372.      */
  373.     public function getWidth()
  374.     {
  375.         return $this->getConfig()['width'] ?? '100%';
  376.     }
  377.     /**
  378.      * @return int|string
  379.      */
  380.     public function getHeight()
  381.     {
  382.         return $this->getConfig()['height'] ?? 300;
  383.     }
  384.     private function getAssetCode(bool $inAdmin false): string
  385.     {
  386.         $asset Asset::getById($this->id);
  387.         $config $this->getConfig();
  388.         $thumbnailConfig $config['thumbnail'] ?? null;
  389.         // compatibility mode when FFMPEG is not present or no thumbnail config is given
  390.         if (!\Pimcore\Video::isAvailable() || !$thumbnailConfig) {
  391.             if ($asset instanceof Asset\Video && preg_match("/\.(f4v|flv|mp4)/i"$asset->getFullPath())) {
  392.                 $image $this->getPosterThumbnailImage($asset);
  393.                 return $this->getHtml5Code(['mp4' => (string) $asset], $image);
  394.             }
  395.             return $this->getErrorCode('Asset is not a video, or missing thumbnail configuration');
  396.         }
  397.         if ($asset instanceof Asset\Video) {
  398.             $thumbnail $asset->getThumbnail($thumbnailConfig);
  399.             if ($thumbnail) {
  400.                 $image $this->getPosterThumbnailImage($asset);
  401.                 if ($inAdmin && isset($config['editmodeImagePreview']) && $config['editmodeImagePreview']) {
  402.                     $code '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video '. ($config['class'] ?? '') .'">';
  403.                     $code .= '<img width="' $this->getWidth() . '" src="' $image '" />';
  404.                     $code .= '</div>';
  405.                     return $code;
  406.                 }
  407.                 if ($thumbnail['status'] === 'finished') {
  408.                     return $this->getHtml5Code($thumbnail['formats'], $image);
  409.                 }
  410.                 if ($thumbnail['status'] === 'inprogress') {
  411.                     // disable the output-cache if enabled
  412.                     $cacheService \Pimcore::getContainer()->get(FullPageCacheListener::class);
  413.                     $cacheService->disable('Video rendering in progress');
  414.                     return $this->getProgressCode($image);
  415.                 }
  416.                 return $this->getErrorCode('The video conversion failed, please see the log files in /var/log for more details.');
  417.             }
  418.             return $this->getErrorCode("The given thumbnail doesn't exist: '" $thumbnailConfig "'");
  419.         }
  420.         return $this->getEmptyCode();
  421.     }
  422.     /**
  423.      * @param Asset\Video $asset
  424.      *
  425.      * @return Asset\Image\Thumbnail|Asset\Video\ImageThumbnail
  426.      */
  427.     private function getPosterThumbnailImage(Asset\Video $asset)
  428.     {
  429.         $config $this->getConfig();
  430.         if (!array_key_exists('imagethumbnail'$config) || empty($config['imagethumbnail'])) {
  431.             $thumbnailConfig $asset->getThumbnailConfig($config['thumbnail'] ?? null);
  432.             if ($thumbnailConfig instanceof Asset\Video\Thumbnail\Config) {
  433.                 // try to get the dimensions out ouf the video thumbnail
  434.                 $imageThumbnailConf $thumbnailConfig->getEstimatedDimensions();
  435.                 $imageThumbnailConf['format'] = 'JPEG';
  436.             }
  437.         } else {
  438.             $imageThumbnailConf $config['imagethumbnail'];
  439.         }
  440.         if (empty($imageThumbnailConf)) {
  441.             $imageThumbnailConf['width'] = 800;
  442.             $imageThumbnailConf['format'] = 'JPEG';
  443.         }
  444.         if ($this->poster && ($poster Asset\Image::getById($this->poster))) {
  445.             return $poster->getThumbnail($imageThumbnailConf);
  446.         }
  447.         if (
  448.             $asset->getCustomSetting('image_thumbnail_asset') &&
  449.             ($customPreviewAsset Asset\Image::getById($asset->getCustomSetting('image_thumbnail_asset')))
  450.         ) {
  451.             return $customPreviewAsset->getThumbnail($imageThumbnailConf);
  452.         }
  453.         return $asset->getImageThumbnail($imageThumbnailConf);
  454.     }
  455.     /**
  456.      * @return string
  457.      */
  458.     private function getUrlCode()
  459.     {
  460.         return $this->getHtml5Code(['mp4' => (string) $this->id]);
  461.     }
  462.     /**
  463.      * @param string $message
  464.      *
  465.      * @return string
  466.      */
  467.     private function getErrorCode($message '')
  468.     {
  469.         $width $this->getWidth();
  470.         if (strpos($this->getWidth(), '%') === false) {
  471.             $width = ((int)$this->getWidth() - 1) . 'px';
  472.         }
  473.         // only display error message in debug mode
  474.         if (!\Pimcore::inDebugMode()) {
  475.             $message '';
  476.         }
  477.         $code '
  478.         <div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video">
  479.             <div class="pimcore_editable_video_error" style="text-align:center; width: ' $width '; height: ' . ($this->getHeight() - 1) . 'px; border:1px solid #000; background: url(/bundles/pimcoreadmin/img/filetype-not-supported.svg) no-repeat center center #fff;">
  480.                 ' $message '
  481.             </div>
  482.         </div>';
  483.         return $code;
  484.     }
  485.     /**
  486.      * @return string
  487.      */
  488.     private function parseYoutubeId()
  489.     {
  490.         $youtubeId '';
  491.         if ($this->type === self::TYPE_YOUTUBE) {
  492.             if ($youtubeId $this->id) {
  493.                 if (strpos($youtubeId'//') !== false) {
  494.                     $parts parse_url($this->id);
  495.                     if (array_key_exists('query'$parts)) {
  496.                         parse_str($parts['query'], $vars);
  497.                         if (isset($vars['v']) && $vars['v']) {
  498.                             $youtubeId $vars['v'];
  499.                         }
  500.                     }
  501.                     //get youtube id if form urls like  http://www.youtube.com/embed/youtubeId
  502.                     if (strpos($this->id'embed') !== false) {
  503.                         $explodedPath explode('/'$parts['path']);
  504.                         $youtubeId $explodedPath[array_search('embed'$explodedPath) + 1];
  505.                     }
  506.                     if (isset($parts['host']) && $parts['host'] === 'youtu.be') {
  507.                         $youtubeId trim($parts['path'], ' /');
  508.                     }
  509.                 }
  510.             }
  511.         }
  512.         return $youtubeId;
  513.     }
  514.     private function getYoutubeCode(bool $inAdmin false): string
  515.     {
  516.         if (!$this->id) {
  517.             return $this->getEmptyCode();
  518.         }
  519.         $config $this->getConfig();
  520.         $code '';
  521.         $youtubeId $this->parseYoutubeId();
  522.         if (!$youtubeId) {
  523.             return $this->getEmptyCode();
  524.         }
  525.         if ($inAdmin && isset($config['editmodeImagePreview']) && $config['editmodeImagePreview'] === true) {
  526.             return '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video '. ($config['class'] ?? '') .'">
  527.                 <img src="https://img.youtube.com/vi/' $youtubeId '/0.jpg">
  528.             </div>';
  529.         }
  530.         $width '100%';
  531.         if (array_key_exists('width'$config)) {
  532.             $width $config['width'];
  533.         }
  534.         $height '300';
  535.         if (array_key_exists('height'$config)) {
  536.             $height $config['height'];
  537.         }
  538.         $wmode '?wmode=transparent';
  539.         $seriesPrefix '';
  540.         if (strpos($youtubeId'PL') === 0) {
  541.             $wmode '';
  542.             $seriesPrefix 'videoseries?list=';
  543.         }
  544.         $valid_youtube_prams = [ 'autohide',
  545.             'autoplay',
  546.             'cc_load_policy',
  547.             'color',
  548.             'controls',
  549.             'disablekb',
  550.             'enablejsapi',
  551.             'end',
  552.             'fs',
  553.             'playsinline',
  554.             'hl',
  555.             'iv_load_policy',
  556.             'list',
  557.             'listType',
  558.             'loop',
  559.             'modestbranding',
  560.             'mute',
  561.             'origin',
  562.             'playerapiid',
  563.             'playlist',
  564.             'rel',
  565.             'showinfo',
  566.             'start',
  567.             'theme',
  568.         ];
  569.         $additional_params '';
  570.         $clipConfig = [];
  571.         if (isset($config['config']['clip']) && is_array($config['config']['clip'])) {
  572.             $clipConfig $config['config']['clip'];
  573.         }
  574.         // this is to be backward compatible to <= v 1.4.7
  575.         $configurations $clipConfig;
  576.         if (array_key_exists(self::TYPE_YOUTUBE$config) && is_array($config[self::TYPE_YOUTUBE])) {
  577.             $configurations array_merge($clipConfig$config[self::TYPE_YOUTUBE]);
  578.         }
  579.         if (!empty($configurations)) {
  580.             foreach ($configurations as $key => $value) {
  581.                 if (in_array($key$valid_youtube_prams)) {
  582.                     if (is_bool($value)) {
  583.                         if ($value) {
  584.                             $additional_params .= '&'.$key.'=1';
  585.                         } else {
  586.                             $additional_params .= '&'.$key.'=0';
  587.                         }
  588.                     } else {
  589.                         $additional_params .= '&'.$key.'='.$value;
  590.                     }
  591.                 }
  592.             }
  593.         }
  594.         $code .= '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video '. ($config['class'] ?? '') .'">
  595.             <iframe width="' $width '" height="' $height '" src="https://www.youtube-nocookie.com/embed/' $seriesPrefix $youtubeId $wmode $additional_params .'" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen allow="fullscreen" data-type="pimcore_video_editable"></iframe>
  596.         </div>';
  597.         return $code;
  598.     }
  599.     private function getVimeoCode(bool $inAdmin false): string
  600.     {
  601.         if (!$this->id) {
  602.             return $this->getEmptyCode();
  603.         }
  604.         $config $this->getConfig();
  605.         $code '';
  606.         $uid 'video_' uniqid();
  607.         // get vimeo id
  608.         if (preg_match("@vimeo.*/([\d]+)@i"$this->id$matches)) {
  609.             $vimeoId = (int)$matches[1];
  610.         } else {
  611.             // for object-videos
  612.             $vimeoId $this->id;
  613.         }
  614.         if (ctype_digit($vimeoId)) {
  615.             if ($inAdmin && isset($config['editmodeImagePreview']) && $config['editmodeImagePreview'] === true) {
  616.                 return '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video '. ($config['class'] ?? '') .'">
  617.                     <img src="https://vumbnail.com/' $vimeoId '.jpg">
  618.                 </div>';
  619.             }
  620.             $width '100%';
  621.             if (array_key_exists('width'$config)) {
  622.                 $width $config['width'];
  623.             }
  624.             $height '300';
  625.             if (array_key_exists('height'$config)) {
  626.                 $height $config['height'];
  627.             }
  628.             $valid_vimeo_prams = [
  629.                 'autoplay',
  630.                 'background',
  631.                 'loop',
  632.                 'muted',
  633.             ];
  634.             $additional_params '';
  635.             $clipConfig = [];
  636.             if (isset($config['config']['clip']) && is_array($config['config']['clip'])) {
  637.                 $clipConfig $config['config']['clip'];
  638.             }
  639.             // this is to be backward compatible to <= v 1.4.7
  640.             $configurations $clipConfig;
  641.             if (isset($config[self::TYPE_VIMEO]) && is_array($config[self::TYPE_VIMEO])) {
  642.                 $configurations array_merge($clipConfig$config[self::TYPE_VIMEO]);
  643.             }
  644.             if (!empty($configurations)) {
  645.                 foreach ($configurations as $key => $value) {
  646.                     if (in_array($key$valid_vimeo_prams)) {
  647.                         if (is_bool($value)) {
  648.                             if ($value) {
  649.                                 $additional_params .= '&'.$key.'=1';
  650.                             } else {
  651.                                 $additional_params .= '&'.$key.'=0';
  652.                             }
  653.                         } else {
  654.                             $additional_params .= '&'.$key.'='.$value;
  655.                         }
  656.                     }
  657.                 }
  658.             }
  659.             $code .= '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video '. ($config['class'] ?? '') .'">
  660.                 <iframe src="https://player.vimeo.com/video/' $vimeoId '?dnt=1&title=0&amp;byline=0&amp;portrait=0'$additional_params .'" width="' $width '" height="' $height '" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen allow="fullscreen" data-type="pimcore_video_editable"></iframe>
  661.             </div>';
  662.             return $code;
  663.         }
  664.         // default => return the empty code
  665.         return $this->getEmptyCode();
  666.     }
  667.     private function getDailymotionCode(bool $inAdmin false): string
  668.     {
  669.         if (!$this->id) {
  670.             return $this->getEmptyCode();
  671.         }
  672.         $config $this->getConfig();
  673.         $code '';
  674.         $uid 'video_' uniqid();
  675.         // get dailymotion id
  676.         if (preg_match('@dailymotion.*/video/([^_]+)@i'$this->id$matches)) {
  677.             $dailymotionId $matches[1];
  678.         } else {
  679.             // for object-videos
  680.             $dailymotionId $this->id;
  681.         }
  682.         if ($dailymotionId) {
  683.             if ($inAdmin && isset($config['editmodeImagePreview']) && $config['editmodeImagePreview'] === true) {
  684.                 return '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video '. ($config['class'] ?? '') .'">
  685.                     <img src="https://www.dailymotion.com/thumbnail/video/' $dailymotionId '">
  686.                 </div>';
  687.             }
  688.             $width $config['width'] ?? '100%';
  689.             $height $config['height'] ?? '300';
  690.             $valid_dailymotion_prams = [
  691.                 'autoplay',
  692.                 'loop',
  693.                 'mute', ];
  694.             $additional_params '';
  695.             $clipConfig = isset($config['config']['clip']) && is_array($config['config']['clip']) ? $config['config']['clip'] : [];
  696.             // this is to be backward compatible to <= v 1.4.7
  697.             $configurations $clipConfig;
  698.             if (isset($config[self::TYPE_DAILYMOTION]) && is_array($config[self::TYPE_DAILYMOTION])) {
  699.                 $configurations array_merge($clipConfig$config[self::TYPE_DAILYMOTION]);
  700.             }
  701.             if (!empty($configurations)) {
  702.                 foreach ($configurations as $key => $value) {
  703.                     if (in_array($key$valid_dailymotion_prams)) {
  704.                         if (is_bool($value)) {
  705.                             if ($value) {
  706.                                 $additional_params .= '&'.$key.'=1';
  707.                             } else {
  708.                                 $additional_params .= '&'.$key.'=0';
  709.                             }
  710.                         } else {
  711.                             $additional_params .= '&'.$key.'='.$value;
  712.                         }
  713.                     }
  714.                 }
  715.             }
  716.             $code .= '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video '. ($config['class'] ?? '') .'">
  717.                 <iframe src="https://www.dailymotion.com/embed/video/' $dailymotionId '?' $additional_params .'" width="' $width '" height="' $height '" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen allow="fullscreen" data-type="pimcore_video_editable"></iframe>
  718.             </div>';
  719.             return $code;
  720.         }
  721.         // default => return the empty code
  722.         return $this->getEmptyCode();
  723.     }
  724.     /**
  725.      * @param array $urls
  726.      * @param Asset\Image\Thumbnail|Asset\Video\ImageThumbnail|null $thumbnail
  727.      *
  728.      * @return string
  729.      */
  730.     private function getHtml5Code($urls = [], $thumbnail null)
  731.     {
  732.         $code '';
  733.         $video $this->getVideoAsset();
  734.         if ($video) {
  735.             $duration ceil($video->getDuration());
  736.             $durationParts = ['PT'];
  737.             // hours
  738.             if ($duration 3600 >= 1) {
  739.                 $hours floor($duration 3600);
  740.                 $durationParts[] = $hours 'H';
  741.                 $duration $duration $hours 3600;
  742.             }
  743.             // minutes
  744.             if ($duration 60 >= 1) {
  745.                 $minutes floor($duration 60);
  746.                 $durationParts[] = $minutes 'M';
  747.                 $duration $duration $minutes 60;
  748.             }
  749.             $durationParts[] = $duration 'S';
  750.             $durationString implode(''$durationParts);
  751.             $code .= '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video">' "\n";
  752.             $uploadDate = new \DateTime();
  753.             $uploadDate->setTimestamp($video->getCreationDate());
  754.             $jsonLd = [
  755.                 '@context' => 'https://schema.org',
  756.                 '@type' => 'VideoObject',
  757.                 'name' => $this->getTitle(),
  758.                 'description' => $this->getDescription(),
  759.                 'uploadDate' => $uploadDate->format('Y-m-d\TH:i:sO'),
  760.                 'duration' => $durationString,
  761.                 //'contentUrl' => Tool::getHostUrl() . $urls['mp4'],
  762.                 //"embedUrl" => "http://www.example.com/videoplayer.swf?video=123",
  763.                 //"interactionCount" => "1234",
  764.             ];
  765.             if (!$thumbnail) {
  766.                 $thumbnail $video->getImageThumbnail([]);
  767.             }
  768.             $jsonLd['contentUrl'] = $urls['mp4'];
  769.             if (!preg_match('@https?://@'$urls['mp4'])) {
  770.                 $jsonLd['contentUrl'] = Tool::getHostUrl() . $urls['mp4'];
  771.             }
  772.             $thumbnailUrl = (string)$thumbnail;
  773.             $jsonLd['thumbnailUrl'] = $thumbnailUrl;
  774.             if (!preg_match('@https?://@'$thumbnailUrl)) {
  775.                 $jsonLd['thumbnailUrl'] = Tool::getHostUrl() . $thumbnailUrl;
  776.             }
  777.             $code .= "\n\n<script type=\"application/ld+json\">\n" json_encode($jsonLd) . "\n</script>\n\n";
  778.             // default attributes
  779.             $attributesString '';
  780.             $attributes = [
  781.                 'width' => $this->getWidth(),
  782.                 'height' => $this->getHeight(),
  783.                 'poster' => $thumbnailUrl,
  784.                 'controls' => 'controls',
  785.                 'class' => 'pimcore_video',
  786.             ];
  787.             $config $this->getConfig();
  788.             if (array_key_exists('attributes'$config)) {
  789.                 $attributes array_merge($attributes$config['attributes']);
  790.             }
  791.             if (isset($config['removeAttributes']) && is_array($config['removeAttributes'])) {
  792.                 foreach ($config['removeAttributes'] as $attribute) {
  793.                     unset($attributes[$attribute]);
  794.                 }
  795.             }
  796.             // do not allow an empty controls editable
  797.             if (isset($attributes['controls']) && !$attributes['controls']) {
  798.                 unset($attributes['controls']);
  799.             }
  800.             if (isset($urls['mpd'])) {
  801.                 $attributes['data-dashjs-player'] = null;
  802.             }
  803.             foreach ($attributes as $key => $value) {
  804.                 $attributesString .= ' ' $key;
  805.                 if (!empty($value)) {
  806.                     $quoteChar '"';
  807.                     if (strpos($value'"')) {
  808.                         $quoteChar "'";
  809.                     }
  810.                     $attributesString .= '=' $quoteChar $value $quoteChar;
  811.                 }
  812.             }
  813.             $code .= '<video' $attributesString '>' "\n";
  814.             foreach ($urls as $type => $url) {
  815.                 if ($type == 'medias') {
  816.                     foreach ($url as $format => $medias) {
  817.                         foreach ($medias as $media => $mediaUrl) {
  818.                             $code .= '<source type="video/' $format '" src="' $mediaUrl '" media="' $media '"  />' "\n";
  819.                         }
  820.                     }
  821.                 } else {
  822.                     $code .= '<source type="video/' $type '" src="' $url '" />' "\n";
  823.                 }
  824.             }
  825.             $code .= '</video>' "\n";
  826.             $code .= '</div>' "\n";
  827.         }
  828.         return $code;
  829.     }
  830.     /**
  831.      * @param string|null $thumbnail
  832.      *
  833.      * @return string
  834.      */
  835.     private function getProgressCode($thumbnail null)
  836.     {
  837.         $uid 'video_' uniqid();
  838.         $code '
  839.         <div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video">
  840.             <style type="text/css">
  841.                 #' $uid ' .pimcore_editable_video_progress_status {
  842.                     box-sizing:content-box;
  843.                     background:#fff url(/bundles/pimcoreadmin/img/video-loading.gif) center center no-repeat;
  844.                     width:66px;
  845.                     height:66px;
  846.                     padding:20px;
  847.                     border:1px solid #555;
  848.                     box-shadow: 2px 2px 5px #333;
  849.                     border-radius:20px;
  850.                     margin: 0 20px 0 20px;
  851.                     top: calc(50% - 66px);
  852.                     left: calc(50% - 66px);
  853.                     position:absolute;
  854.                     opacity: 0.8;
  855.                 }
  856.             </style>
  857.             <div class="pimcore_editable_video_progress" id="' $uid '">
  858.                 <img src="' $thumbnail '" style="width: ' $this->getWidth() . 'px; height: ' $this->getHeight() . 'px;">
  859.                 <div class="pimcore_editable_video_progress_status"></div>
  860.             </div>
  861.         </div>';
  862.         return $code;
  863.     }
  864.     /**
  865.      * @return string
  866.      */
  867.     private function getEmptyCode(): string
  868.     {
  869.         $uid 'video_' uniqid();
  870.         $width $this->getWidth();
  871.         $height $this->getHeight();
  872.         if (is_numeric($width)) {
  873.             $width .= 'px';
  874.         }
  875.         if (is_numeric($height)) {
  876.             $height .= 'px';
  877.         }
  878.         return '<div id="pimcore_video_' $this->getName() . '" class="pimcore_editable_video"><div class="pimcore_editable_video_empty" id="' $uid '" style="width: ' $width '; height: ' $height ';"></div></div>';
  879.     }
  880.     private function updateAllowedTypesFromConfig(array $config): void
  881.     {
  882.         $this->allowedTypes self::ALLOWED_TYPES;
  883.         if (
  884.             isset($config['allowedTypes']) === true
  885.             && empty($config['allowedTypes']) === false
  886.             && empty(array_diff($config['allowedTypes'], self::ALLOWED_TYPES))
  887.         ) {
  888.             $this->allowedTypes $config['allowedTypes'];
  889.         }
  890.     }
  891.     /**
  892.      * {@inheritdoc}
  893.      */
  894.     public function isEmpty()
  895.     {
  896.         if ($this->id) {
  897.             return false;
  898.         }
  899.         return true;
  900.     }
  901.     /**
  902.      * @return string
  903.      */
  904.     public function getVideoType()
  905.     {
  906.         if (empty($this->type) === true) {
  907.             $this->type $this->getAllowedTypes()[0];
  908.         }
  909.         return $this->type;
  910.     }
  911.     /**
  912.      * @return Asset\Video|null
  913.      */
  914.     public function getVideoAsset()
  915.     {
  916.         if ($this->getVideoType() === self::TYPE_ASSET) {
  917.             return Asset\Video::getById($this->id);
  918.         }
  919.         return null;
  920.     }
  921.     /**
  922.      * @return Asset\Image|null
  923.      */
  924.     public function getPosterAsset()
  925.     {
  926.         return Asset\Image::getById($this->poster);
  927.     }
  928.     /**
  929.      * @param string|Asset\Video\Thumbnail\Config $config
  930.      *
  931.      * @return Asset\Image\Thumbnail|Asset\Video\ImageThumbnail|string
  932.      *
  933.      * TODO Pimcore 11: Change empty string return to null
  934.      */
  935.     public function getImageThumbnail($config)
  936.     {
  937.         if ($this->poster && ($poster Asset\Image::getById($this->poster))) {
  938.             return $poster->getThumbnail($config);
  939.         }
  940.         if ($this->getVideoAsset()) {
  941.             return $this->getVideoAsset()->getImageThumbnail($config);
  942.         }
  943.         return '';
  944.     }
  945.     /**
  946.      * @param string|Asset\Video\Thumbnail\Config $config
  947.      *
  948.      * @return array
  949.      */
  950.     public function getThumbnail($config)
  951.     {
  952.         if ($this->getVideoAsset()) {
  953.             return $this->getVideoAsset()->getThumbnail($config);
  954.         }
  955.         return [];
  956.     }
  957.     /**
  958.      * { @inheritdoc }
  959.      */
  960.     public function rewriteIds($idMapping/** : void */
  961.     {
  962.         if ($this->type == self::TYPE_ASSET && array_key_exists(self::TYPE_ASSET$idMapping) && array_key_exists($this->getId(), $idMapping[self::TYPE_ASSET])) {
  963.             $this->setId($idMapping[self::TYPE_ASSET][$this->getId()]);
  964.         }
  965.     }
  966. }