src/Repository/ProductRepository.php line 257

  1. <?php
  2. namespace App\Repository;
  3. use App\Entity\Product;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. use Symfony\Component\HttpFoundation\JsonResponse;
  7. /**
  8.  * @extends ServiceEntityRepository<Product>
  9.  *
  10.  * @method Product|null find($id, $lockMode = null, $lockVersion = null)
  11.  * @method Product|null findOneBy(array $criteria, array $orderBy = null)
  12.  * @method Product[]    findAll()
  13.  * @method Product[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  14.  */
  15. class ProductRepository extends ServiceEntityRepository
  16. {
  17.     public function __construct(ManagerRegistry $registry)
  18.     {
  19.         parent::__construct($registryProduct::class);
  20.     }
  21.     public function save(Product $entitybool $flush false): void
  22.     {
  23.         $this->getEntityManager()->persist($entity);
  24.         if ($flush) {
  25.             $this->getEntityManager()->flush();
  26.         }
  27.     }
  28.     public function remove(Product $entitybool $flush false): void
  29.     {
  30.         $this->getEntityManager()->remove($entity);
  31.         if ($flush) {
  32.             $this->getEntityManager()->flush();
  33.         }
  34.     }
  35.     /**
  36.      * @param $value
  37.      * @return Product|null
  38.      * @throws \Doctrine\ORM\NonUniqueResultException
  39.      */
  40.     public function findProductBySlug($value): ?Product
  41.     {
  42.         return $this->createQueryBuilder('p')
  43.             ->andWhere('p.slug = :val')
  44.             ->setParameter('val'$value)
  45.             ->getQuery()
  46.             ->getOneOrNullResult();
  47.     }
  48.         /**
  49.      * @param $value
  50.      * @return Product|null
  51.      * @throws \Doctrine\ORM\NonUniqueResultException
  52.      */
  53.     public function findProductsByCategory($category): ?array
  54.     {
  55.         // return $this->createQueryBuilder('p')
  56.         //     ->select('DISTINCT ov.*')
  57.         //     ->Join('p.variants','v')
  58.         //     ->Join('v.optionValues','ov')
  59.         //     ->andWhere('ov.name = :color')
  60.         //     ->andWhere(':category MEMBER OF p.categories')
  61.         //     ->setParameter('category', $category)
  62.         //     ->setParameter('color',"Color")
  63.         //     // ->groupBy('ov.value')
  64.         //     ->getQuery()
  65.         //     ->getResult();
  66.     //     $qb->select('p, v, ov')
  67.     //     ->from('App\Entity\Product', 'p')
  68.     //     ->leftJoin('p.variants', 'v')
  69.     //     ->leftJoin('v.color', 'ov')
  70.     //     ->groupBy('ov.id'); 
  71.     //     $qb = $entityManager->createQueryBuilder();
  72.     // $qb->select('p, v, ov')
  73.     //    ->from('App\Entity\Product', 'p')
  74.     //    ->leftJoin('p.variants', 'v')
  75.     //    ->leftJoin('v.color', 'ov')
  76.     //    ->groupBy('ov.id'); // Group by color (OptionValues entity)
  77.     // $query = $qb->getQuery();
  78.     // return $query->getResult();
  79.             return $this->createQueryBuilder('p')
  80.                         ->select('p,v,ov')
  81.                         ->leftJoin('p.variants','v')
  82.                         ->leftJoin('v.optionValues','ov')
  83.                         ->andWhere(':category MEMBER OF p.categories')
  84.                         ->setParameter('category'$category)
  85.                         ->groupBy('v.color')
  86.                         ->getQuery()
  87.                         ->getResult();
  88.     }
  89.     public function findProductsByCollection($collection,$page,$filters)
  90.     {
  91.         // $query = $this->createQueryBuilder('p')
  92.         //             ->select('p,v,ov')
  93.         //             ->leftJoin('p.variants','v')
  94.         //             ->leftJoin('v.optionValues','ov')
  95.         //             ->andWhere(':collection MEMBER OF p.collections')
  96.         //             ->setParameter('collection', $collection);
  97.         // if($filters){
  98.         //     if ( array_key_exists('color',$filters) & !empty($filters['color'])) {
  99.         //             $query->andWhere('ov.value = :color')
  100.         //                 ->setParameter('color',$filters['color']);
  101.         //     }
  102.         //     if( array_key_exists('size',$filters) & !empty($filters['size']) ){
  103.         //             $query->andWhere('ov.value = :size')
  104.         //                     ->setParameter('size',$filters['size']);
  105.         //     }
  106.         //     //dd($filters);
  107.         //     if( array_key_exists('price_min',$filters) and array_key_exists('price_max',$filters)){
  108.         //             $query->andWhere('v.sellingPrice BETWEEN :minPrice and :maxPrice')
  109.         //                     ->setParameter('minPrice',$filters['price_min'])
  110.         //                     ->setParameter('maxPrice',$filters['price_max']);
  111.         //     }
  112.    
  113.         // }
  114.         // return $query->groupBy('p.id')
  115.         //             ->groupBy('v.color')
  116.         //             ->getQuery()
  117.         //             ->getResult();
  118.             $query $this->createQueryBuilder('p')
  119.                             ->select('p''v''ovColor''ovSize')
  120.                             ->leftJoin('p.variants''v')
  121.                             ->leftJoin('v.optionValues''ovColor''WITH''ovColor.name = :colorName')
  122.                             ->leftJoin('v.optionValues''ovSize''WITH''ovSize.name = :sizeName')
  123.                             ->setParameters([
  124.                                 'colorName' => 'Color',
  125.                                 'sizeName' => 'Size',
  126.                             ]);
  127.             $query->andWhere(':collection MEMBER OF p.collections')
  128.                          ->setParameter('collection'$collection);                
  129.             if($filters){
  130.                     if( array_key_exists("color",$filters) & !empty($filters['color']) ){
  131.                         $color strtolower($filters["color"]);
  132.                         $query->andWhere('LOWER(ovColor.value) = :color')
  133.                                 ->setParameter('color',$color);
  134.                     }
  135.                     if( array_key_exists('size',$filters) & !empty($filters['size']) ){
  136.                         $query->andWhere('ovSize.value = :size')
  137.                                 ->setParameter('size',$filters["size"]);
  138.                     }
  139.                     if(array_key_exists('priceRange',$filters)){
  140.                         $query->andWhere('v.sellingPrice BETWEEN :minPrice and :maxPrice')
  141.                                 ->setParameter('minPrice',$filters['price_min'])
  142.                                 ->setParameter('maxPrice',$filters['price_max']);
  143.                     }
  144.                     // dump($query->getQuery());
  145.                     return $query->getQuery()
  146.                             ->getResult();
  147.             }
  148.             return $query->groupBy('v.color')
  149.                     ->getQuery()
  150.                     ->getResult();
  151.     }
  152.     /**
  153.      * @param $slugOrId
  154.      * @return Product|null
  155.      * @throws \Doctrine\ORM\NonUniqueResultException
  156.      */
  157.     public function findProductBySlugOrId($slugOrId): ?Product
  158.     {
  159.         return $this->createQueryBuilder('p')
  160.                     ->andWhere('p.id = :slugOrId')
  161.                     ->orWhere('p.slug = :slugOrId')
  162.                     ->setParameter('val',$slugOrId)
  163.                     ->getQuery()
  164.                     ->getOneOrNullResult();
  165.     }
  166.     /**
  167.      * @param $value
  168.      * @return array|null
  169.      */
  170.     public function getProductsByCollection($idOrName): ?array
  171.     {
  172.         // $conn = $this->getEntityManager()->getConnection();
  173.         // $sql = "SELECT *  FROM `product` WHERE collection_id = :id";
  174.         // $results = $conn->executeQuery($sql,['id' => $id]);
  175.         // return $results->fetchAllAssociative();
  176.    
  177.         return $this->createQueryBuilder('p')
  178.             ->andWhere('p.collection_name = :val')
  179.             ->setParameter('val'$idOrName)
  180.             ->setMaxResults(10)
  181.             ->getQuery()
  182.             ->getResult();
  183.     }
  184.     /**
  185.      * @param $limit
  186.      * @return null|array
  187.      */
  188.     public function findWithLimit($limit): ?array
  189.     {
  190.         return $this->createQueryBuilder('p')
  191.             ->setMaxResults($limit)
  192.             ->getQuery()
  193.             ->getResult();
  194.     }
  195.     public function findRelatedProducts($categories): ?array
  196.     {
  197.         return $this->createQueryBuilder('p')
  198.                     ->andWhere(':vals MEMBER OF p.categories')
  199.                     ->setParameter('vals'$categories)
  200.                     ->setMaxResults('10')
  201.                     ->getQuery()
  202.                     ->getResult();
  203.     }
  204.     public function findCategoryProducts($category,$filters): ?array
  205.     {
  206.         $query $this->createQueryBuilder('p')
  207.                         ->select('p''v''ovColor''ovSize')
  208.                         ->leftJoin('p.variants''v')
  209.                         ->leftJoin('v.optionValues''ovColor''WITH''ovColor.name = :colorName')
  210.                         ->leftJoin('v.optionValues''ovSize''WITH''ovSize.name = :sizeName')
  211.                         ->setParameters([
  212.                             'colorName' => 'Color',
  213.                             'sizeName' => 'Size',
  214.                         ]);
  215.         $query->andWhere(':category MEMBER OF p.categories')
  216.                 ->setParameter('category'$category);                
  217.         if($filters){
  218.             if( array_key_exists("color",$filters) & !empty($filters['color']) ){
  219.                 $color strtolower($filters["color"]);
  220.                 $query->andWhere('LOWER(ovColor.value) = :color')
  221.                         ->setParameter('color',$color);
  222.             }
  223.             if( array_key_exists('size',$filters) & !empty($filters['size']) ){
  224.                 $query->andWhere('ovSize.value = :size')
  225.                         ->setParameter('size',$filters["size"]);
  226.             }
  227.             if(array_key_exists('priceRange',$filters)){
  228.                 $query->andWhere('v.sellingPrice BETWEEN :minPrice and :maxPrice')
  229.                         ->setParameter('minPrice',$filters['price_min'])
  230.                         ->setParameter('maxPrice',$filters['price_max']);
  231.             }
  232.             // dump($query->getQuery());
  233.             return $query->getQuery()
  234.                         ->getResult();
  235.         }
  236.         return $query->groupBy('v.color')
  237.                         ->getQuery()
  238.                         ->getResult();
  239.     }
  240.     public function findByNameLike(string $searchInput)
  241.     {
  242.         return $this->createQueryBuilder('p')
  243.                         ->andWhere('p.name LIKE :searchInput')
  244.                         ->setParameter('searchInput','%'.$searchInput.'%')
  245.                         ->setMaxResults(10)
  246.                         ->getQuery()
  247.                         ->getResult();
  248.     }
  249. }