-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathBlockRepository.php
More file actions
executable file
·83 lines (75 loc) · 2.96 KB
/
BlockRepository.php
File metadata and controls
executable file
·83 lines (75 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/*
* This file was created by developers working at BitBag
* Do you need more information about us and what we do? Visit our https://bitbag.io website!
* We are hiring developers from all over the world. Join us and start your new, exciting adventure and become part of us: https://bitbag.io/career
*/
declare(strict_types=1);
namespace BitBag\SyliusCmsPlugin\Repository;
use BitBag\SyliusCmsPlugin\Entity\BlockInterface;
use Doctrine\ORM\QueryBuilder;
use Sylius\Bundle\ResourceBundle\Doctrine\ORM\EntityRepository;
class BlockRepository extends EntityRepository implements BlockRepositoryInterface
{
public function createListQueryBuilder(string $localeCode): QueryBuilder
{
return $this->createQueryBuilder('o')
->addSelect('translation')
->leftJoin('o.translations', 'translation', 'WITH', 'translation.locale = :localeCode')
->setParameter('localeCode', $localeCode)
;
}
public function findEnabledByCode(string $code, string $channelCode): ?BlockInterface
{
return $this->createQueryBuilder('o')
->leftJoin('o.channels', 'channel')
->where('o.code = :code')
->andWhere('o.enabled = true')
->andWhere('channel.code = :channelCode')
->setParameter('code', $code)
->setParameter('channelCode', $channelCode)
->getQuery()
->getOneOrNullResult()
;
}
public function findBySectionCode(
string $sectionCode,
string $localeCode,
string $channelCode,
): array {
return $this->createQueryBuilder('o')
->leftJoin('o.translations', 'translation')
->innerJoin('o.sections', 'section')
->innerJoin('o.channels', 'channels')
->andWhere('translation.locale = :localeCode')
->andWhere('section.code = :sectionCode')
->andWhere('o.enabled = true')
->andWhere('channels.code = :channelCode')
->setParameter('localeCode', $localeCode)
->setParameter('sectionCode', $sectionCode)
->setParameter('channelCode', $channelCode)
->getQuery()
->getResult()
;
}
public function findByProductCode(
string $productCode,
string $localeCode,
string $channelCode,
): array {
return $this->createQueryBuilder('o')
->leftJoin('o.translations', 'translation')
->innerJoin('o.products', 'product')
->innerJoin('o.channels', 'channels')
->andWhere('translation.locale = :localeCode')
->andWhere('product.code = :productCode')
->andWhere('o.enabled = true')
->andWhere('channels.code = :channelCode')
->setParameter('localeCode', $localeCode)
->setParameter('productCode', $productCode)
->setParameter('channelCode', $channelCode)
->getQuery()
->getResult()
;
}
}