src/Repository/OptionValueRepository.php line 83

  1. <?php
  2. namespace App\Repository;
  3. use App\Entity\Category;
  4. use App\Entity\OptionValue;
  5. use App\Entity\ProductCollection;
  6. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  7. use Doctrine\Persistence\ManagerRegistry;
  8. /**
  9.  * @extends ServiceEntityRepository<OptionValue>
  10.  *
  11.  * @method OptionValue|null find($id, $lockMode = null, $lockVersion = null)
  12.  * @method OptionValue|null findOneBy(array $criteria, array $orderBy = null)
  13.  * @method OptionValue[]    findAll()
  14.  * @method OptionValue[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  15.  */
  16. class OptionValueRepository extends ServiceEntityRepository
  17. {
  18.     public function __construct(ManagerRegistry $registry)
  19.     {
  20.         parent::__construct($registryOptionValue::class);
  21.     }
  22.     public function save(OptionValue $entitybool $flush false): void
  23.     {
  24.         $this->getEntityManager()->persist($entity);
  25.         if ($flush) {
  26.             $this->getEntityManager()->flush();
  27.         }
  28.     }
  29.     public function remove(OptionValue $entitybool $flush false): void
  30.     {
  31.         $this->getEntityManager()->remove($entity);
  32.         if ($flush) {
  33.             $this->getEntityManager()->flush();
  34.         }
  35.     }
  36.     public function findUniqueColors($variants,$option)
  37.     {
  38.         return $this->createQueryBuilder('o')
  39.                         // ->select('o.value')
  40.                         ->groupBy('o.value')
  41.                         ->andWhere('o.productVariant in (:variants)')
  42.                         ->andWhere('o.productOption = :option')
  43.                         ->setParameter(':variants',$variants)
  44.                         ->setParameter(':option',$option)
  45.                         ->getQuery()
  46.                         ->getResult();
  47.                         
  48.     }
  49.     public function findCategoryColors($products)
  50.     {
  51.         return $this->createQueryBuilder('o')
  52.                     ->join("o.productVariant","pv")
  53.                     ->andWhere('pv.product in (:products)')
  54.                     ->andWhere('o.name = :color ')
  55.                     ->setParameter(':color',"Color")
  56.                     ->setParameter(':products',$products)
  57.                     ->groupBy('o.value')
  58.                     ->getQuery()
  59.                     ->getResult();
  60.     }
  61.     public function findCategoryColorsTest(Category $category)
  62.     {
  63.         return $this->createQueryBuilder('o')
  64.                     ->join("o.productVariant","pv")
  65.                     ->join("pv.product","p")
  66.                     ->join("p.categories",'categories')
  67.                     ->andWhere("categories = :category")
  68.                     ->andWhere("o.name = :color")
  69.                     ->setParameter(":color","Color")
  70.                     ->setParameter(":category",$category)
  71.                     ->groupBy("o.value")
  72.                     ->getQuery()
  73.                     ->getResult();
  74.     }
  75.     public function findCategorySizesTest($category){
  76.         return $this->createQueryBuilder('o')
  77.                     ->join("o.productVariant","pv")
  78.                     ->join("pv.product","p")
  79.                     ->join("p.categories","categories")
  80.                     ->andWhere("categories = :category")
  81.                     ->andWhere("o.name = :size")
  82.                     ->setParameter(":size","Size")
  83.                     ->setParameter(":category",$category)
  84.                     ->groupBy("o.value")
  85.                     ->getQuery()
  86.                     ->getResult();
  87.     }
  88.     
  89.     public function findCollectionColors(ProductCollection $collection)
  90.     {
  91.         return $this->createQueryBuilder('o')
  92.                     ->join("o.productVariant","pv")
  93.                     ->join("pv.product","p")
  94.                     ->join("p.collections","collections")
  95.                     ->andWhere('collections = :collection')
  96.                     ->andWhere('o.name = :color')
  97.                     ->setParameter(':collection',$collection)
  98.                     ->setParameter(":color","Color")
  99.                     ->groupBy('o.value')
  100.                     ->getQuery()
  101.                     ->getResult();
  102.     }
  103.     public function findCollectionSizes(ProductCollection $collection)
  104.     {
  105.         return $this->createQueryBuilder('o')
  106.                     ->join("o.productVariant","pv")
  107.                     ->join("pv.product","p")
  108.                     ->join("p.collections","collections")
  109.                     ->andWhere('collections = :collection')
  110.                     ->andWhere('o.name = :name')
  111.                     ->setParameter(':collection',$collection)
  112.                     ->setParameter(":name","Size")
  113.                     ->groupBy('o.value')
  114.                     ->getQuery()
  115.                     ->getResult();
  116.     }
  117.     public function findCategorySizes($products)
  118.     {
  119.         return $this->createQueryBuilder('o')
  120.                     ->join("o.productVariant","pv")
  121.                     ->andWhere('pv.product in (:products)')
  122.                     ->andWhere('o.name = :size ')
  123.                     ->setParameter(':size',"Size")
  124.                     ->setParameter(':products',$products)
  125.                     ->groupBy('o.value')
  126.                     ->getQuery()
  127.                     ->getResult();
  128.     }
  129.     public function findUniqueSizes($variants,$option)
  130.     {
  131.                 return $this->createQueryBuilder('o')
  132.                         // ->select('o.value')
  133.                         // ->groupBy('o.value')
  134.                         ->andWhere('o.productVariant in (:variants)')
  135.                         ->andWhere('o.productOption = :option')
  136.                         ->setParameter(':variants',$variants)
  137.                         ->setParameter(':option',$option)
  138.                         ->getQuery()
  139.                         ->getResult();
  140.     }
  141.     // public function findUniqueProducts()
  142.     // {
  143.     //     return $this->createQueryBuilder('o')
  144.     //                 // ->distinct()
  145.     //                 ->andWhere('o.name = :name')
  146.     //                 ->setParameter('name','Color')
  147.     //                 // ->groupBy('o.value')
  148.     //                 ->getQuery()
  149.     //                 ->getResult();
  150.     // }
  151. //    /**
  152. //     * @return OptionValue[] Returns an array of OptionValue objects
  153. //     */
  154. //    public function findByExampleField($value): array
  155. //    {
  156. //        return $this->createQueryBuilder('o')
  157. //            ->andWhere('o.exampleField = :val')
  158. //            ->setParameter('val', $value)
  159. //            ->orderBy('o.id', 'ASC')
  160. //            ->setMaxResults(10)
  161. //            ->getQuery()
  162. //            ->getResult()
  163. //        ;
  164. //    }
  165. //    public function findOneBySomeField($value): ?OptionValue
  166. //    {
  167. //        return $this->createQueryBuilder('o')
  168. //            ->andWhere('o.exampleField = :val')
  169. //            ->setParameter('val', $value)
  170. //            ->getQuery()
  171. //            ->getOneOrNullResult()
  172. //        ;
  173. //    }
  174. }