src/Entity/Product.php line 14

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Translatable\Translatable;
  9. use Gedmo\Mapping\Annotation as Gedmo;
  10. #[ORM\Entity(repositoryClassProductRepository::class)]
  11. class Product implements Translatable
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[Gedmo\Translatable]
  18.     #[ORM\Column(length255)]
  19.     private ?string $name "";
  20.     #[Gedmo\Translatable]
  21.     #[ORM\Column(length500nullabletrue)]
  22.     private ?string $composition null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?int $quantity null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?float $weight null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $mainImage null;
  29.     #[ORM\Column]
  30.     private ?float $price null;
  31.     #[ORM\Column(nullabletrue)]
  32.     private ?float $retailPrice null;
  33.     #[Gedmo\Translatable]
  34.     #[ORM\Column(typeTypes::TEXT)]
  35.     private ?string $description null;
  36.     #[ORM\Column(length255)]
  37.     private ?string $ean null;
  38.     #[ORM\Column(length255nullabletrue)]
  39.     private ?string $slug null;
  40.     // #[ORM\OneToMany(targetEntity: ProductVariant::class, mappedBy: 'product',cascade: ['persist'])]
  41.     // private $variants;
  42.     #[ORM\Column(length255,nullabletrue)]
  43.     private ?string $collection_name null;
  44.     #[ORM\ManyToMany(targetEntityCategory::class, inversedBy'products')]
  45.     private Collection $categories;
  46.     #[ORM\OneToMany(mappedBy'product'targetEntityOption::class,cascade: ['persist'])]
  47.     private Collection $options;
  48.     #[ORM\Column(nullabletrue)]
  49.     private array $images = [];
  50.     #[ORM\Column(nullabletrue)]
  51.     private ?float $profitMargin null;
  52.     #[ORM\Column(nullabletrue)]
  53.     private ?float $promotionMargin null;
  54.     #[ORM\ManyToMany(targetEntityProductCollection::class, inversedBy'products')]
  55.     private Collection $collections;
  56.     #[ORM\Column(length255nullabletrue)]
  57.     private ?string $api_last_updated null;
  58.     #[ORM\Column(length255nullabletrue)]
  59.     private ?string $modelId null;
  60.     #[ORM\OneToMany(mappedBy'product'targetEntityProductVariant::class,cascade: ["persist"])]
  61.     private Collection $variants;
  62.     #[ORM\Column(length255)]
  63.     private ?string $apiId null;
  64.     #[ORM\ManyToOne(inversedBy'products')]
  65.     private ?Suplier $supplier null;
  66.     #[ORM\Column(length255nullabletrue)]
  67.     private ?string $mediaPath null;
  68.     #[ORM\ManyToMany(targetEntityMarketPlace::class, mappedBy'products')]
  69.     private Collection $marketPlaces;
  70.     #[ORM\OneToMany(mappedBy'product'targetEntityListing::class)]
  71.     private Collection $listings;
  72.     
  73.     public function __construct()
  74.     {
  75.         $this->options = new ArrayCollection();
  76.         $this->variants = new ArrayCollection();
  77.         $this->categories = new ArrayCollection();
  78.         $this->collections = new ArrayCollection();
  79.         $this->marketPlaces = new ArrayCollection();
  80.         $this->listings = new ArrayCollection();
  81.     }
  82.     public function getId(): ?int
  83.     {
  84.         return $this->id;
  85.     }
  86.     public function getName(): ?string
  87.     {
  88.         return $this->name;
  89.     }
  90.     public function setName(string $name): self
  91.     {
  92.         $this->name $name;
  93.         return $this;
  94.     }
  95.     public function getComposition(): string
  96.     {
  97.         return $this->composition;
  98.     }
  99.     public function setComposition(?string $composition): self
  100.     {
  101.         $this->composition $composition;
  102.         return $this;
  103.     }
  104.     public function getQuantity(): ?int
  105.     {
  106.         $quantities 0;
  107.         foreach ($this->getVariants() as $variant) {
  108.             $quantities += intval($variant->getQuantity());
  109.         }
  110.         return $quantities;
  111.         // return $this->quantity;
  112.     }
  113.     public function getQuantities(): ?string
  114.     {
  115.         $quantities 0;
  116.         foreach ($this->getVariants() as $variant) {
  117.             $quantities += $variant->getQuantity();
  118.         }
  119.         return $quantities.' in '.count($this->variants).' variants';
  120.     }
  121.     public function setQuantity(?int $quantity): self
  122.     {
  123.         $this->quantity $quantity;
  124.         return $this;
  125.     }
  126.     public function getWeight(): ?float
  127.     {
  128.         return $this->weight;
  129.     }
  130.     public function getMaxWeight(): ?float
  131.     {
  132.         $maxWeights = [];
  133.         $maxWeights[] = $this->getWeight();
  134.         foreach ($this->getVariants() as $variant) {
  135.                 $maxWeights[] = $variant->getWeight();
  136.         }
  137.         return max($maxWeights);
  138.     }
  139.     public function getMinWeight(): ?float 
  140.     {
  141.         $minWeights = [];
  142.         $maxWeights[] = $this->getWeight();
  143.         foreach ($this->getVariants() as $variant) {
  144.                 $minWeights[] = $variant->getWeight();
  145.         }
  146.         return count($minWeights) > min($minWeights) : 0;
  147.     }
  148.     public function getUniqueSizes() 
  149.     {
  150.         $sizes = [];
  151.         foreach ($this->getVariants() as $variant) {
  152.             $sizes[] = $variant->getOptionValues()->get(1)->getValue();
  153.         }
  154.         return array_unique($sizes);
  155.     }
  156.     public function getImagesByColor()
  157.     {
  158.         $imagesByColor = [];
  159.         foreach ($this->getVariants() as $variant) {
  160.             $color $variant->getOptionValues()->get(0)->getValue();
  161.             if (!isset($imagesByColor[$color])) {
  162.                 $imagesByColor[$color] = $variant->getImages();
  163.             }
  164.         }
  165.         return $imagesByColor;
  166.     }
  167.     public function hasInStockVariant()
  168.     {
  169.         foreach ($this->getVariants() as $variant) {
  170.             if (intval($variant->getQuantity()) > 0) {
  171.                 return true;
  172.             }
  173.         }
  174.         return false;
  175.     }
  176.     public function getUniqueColors()
  177.     {
  178.         $colors = [];
  179.         foreach ($this->getVariants() as $variant) {
  180.             $colors[] = $variant->getOptionValues()->get(0)->getValue();
  181.         }
  182.         return array_unique($colors);
  183.     }
  184.     public function setWeight(?float $weight): self
  185.     {
  186.         $this->weight $weight;
  187.         return $this;
  188.     }
  189.     // public function getMainImage(): ?string
  190.     // {
  191.     //     return '/uploads/tbint/'.strval($this->apiId).'/'.$this->mainImage;
  192.     // }
  193.     public function getMainImage(): ?string
  194.     {
  195.         return $this->mainImage;
  196.     }
  197.     public function setMainImage(?string $mainImage): self
  198.     {
  199.         $this->mainImage $mainImage;
  200.         return $this;
  201.     }
  202.     public function getPrice(): ?float
  203.     {
  204.         return $this->price;
  205.     }
  206.     public function setPrice(float $price): self
  207.     {
  208.         $this->price $price;
  209.         return $this;
  210.     }
  211.     public function getRetailPrice(): ?float
  212.     {
  213.         return $this->retailPrice;
  214.     }
  215.     public function setRetailPrice(?float $retailPrice): self
  216.     {
  217.         $this->retailPrice $retailPrice;
  218.         return $this;
  219.     }
  220.     public function getDescription(): ?string
  221.     {
  222.         return $this->description;
  223.     }
  224.     public function setDescription(string $description): self
  225.     {
  226.         $this->description $description;
  227.         return $this;
  228.     }
  229.     public function getEan(): ?string
  230.     {
  231.         return $this->ean;
  232.     }
  233.     public function setEan(string $ean): self
  234.     {
  235.         $this->ean $ean;
  236.         return $this;
  237.     }
  238.     public function getSlug(): ?string
  239.     {
  240.         return $this->slug;
  241.     }
  242.     public function setSlug(string $slug): self
  243.     {
  244.         $slug preg_replace('/[^A-Za-z0-9-]+/''-'$this->getName());
  245.         $this->slug $slug;
  246.         return $this;
  247.     }
  248.     // /**
  249.     //  * @return Collection<int, ProductVariant>
  250.     //  */
  251.     // public function getVariants(): ?Collection
  252.     // {
  253.     //     return $this->variants;
  254.     // }
  255.     public function firstVariantId()
  256.     {
  257.         return $this->variants->first()->getId();
  258.     }
  259.     public function firstVariantFrontImage()
  260.     {
  261.         return $this->variants->first()->getMainImage();
  262.     }
  263.     public function firstVariantBackImage()
  264.     {
  265.         return $this->variants->first()->getBackImage();
  266.     }
  267.     public function firstVariantPrice()
  268.     {
  269.         return $this->variants->first()->getSellingPrice();
  270.     }
  271.     // public function getVariantesByColor()
  272.     // {
  273.     //     $test = $this->variants->filter(function($variant){
  274.     //     })
  275.     // }
  276.     // public function addVariant(ProductVariant $variant): self
  277.     // {
  278.     //     if (!$this->variants->contains($variant)) {
  279.     //         $this->variants->add($variant);
  280.     //     }
  281.     //     return $this;
  282.     // }
  283.     // public function removeVariant(ProductVariant $variant): self
  284.     // {
  285.     //     $this->variants->removeElement($variant);
  286.     //     return $this;
  287.     // }
  288.     public function getSecondImage()
  289.     {
  290.         $images array_values(array_filter($this->images));
  291.         $randomIndex rand(0,count($images) - 1);
  292.         $img = !empty($images) ? $images[$randomIndex] : null;
  293.         return $img;
  294.     }
  295.     public function getColor($color)
  296.     {
  297.         return $this->variants->findFirst(function($variant) use ($color){
  298.             return strtolower($variant->getColor()) ==  strtolower($color);
  299.         });
  300.     }
  301.     public function getCollectionName(): ?string
  302.     {
  303.         return $this->collection_name;
  304.     }
  305.     public function setCollectionName(string $collection_name): static
  306.     {
  307.         $this->collection_name $collection_name;
  308.         return $this;
  309.     }
  310.     public function mainImageTag(): string
  311.     {
  312.         return "<img src='" $this->mainImage "'>";
  313.     }
  314.     /**
  315.      * @return Collection<int, Category>
  316.      */
  317.     public function getCategories(): Collection
  318.     {
  319.         return $this->categories;
  320.     }
  321.     public function addCategory(Category $category): static
  322.     {
  323.         if (!$this->categories->contains($category)) {
  324.             $this->categories->add($category);
  325.         }
  326.         return $this;
  327.     }
  328.     public function removeCategory(Category $category): static
  329.     {
  330.         $this->categories->removeElement($category);
  331.         return $this;
  332.     }
  333.     /**
  334.      * @return Collection<int, Option>
  335.      */
  336.     public function getOptions(): Collection
  337.     {
  338.         return $this->options;
  339.     }
  340.     public function addOption(Option $option): static
  341.     {
  342.         if (!$this->options->contains($option)) {
  343.             $this->options->add($option);
  344.             $option->setProduct($this);
  345.         }
  346.         return $this;
  347.     }
  348.     public function removeOption(Option $option): static
  349.     {
  350.         if ($this->options->removeElement($option)) {
  351.             // set the owning side to null (unless already changed)
  352.             if ($option->getProduct() === $this) {
  353.                 $option->setProduct(null);
  354.             }
  355.         }
  356.         return $this;
  357.     }
  358.     public function getImages(): array
  359.     {
  360.         return $this->images;
  361.     }
  362.     public function setImages(?array $images): static
  363.     {
  364.         $this->images $images;
  365.         return $this;
  366.     }
  367.     
  368.     public function __toString()
  369.     {
  370.         return $this->name ?? 'pid:'.strval($this->id);
  371.     }
  372.     public function getProfitMargin(): ?float
  373.     {
  374.         return $this->profitMargin;
  375.     }
  376.     public function setProfitMargin(?float $profitMargin): static
  377.     {
  378.         $this->profitMargin $profitMargin;
  379.         return $this;
  380.     }
  381.     public function getPromotionMargin(): ?float
  382.     {
  383.         return $this->promotionMargin;
  384.     }
  385.     public function setPromotionMargin(?float $promotionMargin): static
  386.     {
  387.         $this->promotionMargin $promotionMargin;
  388.         return $this;
  389.     }
  390.     /**
  391.      * @return Collection<int, ProductCollection>
  392.      */
  393.     public function getCollections(): Collection
  394.     {
  395.         return $this->collections;
  396.     }
  397.     public function addCollection(ProductCollection $collection): static
  398.     {
  399.         if (!$this->collections->contains($collection)) {
  400.             $this->collections->add($collection);
  401.         }
  402.         return $this;
  403.     }
  404.     public function removeCollection(ProductCollection $collection): static
  405.     {
  406.         $this->collections->removeElement($collection);
  407.         return $this;
  408.     }
  409.     public function getApiLastUpdated(): ?string
  410.     {
  411.         return $this->api_last_updated;
  412.     }
  413.     public function setApiLastUpdated(?string $api_last_updated): static
  414.     {
  415.         $this->api_last_updated $api_last_updated;
  416.         return $this;
  417.     }
  418.     public function getModelId(): ?string
  419.     {
  420.         return $this->modelId;
  421.     }
  422.     public function setModelId(?string $modelId): static
  423.     {
  424.         $this->modelId $modelId;
  425.         return $this;
  426.     }
  427.     /**
  428.      * @return Collection<int, ProductVariant>
  429.      */
  430.     public function getVariants(): Collection
  431.     {
  432.         return $this->variants;
  433.     }
  434.     public function addVariant(ProductVariant $variant): static
  435.     {
  436.         if (!$this->variants->contains($variant)) {
  437.             $this->variants->add($variant);
  438.             $variant->setProduct($this);
  439.         }
  440.         return $this;
  441.     }
  442.     public function removeVariant(ProductVariant $variant): static
  443.     {
  444.         if ($this->variants->removeElement($variant)) {
  445.             // set the owning side to null (unless already changed)
  446.             if ($variant->getProduct() === $this) {
  447.                 $variant->setProduct(null);
  448.             }
  449.         }
  450.         return $this;
  451.     }
  452.     public function getApiId(): ?string
  453.     {
  454.         return $this->apiId;
  455.     }
  456.     public function setApiId(string $apiId): static
  457.     {
  458.         $this->apiId $apiId;
  459.         return $this;
  460.     }
  461.     public function getSupplier(): ?Suplier
  462.     {
  463.         return $this->supplier;
  464.     }
  465.     public function getSupplierName(): ?string
  466.     {
  467.         return $this->supplier->getName();
  468.     }
  469.     public function setSupplier(?Suplier $supplier): static
  470.     {
  471.         $this->supplier $supplier;
  472.         return $this;
  473.     }
  474.     public function getMediaPath(): ?string
  475.     {
  476.         return $this->mediaPath;
  477.     }
  478.     public function setMediaPath(?string $mediaPath): static
  479.     {
  480.         $this->mediaPath $mediaPath;
  481.         return $this;
  482.     }
  483.     public function getImagePathForAdmin(): ?string
  484.     {
  485.         $arr explode('/',$this->mainImage);
  486.         $path array_pop($arr);
  487.         return $path;
  488.     }
  489.     public function getImagesPathForAdmin(): ?array
  490.     {   
  491.         if($this->images){
  492.             return array_map(function($image){
  493.                 $arr explode('/',$image);
  494.                 $path array_pop($arr);
  495.                 return $path;
  496.             },$this->images);
  497.         }else{
  498.             return [];
  499.         }
  500.     }
  501.     public function setImagesPathForAdmin(?array $images): static
  502.     {
  503.         if($images){
  504.             $this->images array_map(function($image){
  505.                                 return $this->mediaPath.'/'.$image;
  506.                             },$images);
  507.         }else{
  508.             $this->images = [];
  509.         }
  510.         return $this;
  511.     }
  512.     public function setImagePathForAdmin(?string $image): static
  513.     {
  514.         if($image){
  515.             $this->mainImage $this->mediaPath.'/'.$image;
  516.         }
  517.         return $this;
  518.     }
  519.     /**
  520.      * @return Collection<int, MarketPlace>
  521.      */
  522.     public function getMarketPlaces(): Collection
  523.     {
  524.         return $this->marketPlaces;
  525.     }
  526.     public function addMarketPlace(MarketPlace $marketPlace): static
  527.     {
  528.         if (!$this->marketPlaces->contains($marketPlace)) {
  529.             $this->marketPlaces->add($marketPlace);
  530.             $marketPlace->addProduct($this);
  531.         }
  532.         return $this;
  533.     }
  534.     public function removeMarketPlace(MarketPlace $marketPlace): static
  535.     {
  536.         if ($this->marketPlaces->removeElement($marketPlace)) {
  537.             $marketPlace->removeProduct($this);
  538.         }
  539.         return $this;
  540.     }
  541.     /**
  542.      * @return Collection<int, Listing>
  543.      */
  544.     public function getListings(): Collection
  545.     {
  546.         return $this->listings;
  547.     }
  548.     public function addListing(Listing $listing): static
  549.     {
  550.         if (!$this->listings->contains($listing)) {
  551.             $this->listings->add($listing);
  552.             $listing->setProduct($this);
  553.         }
  554.         return $this;
  555.     }
  556.     public function removeListing(Listing $listing): static
  557.     {
  558.         if ($this->listings->removeElement($listing)) {
  559.             // set the owning side to null (unless already changed)
  560.             if ($listing->getProduct() === $this) {
  561.                 $listing->setProduct(null);
  562.             }
  563.         }
  564.         return $this;
  565.     }
  566. }