src/Entity/Product.php line 14
<?php
namespace App\Entity;
use App\Repository\ProductRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Translatable\Translatable;
use Gedmo\Mapping\Annotation as Gedmo;
#[ORM\Entity(repositoryClass: ProductRepository::class)]
class Product implements Translatable
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[Gedmo\Translatable]
#[ORM\Column(length: 255)]
private ?string $name = "";
#[Gedmo\Translatable]
#[ORM\Column(length: 500, nullable: true)]
private ?string $composition = null;
#[ORM\Column(nullable: true)]
private ?int $quantity = null;
#[ORM\Column(nullable: true)]
private ?float $weight = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mainImage = null;
#[ORM\Column]
private ?float $price = null;
#[ORM\Column(nullable: true)]
private ?float $retailPrice = null;
#[Gedmo\Translatable]
#[ORM\Column(type: Types::TEXT)]
private ?string $description = null;
#[ORM\Column(length: 255)]
private ?string $ean = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $slug = null;
// #[ORM\OneToMany(targetEntity: ProductVariant::class, mappedBy: 'product',cascade: ['persist'])]
// private $variants;
#[ORM\Column(length: 255,nullable: true)]
private ?string $collection_name = null;
#[ORM\ManyToMany(targetEntity: Category::class, inversedBy: 'products')]
private Collection $categories;
#[ORM\OneToMany(mappedBy: 'product', targetEntity: Option::class,cascade: ['persist'])]
private Collection $options;
#[ORM\Column(nullable: true)]
private array $images = [];
#[ORM\Column(nullable: true)]
private ?float $profitMargin = null;
#[ORM\Column(nullable: true)]
private ?float $promotionMargin = null;
#[ORM\ManyToMany(targetEntity: ProductCollection::class, inversedBy: 'products')]
private Collection $collections;
#[ORM\Column(length: 255, nullable: true)]
private ?string $api_last_updated = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $modelId = null;
#[ORM\OneToMany(mappedBy: 'product', targetEntity: ProductVariant::class,cascade: ["persist"])]
private Collection $variants;
#[ORM\Column(length: 255)]
private ?string $apiId = null;
#[ORM\ManyToOne(inversedBy: 'products')]
private ?Suplier $supplier = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mediaPath = null;
#[ORM\ManyToMany(targetEntity: MarketPlace::class, mappedBy: 'products')]
private Collection $marketPlaces;
#[ORM\OneToMany(mappedBy: 'product', targetEntity: Listing::class)]
private Collection $listings;
public function __construct()
{
$this->options = new ArrayCollection();
$this->variants = new ArrayCollection();
$this->categories = new ArrayCollection();
$this->collections = new ArrayCollection();
$this->marketPlaces = new ArrayCollection();
$this->listings = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getComposition(): string
{
return $this->composition;
}
public function setComposition(?string $composition): self
{
$this->composition = $composition;
return $this;
}
public function getQuantity(): ?int
{
$quantities = 0;
foreach ($this->getVariants() as $variant) {
$quantities += intval($variant->getQuantity());
}
return $quantities;
// return $this->quantity;
}
public function getQuantities(): ?string
{
$quantities = 0;
foreach ($this->getVariants() as $variant) {
$quantities += $variant->getQuantity();
}
return $quantities.' in '.count($this->variants).' variants';
}
public function setQuantity(?int $quantity): self
{
$this->quantity = $quantity;
return $this;
}
public function getWeight(): ?float
{
return $this->weight;
}
public function getMaxWeight(): ?float
{
$maxWeights = [];
$maxWeights[] = $this->getWeight();
foreach ($this->getVariants() as $variant) {
$maxWeights[] = $variant->getWeight();
}
return max($maxWeights);
}
public function getMinWeight(): ?float
{
$minWeights = [];
$maxWeights[] = $this->getWeight();
foreach ($this->getVariants() as $variant) {
$minWeights[] = $variant->getWeight();
}
return count($minWeights) > 0 ? min($minWeights) : 0;
}
public function getUniqueSizes()
{
$sizes = [];
foreach ($this->getVariants() as $variant) {
$sizes[] = $variant->getOptionValues()->get(1)->getValue();
}
return array_unique($sizes);
}
public function getImagesByColor()
{
$imagesByColor = [];
foreach ($this->getVariants() as $variant) {
$color = $variant->getOptionValues()->get(0)->getValue();
if (!isset($imagesByColor[$color])) {
$imagesByColor[$color] = $variant->getImages();
}
}
return $imagesByColor;
}
public function hasInStockVariant()
{
foreach ($this->getVariants() as $variant) {
if (intval($variant->getQuantity()) > 0) {
return true;
}
}
return false;
}
public function getUniqueColors()
{
$colors = [];
foreach ($this->getVariants() as $variant) {
$colors[] = $variant->getOptionValues()->get(0)->getValue();
}
return array_unique($colors);
}
public function setWeight(?float $weight): self
{
$this->weight = $weight;
return $this;
}
// public function getMainImage(): ?string
// {
// return '/uploads/tbint/'.strval($this->apiId).'/'.$this->mainImage;
// }
public function getMainImage(): ?string
{
return $this->mainImage;
}
public function setMainImage(?string $mainImage): self
{
$this->mainImage = $mainImage;
return $this;
}
public function getPrice(): ?float
{
return $this->price;
}
public function setPrice(float $price): self
{
$this->price = $price;
return $this;
}
public function getRetailPrice(): ?float
{
return $this->retailPrice;
}
public function setRetailPrice(?float $retailPrice): self
{
$this->retailPrice = $retailPrice;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(string $description): self
{
$this->description = $description;
return $this;
}
public function getEan(): ?string
{
return $this->ean;
}
public function setEan(string $ean): self
{
$this->ean = $ean;
return $this;
}
public function getSlug(): ?string
{
return $this->slug;
}
public function setSlug(string $slug): self
{
$slug = preg_replace('/[^A-Za-z0-9-]+/', '-', $this->getName());
$this->slug = $slug;
return $this;
}
// /**
// * @return Collection<int, ProductVariant>
// */
// public function getVariants(): ?Collection
// {
// return $this->variants;
// }
public function firstVariantId()
{
return $this->variants->first()->getId();
}
public function firstVariantFrontImage()
{
return $this->variants->first()->getMainImage();
}
public function firstVariantBackImage()
{
return $this->variants->first()->getBackImage();
}
public function firstVariantPrice()
{
return $this->variants->first()->getSellingPrice();
}
// public function getVariantesByColor()
// {
// $test = $this->variants->filter(function($variant){
// })
// }
// public function addVariant(ProductVariant $variant): self
// {
// if (!$this->variants->contains($variant)) {
// $this->variants->add($variant);
// }
// return $this;
// }
// public function removeVariant(ProductVariant $variant): self
// {
// $this->variants->removeElement($variant);
// return $this;
// }
public function getSecondImage()
{
$images = array_values(array_filter($this->images));
$randomIndex = rand(0,count($images) - 1);
$img = !empty($images) ? $images[$randomIndex] : null;
return $img;
}
public function getColor($color)
{
return $this->variants->findFirst(function($variant) use ($color){
return strtolower($variant->getColor()) == strtolower($color);
});
}
public function getCollectionName(): ?string
{
return $this->collection_name;
}
public function setCollectionName(string $collection_name): static
{
$this->collection_name = $collection_name;
return $this;
}
public function mainImageTag(): string
{
return "<img src='" + $this->mainImage + "'>";
}
/**
* @return Collection<int, Category>
*/
public function getCategories(): Collection
{
return $this->categories;
}
public function addCategory(Category $category): static
{
if (!$this->categories->contains($category)) {
$this->categories->add($category);
}
return $this;
}
public function removeCategory(Category $category): static
{
$this->categories->removeElement($category);
return $this;
}
/**
* @return Collection<int, Option>
*/
public function getOptions(): Collection
{
return $this->options;
}
public function addOption(Option $option): static
{
if (!$this->options->contains($option)) {
$this->options->add($option);
$option->setProduct($this);
}
return $this;
}
public function removeOption(Option $option): static
{
if ($this->options->removeElement($option)) {
// set the owning side to null (unless already changed)
if ($option->getProduct() === $this) {
$option->setProduct(null);
}
}
return $this;
}
public function getImages(): array
{
return $this->images;
}
public function setImages(?array $images): static
{
$this->images = $images;
return $this;
}
public function __toString()
{
return $this->name ?? 'pid:'.strval($this->id);
}
public function getProfitMargin(): ?float
{
return $this->profitMargin;
}
public function setProfitMargin(?float $profitMargin): static
{
$this->profitMargin = $profitMargin;
return $this;
}
public function getPromotionMargin(): ?float
{
return $this->promotionMargin;
}
public function setPromotionMargin(?float $promotionMargin): static
{
$this->promotionMargin = $promotionMargin;
return $this;
}
/**
* @return Collection<int, ProductCollection>
*/
public function getCollections(): Collection
{
return $this->collections;
}
public function addCollection(ProductCollection $collection): static
{
if (!$this->collections->contains($collection)) {
$this->collections->add($collection);
}
return $this;
}
public function removeCollection(ProductCollection $collection): static
{
$this->collections->removeElement($collection);
return $this;
}
public function getApiLastUpdated(): ?string
{
return $this->api_last_updated;
}
public function setApiLastUpdated(?string $api_last_updated): static
{
$this->api_last_updated = $api_last_updated;
return $this;
}
public function getModelId(): ?string
{
return $this->modelId;
}
public function setModelId(?string $modelId): static
{
$this->modelId = $modelId;
return $this;
}
/**
* @return Collection<int, ProductVariant>
*/
public function getVariants(): Collection
{
return $this->variants;
}
public function addVariant(ProductVariant $variant): static
{
if (!$this->variants->contains($variant)) {
$this->variants->add($variant);
$variant->setProduct($this);
}
return $this;
}
public function removeVariant(ProductVariant $variant): static
{
if ($this->variants->removeElement($variant)) {
// set the owning side to null (unless already changed)
if ($variant->getProduct() === $this) {
$variant->setProduct(null);
}
}
return $this;
}
public function getApiId(): ?string
{
return $this->apiId;
}
public function setApiId(string $apiId): static
{
$this->apiId = $apiId;
return $this;
}
public function getSupplier(): ?Suplier
{
return $this->supplier;
}
public function getSupplierName(): ?string
{
return $this->supplier->getName();
}
public function setSupplier(?Suplier $supplier): static
{
$this->supplier = $supplier;
return $this;
}
public function getMediaPath(): ?string
{
return $this->mediaPath;
}
public function setMediaPath(?string $mediaPath): static
{
$this->mediaPath = $mediaPath;
return $this;
}
public function getImagePathForAdmin(): ?string
{
$arr = explode('/',$this->mainImage);
$path = array_pop($arr);
return $path;
}
public function getImagesPathForAdmin(): ?array
{
if($this->images){
return array_map(function($image){
$arr = explode('/',$image);
$path = array_pop($arr);
return $path;
},$this->images);
}else{
return [];
}
}
public function setImagesPathForAdmin(?array $images): static
{
if($images){
$this->images = array_map(function($image){
return $this->mediaPath.'/'.$image;
},$images);
}else{
$this->images = [];
}
return $this;
}
public function setImagePathForAdmin(?string $image): static
{
if($image){
$this->mainImage = $this->mediaPath.'/'.$image;
}
return $this;
}
/**
* @return Collection<int, MarketPlace>
*/
public function getMarketPlaces(): Collection
{
return $this->marketPlaces;
}
public function addMarketPlace(MarketPlace $marketPlace): static
{
if (!$this->marketPlaces->contains($marketPlace)) {
$this->marketPlaces->add($marketPlace);
$marketPlace->addProduct($this);
}
return $this;
}
public function removeMarketPlace(MarketPlace $marketPlace): static
{
if ($this->marketPlaces->removeElement($marketPlace)) {
$marketPlace->removeProduct($this);
}
return $this;
}
/**
* @return Collection<int, Listing>
*/
public function getListings(): Collection
{
return $this->listings;
}
public function addListing(Listing $listing): static
{
if (!$this->listings->contains($listing)) {
$this->listings->add($listing);
$listing->setProduct($this);
}
return $this;
}
public function removeListing(Listing $listing): static
{
if ($this->listings->removeElement($listing)) {
// set the owning side to null (unless already changed)
if ($listing->getProduct() === $this) {
$listing->setProduct(null);
}
}
return $this;
}
}