123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <?php
- namespace App\Entity;
- use Doctrine\ORM\Mapping as ORM;
- use Symfony\Component\Validator\Constraints as Assert;
- class MediaVideo
- {
-
- private $id;
-
- private $type;
-
- private $identif;
-
- private $url;
-
- public function getId()
- {
- return $this->id;
- }
-
- public function getUrl()
- {
- return $this->url;
- }
- public function setUrl($url)
- {
- return $this->url = $url;
- }
-
- public function setType($type)
- {
- $this->type = $type;
- return $this;
- }
-
- public function getType()
- {
- return $this->type;
- }
-
- public function setIdentif($identif)
- {
- $this->identif = $identif;
- return $this;
- }
-
- public function getIdentif()
- {
- return $this->identif;
- }
-
-
- private function peertubeId($url)
- {
- $tableau = explode("/", $url);
- $id = $tableau[count($tableau)-1];
- $this->setIdentif($id);
- $this->setType('peertube');
- }
-
- private function youtubeId($url)
- {
- $tableaux = explode("=", $url);
- $this->setIdentif($tableaux[1]);
- $this->setType('youtube');
- }
- private function youtubeCourteId($url)
- {
- $tableaux = explode("/", $url);
- $id = $tableaux[count($tableaux)-1];
- $this->setIdentif($id);
- $this->setType('youtube');
- }
- private function dailymotionId($url)
- {
- $cas = explode("/", $url);
- $idb = $cas[4];
- $bp = explode("_", $idb);
- $id = $bp[0];
- $this->setIdentif($id);
- $this->setType('dailymotion');
- }
- private function vimeoId($url)
- {
- $tableaux = explode("/", $url);
- $id = $tableaux[count($tableaux)-1];
- $this->setIdentif($id);
- $this->setType('vimeo');
- }
-
- public function extractIdentif()
- {
- $url = $this->getUrl();
- if (preg_match("#^(http|https)://video.fdlibre.eu/#", $url))
- {
- $this->peertubeId($url);
- }
- if (preg_match("#^(http|https)://www.youtube.com/#", $url))
- {
- $this->youtubeId($url);
- }
- if (preg_match("#^(http|https)://youtu.be/#", $url))
- {
- $this->youtubeCourteId($url);
- }
- else if((preg_match("#^(http|https)://www.dailymotion.com/#", $url)))
- {
- $this->dailymotionId($url);
- }
- else if((preg_match("#^(http|https)://vimeo.com/#", $url)))
- {
- $this->vimeoId($url);
- }
- }
- private function embedUrl()
- {
- $control = $this->getType();
- $id = strip_tags($this->getIdentif());
- if ($control == 'youtube') {
- $embed = "https://www.youtube-nocookie.com/embed/" . $id;
- return $embed;
- } else if ($control == 'dailymotion') {
- $embed = "https://www.dailymotion.com/embed/video/" . $id;
- return $embed;
- } else if ($control == 'vimeo') {
- $embed = "https://player.vimeo.com/video/" . $id;
- return $embed;
- } else if ($control == 'peertube') {
- $embed = "https://video.fdlibre.eu/videos/embed/" . $id;
- return $embed;
- }
- }
- private function url()
- {
- $control = $this->getType();
- $id = strip_tags($this->getIdentif());
- if ($control == 'youtube') {
- $embed = "https://www.youtube.com/watch?v=" . $id;
- return $embed;
- } else if ($control == 'dailymotion') {
- $embed = "https://www.dailymotion.com/video/" . $id;
- return $embed;
- } else if ($control == 'vimeo') {
- $embed = "https://vimeo.com/" . $id;
- return $embed;
- } else if ($control == 'peertube') {
- $embed = "https://video.fdlibre.eu/videos/watch/" . $id;
- return $embed;
- }
- }
- public function image()
- {
- $control = $this->getType();
- $id = strip_tags($this->getIdentif());
- if ($control == 'youtube') {
- $image = 'https://img.youtube.com/vi/' . $id . '/hqdefault.jpg';
- return $image;
- } else if ($control == 'dailymotion') {
- $image = 'https://www.dailymotion.com/thumbnail/150x120/video/' . $id . '';
- return $image;
- } else if ($control == 'vimeo') {
- $hash = unserialize(file_get_contents("https://vimeo.com/api/v2/video/" . $id . ".php"));
- $image = $hash[0]['thumbnail_small'];
- return $image;
- }
- }
- public function video()
- {
- $video = "<iframe src='".$this->embedUrl()."' allowfullscreen></iframe>";
- return $video;
- }
- }
|