src/Entity/Media.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MediaRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Blameable\Traits\BlameableEntity;
  6. use Gedmo\Timestampable\Traits\TimestampableEntity;
  7. use Symfony\Component\HttpFoundation\File\File;
  8. use Symfony\Component\HttpFoundation\File\UploadedFile;
  9. use Symfony\Component\Serializer\Annotation\Groups;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  12. use Symfony\Component\Mime\MimeTypes;
  13. #[ORM\Entity(repositoryClassMediaRepository::class)]
  14. #[Vich\Uploadable]
  15. class Media
  16. {
  17.     use TimestampableEntity//Hook timestampable behavior. Updates createdAt, updatedAt fields 
  18.     use BlameableEntity//Hook blameable behavior. Updates createdBy, updatedBy fields
  19.     public static function getImageMimetypes($restrictive false): array
  20.     {
  21.         $mimeTypes = new MimeTypes();
  22.         $imageMimetypes = [];
  23.         array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('jpg'));
  24.         array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('png'));
  25.         if(!$restrictive) {
  26.             array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('svg'));
  27.             array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('gif'));
  28.             array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('webp'));
  29.             array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('bmp'));
  30.             array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('tiff'));
  31.             array_push($imageMimetypes, ...$mimeTypes->getMimeTypes('ico'));
  32.         }
  33.         return $imageMimetypes;
  34.     }
  35.     public static function getVideMimetypes($restrictive false): array
  36.     {
  37.         $mimeTypes = new MimeTypes();
  38.         $videoMimetypes = [];
  39.         array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('mp4'));
  40.         if(!$restrictive) {
  41.             array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('webm'));
  42.             array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('avi'));
  43.             array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('mpeg'));
  44.             array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('ogv'));
  45.             array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('3gp'));
  46.             array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('3g2'));
  47.             array_push($videoMimetypes, ...$mimeTypes->getMimeTypes('quicktime'));
  48.         }
  49.         return $videoMimetypes;
  50.     }
  51.     #[ORM\Id]
  52.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  53.     #[ORM\Column]
  54.     #[Groups(["media:read"])]
  55.     private ?int $id null;
  56.     
  57.     /**
  58.      * Fichero
  59.      * NOTE: This is not a mapped field of entity metadata, just a simple property.
  60.      * 
  61.      * @var \Symfony\Component\HttpFoundation\File\File|UploadedFile|null $file
  62.      */
  63.     #[Vich\UploadableField(
  64.         mapping'uploads'
  65.         fileNameProperty'filename'
  66.         size'size'
  67.         mimeType'mimeType',
  68.         originalName'originalName'
  69.     )]
  70.     private $file null;
  71.     /**
  72.      * Ruta del Fichero donde se almacena la foto
  73.      *
  74.      * @var string|null
  75.      */
  76.     #[ORM\Column(length255nullabletrue)]
  77.     #[Assert\Length(max255)]
  78.     #[Groups(["media:read"])]
  79.     private ?string $filename null;
  80.     /**
  81.      * File Size in BYTES
  82.      */
  83.     #[ORM\Column(type'integer')]
  84.     private ?int $size null;
  85.     /**
  86.      * Tipo de fichero MIME
  87.      *
  88.      * @var string|null
  89.      */
  90.     #[ORM\Column(length20nullabletrue)]
  91.     #[Assert\Length(max20)]
  92.     #[Groups(["media:read"])]
  93.     private ?string $mimetype null;
  94.     /**
  95.      * Nombre de la foto
  96.      *
  97.      * @var string|null
  98.      */
  99.     #[ORM\Column(length255nullabletrue)]
  100.     #[Assert\Length(max255)]
  101.     #[Groups(["media:read"])]
  102.     private ?string $originalName null;
  103.     #[ORM\ManyToOne(inversedBy'productImages')]
  104.     private ?Product $productImage null;
  105.     #[ORM\ManyToOne(inversedBy'productVideos')]
  106.     private ?Product $productVideo null;
  107.     #[ORM\OneToOne(mappedBy'avatar'cascade: ['persist''remove'])]
  108.     private ?User $user null;
  109.     
  110.     #[ORM\Column]
  111.     #[Groups(["media:read"])]
  112.     private ?int $position 0;
  113.     #[ORM\Column(length255)]
  114.     private ?string $directory "";
  115.     #[ORM\ManyToOne(inversedBy'media')]
  116.     private ?Producer $producer null;
  117.     #[ORM\ManyToOne(inversedBy'media')]
  118.     private ?Brand $brand null;
  119.     #[ORM\Column(nullabletrue)]
  120.     private ?bool $active false;
  121.     
  122.     
  123.     public function __toString()
  124.     {
  125.         return $this->filename;
  126.     }
  127.     /**
  128.      * Necesario para evitar el error: "Serialization of 'Symfony\Component\HttpFoundation\File\File' is not allowed
  129.      *
  130.      * @return void
  131.      */
  132.     public function __serialize()
  133.     {
  134.         return [
  135.             $this->id,
  136.             $this->filename,
  137.         ];
  138.     }
  139.     public function __unserialize(array $serialized)
  140.     {
  141.         list (
  142.             $this->id,
  143.             $this->filename,
  144.         ) = $serialized;
  145.     }
  146.     public function getId(): ?int
  147.     {
  148.         return $this->id;
  149.     }
  150.     public function getFile(): ?File
  151.     {
  152.         return $this->file;
  153.     }
  154.     /**
  155.      * If manually uploading a file (i.e. not using Symfony Form) ensure an instance
  156.      * of 'UploadedFile' is injected into this setter to trigger the update. If this
  157.      * bundle's configuration parameter 'inject_on_load' is set to 'true' this setter
  158.      * must be able to accept an instance of 'File' as the bundle will inject one here
  159.      * during Doctrine hydration.
  160.      *
  161.      * @param File|UploadedFile|null $file
  162.      */
  163.     public function setFile(?File $file null)
  164.     {
  165.         $this->file $file;
  166.         // VERY IMPORTANT:
  167.         // It is required that at least one field changes if you are using Doctrine,
  168.         // otherwise the event listeners won't be called and the file is lost
  169.         if ($file) {
  170.             // if 'updatedAt' is not defined in your entity, use another property
  171.             $this->updatedAt = new \DateTime('now');
  172.         }
  173.     }
  174.     public function getFilename(): ?string
  175.     {
  176.         return $this->filename;
  177.     }
  178.     public function setFilename(?string $filename): self
  179.     {
  180.         $this->filename $filename;
  181.         return $this;
  182.     }
  183.     /**
  184.      * In Bytes
  185.      *
  186.      * @return integer|null
  187.      */
  188.     public function getSize(): ?int
  189.     {
  190.         return $this->size;
  191.     } 
  192.     /**
  193.      * In KiloBytes
  194.      *
  195.      * @return int|null
  196.      */
  197.     public function getSizeInKb(): ?int
  198.     {
  199.         return ceil($this->size 1024.0);
  200.     }
  201.     /**
  202.      * In MegaBytes
  203.      *
  204.      * @return int|null
  205.      */
  206.     public function getSizeInMb(): ?int
  207.     {
  208.         return ceil($this->size 1024.0 1024.0);
  209.     }
  210.     public function setSize(?int $size): void
  211.     {
  212.         $this->size $size;
  213.     }
  214.     public function getMimetype(): ?string
  215.     {
  216.         return $this->mimetype;
  217.     }
  218.     public function setMimetype(?string $mimetype): self
  219.     {
  220.         $this->mimetype $mimetype;
  221.         return $this;
  222.     }
  223.     public function getOriginalName(): ?string
  224.     {
  225.         return $this->originalName;
  226.     }
  227.     public function setOriginalName(?string $originalName): self
  228.     {
  229.         $this->originalName $originalName;
  230.         return $this;
  231.     }
  232.     public function getProductImage(): ?Product
  233.     {
  234.         return $this->productImage;
  235.     }
  236.     public function setProductImage(?Product $productImage): self
  237.     {
  238.         $this->productImage $productImage;
  239.         return $this;
  240.     }
  241.     public function getProductVideo(): ?Product
  242.     {
  243.         return $this->productVideo;
  244.     }
  245.     public function setProductVideo(?Product $productVideo): self
  246.     {
  247.         $this->productVideo $productVideo;
  248.         return $this;
  249.     }
  250.     public function getUser(): ?User
  251.     {
  252.         return $this->user;
  253.     }
  254.     public function setUser(?User $user): self
  255.     {
  256.         // unset the owning side of the relation if necessary
  257.         if ($user === null && $this->user !== null) {
  258.             $this->user->setAvatar(null);
  259.         }
  260.         // set the owning side of the relation if necessary
  261.         if ($user !== null && $user->getAvatar() !== $this) {
  262.             $user->setAvatar($this);
  263.         }
  264.         $this->user $user;
  265.         return $this;
  266.     }
  267.     
  268.     public function getPosition(): ?int
  269.     {
  270.         return $this->position;
  271.     }
  272.     public function setPosition(int $position): self
  273.     {
  274.         $this->position $position;
  275.         return $this;
  276.     }
  277.     public function getDirectory(): ?string
  278.     {
  279.         return $this->directory;
  280.     }
  281.     public function setDirectory(?string $directory): self
  282.     {
  283.         $this->directory $directory;
  284.         return $this;
  285.     }
  286.     public function getProducer(): ?Producer
  287.     {
  288.         return $this->producer;
  289.     }
  290.     public function setProducer(?Producer $producer): self
  291.     {
  292.         $this->producer $producer;
  293.         return $this;
  294.     }
  295.     public function getBrand(): ?Brand
  296.     {
  297.         return $this->brand;
  298.     }
  299.     public function setBrand(?Brand $brand): self
  300.     {
  301.         $this->brand $brand;
  302.         return $this;
  303.     }
  304.     public function isImage(): bool
  305.     {
  306.         return in_array($this->getMimetype(), self::getImageMimetypes());
  307.     }
  308.     public function isVideo(): bool
  309.     {
  310.         return in_array($this->getMimetype(), self::getVideMimetypes());
  311.     }
  312.     public function isActive(): ?bool
  313.     {
  314.         return $this->active;
  315.     }
  316.     public function setActive(bool $active): self
  317.     {
  318.         $this->active $active;
  319.         return $this;
  320.     }
  321.     public function clone(self $mediastring $dirint $position): self
  322.     {
  323.         $fs          = new \Symfony\Component\Filesystem\Filesystem();
  324.         $newFilename pathinfo($media->getOriginalName(), PATHINFO_FILENAME) . '-' time() . '.' pathinfo($media->getOriginalName(), PATHINFO_EXTENSION);
  325.         $origin      __DIR__ '/../../' "uploads/{$dir}/{$media->getFilename()}";
  326.         $destination __DIR__ '/../../' "uploads/{$dir}/{$newFilename}";
  327.         if ($fs->exists($origin)) {
  328.             $fs->copy($origin$destination);
  329.         }
  330.         $this->setFilename($newFilename);
  331.         $this->setSize($media->getSize());
  332.         $this->setMimetype($media->getMimetype());
  333.         $this->setOriginalName($media->getOriginalName());
  334.         $this->setDirectory($media->getDirectory());
  335.         $this->setPosition($position);
  336.         $this->setActive(true);
  337.         return $this;
  338.     }
  339. }