src/Repository/ProductRepository.php line 257
<?php
namespace App\Repository;
use App\Entity\Product;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
use Symfony\Component\HttpFoundation\JsonResponse;
/**
* @extends ServiceEntityRepository<Product>
*
* @method Product|null find($id, $lockMode = null, $lockVersion = null)
* @method Product|null findOneBy(array $criteria, array $orderBy = null)
* @method Product[] findAll()
* @method Product[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class ProductRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Product::class);
}
public function save(Product $entity, bool $flush = false): void
{
$this->getEntityManager()->persist($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function remove(Product $entity, bool $flush = false): void
{
$this->getEntityManager()->remove($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
/**
* @param $value
* @return Product|null
* @throws \Doctrine\ORM\NonUniqueResultException
*/
public function findProductBySlug($value): ?Product
{
return $this->createQueryBuilder('p')
->andWhere('p.slug = :val')
->setParameter('val', $value)
->getQuery()
->getOneOrNullResult();
}
/**
* @param $value
* @return Product|null
* @throws \Doctrine\ORM\NonUniqueResultException
*/
public function findProductsByCategory($category): ?array
{
// return $this->createQueryBuilder('p')
// ->select('DISTINCT ov.*')
// ->Join('p.variants','v')
// ->Join('v.optionValues','ov')
// ->andWhere('ov.name = :color')
// ->andWhere(':category MEMBER OF p.categories')
// ->setParameter('category', $category)
// ->setParameter('color',"Color")
// // ->groupBy('ov.value')
// ->getQuery()
// ->getResult();
// $qb->select('p, v, ov')
// ->from('App\Entity\Product', 'p')
// ->leftJoin('p.variants', 'v')
// ->leftJoin('v.color', 'ov')
// ->groupBy('ov.id');
// $qb = $entityManager->createQueryBuilder();
// $qb->select('p, v, ov')
// ->from('App\Entity\Product', 'p')
// ->leftJoin('p.variants', 'v')
// ->leftJoin('v.color', 'ov')
// ->groupBy('ov.id'); // Group by color (OptionValues entity)
// $query = $qb->getQuery();
// return $query->getResult();
return $this->createQueryBuilder('p')
->select('p,v,ov')
->leftJoin('p.variants','v')
->leftJoin('v.optionValues','ov')
->andWhere(':category MEMBER OF p.categories')
->setParameter('category', $category)
->groupBy('v.color')
->getQuery()
->getResult();
}
public function findProductsByCollection($collection,$page,$filters)
{
// $query = $this->createQueryBuilder('p')
// ->select('p,v,ov')
// ->leftJoin('p.variants','v')
// ->leftJoin('v.optionValues','ov')
// ->andWhere(':collection MEMBER OF p.collections')
// ->setParameter('collection', $collection);
// if($filters){
// if ( array_key_exists('color',$filters) & !empty($filters['color'])) {
// $query->andWhere('ov.value = :color')
// ->setParameter('color',$filters['color']);
// }
// if( array_key_exists('size',$filters) & !empty($filters['size']) ){
// $query->andWhere('ov.value = :size')
// ->setParameter('size',$filters['size']);
// }
// //dd($filters);
// if( array_key_exists('price_min',$filters) and array_key_exists('price_max',$filters)){
// $query->andWhere('v.sellingPrice BETWEEN :minPrice and :maxPrice')
// ->setParameter('minPrice',$filters['price_min'])
// ->setParameter('maxPrice',$filters['price_max']);
// }
// }
// return $query->groupBy('p.id')
// ->groupBy('v.color')
// ->getQuery()
// ->getResult();
$query = $this->createQueryBuilder('p')
->select('p', 'v', 'ovColor', 'ovSize')
->leftJoin('p.variants', 'v')
->leftJoin('v.optionValues', 'ovColor', 'WITH', 'ovColor.name = :colorName')
->leftJoin('v.optionValues', 'ovSize', 'WITH', 'ovSize.name = :sizeName')
->setParameters([
'colorName' => 'Color',
'sizeName' => 'Size',
]);
$query->andWhere(':collection MEMBER OF p.collections')
->setParameter('collection', $collection);
if($filters){
if( array_key_exists("color",$filters) & !empty($filters['color']) ){
$color = strtolower($filters["color"]);
$query->andWhere('LOWER(ovColor.value) = :color')
->setParameter('color',$color);
}
if( array_key_exists('size',$filters) & !empty($filters['size']) ){
$query->andWhere('ovSize.value = :size')
->setParameter('size',$filters["size"]);
}
if(array_key_exists('priceRange',$filters)){
$query->andWhere('v.sellingPrice BETWEEN :minPrice and :maxPrice')
->setParameter('minPrice',$filters['price_min'])
->setParameter('maxPrice',$filters['price_max']);
}
// dump($query->getQuery());
return $query->getQuery()
->getResult();
}
return $query->groupBy('v.color')
->getQuery()
->getResult();
}
/**
* @param $slugOrId
* @return Product|null
* @throws \Doctrine\ORM\NonUniqueResultException
*/
public function findProductBySlugOrId($slugOrId): ?Product
{
return $this->createQueryBuilder('p')
->andWhere('p.id = :slugOrId')
->orWhere('p.slug = :slugOrId')
->setParameter('val',$slugOrId)
->getQuery()
->getOneOrNullResult();
}
/**
* @param $value
* @return array|null
*/
public function getProductsByCollection($idOrName): ?array
{
// $conn = $this->getEntityManager()->getConnection();
// $sql = "SELECT * FROM `product` WHERE collection_id = :id";
// $results = $conn->executeQuery($sql,['id' => $id]);
// return $results->fetchAllAssociative();
return $this->createQueryBuilder('p')
->andWhere('p.collection_name = :val')
->setParameter('val', $idOrName)
->setMaxResults(10)
->getQuery()
->getResult();
}
/**
* @param $limit
* @return null|array
*/
public function findWithLimit($limit): ?array
{
return $this->createQueryBuilder('p')
->setMaxResults($limit)
->getQuery()
->getResult();
}
public function findRelatedProducts($categories): ?array
{
return $this->createQueryBuilder('p')
->andWhere(':vals MEMBER OF p.categories')
->setParameter('vals', $categories)
->setMaxResults('10')
->getQuery()
->getResult();
}
public function findCategoryProducts($category,$filters): ?array
{
$query = $this->createQueryBuilder('p')
->select('p', 'v', 'ovColor', 'ovSize')
->leftJoin('p.variants', 'v')
->leftJoin('v.optionValues', 'ovColor', 'WITH', 'ovColor.name = :colorName')
->leftJoin('v.optionValues', 'ovSize', 'WITH', 'ovSize.name = :sizeName')
->setParameters([
'colorName' => 'Color',
'sizeName' => 'Size',
]);
$query->andWhere(':category MEMBER OF p.categories')
->setParameter('category', $category);
if($filters){
if( array_key_exists("color",$filters) & !empty($filters['color']) ){
$color = strtolower($filters["color"]);
$query->andWhere('LOWER(ovColor.value) = :color')
->setParameter('color',$color);
}
if( array_key_exists('size',$filters) & !empty($filters['size']) ){
$query->andWhere('ovSize.value = :size')
->setParameter('size',$filters["size"]);
}
if(array_key_exists('priceRange',$filters)){
$query->andWhere('v.sellingPrice BETWEEN :minPrice and :maxPrice')
->setParameter('minPrice',$filters['price_min'])
->setParameter('maxPrice',$filters['price_max']);
}
// dump($query->getQuery());
return $query->getQuery()
->getResult();
}
return $query->groupBy('v.color')
->getQuery()
->getResult();
}
public function findByNameLike(string $searchInput)
{
return $this->createQueryBuilder('p')
->andWhere('p.name LIKE :searchInput')
->setParameter('searchInput','%'.$searchInput.'%')
->setMaxResults(10)
->getQuery()
->getResult();
}
}