1
|
|
|
<?php declare(strict_types=1); |
2
|
|
|
|
3
|
|
|
namespace Mgid\Component\Pagination; |
4
|
|
|
|
5
|
|
|
use Mgid\Component\Pagination\Mapping\Mapping; |
6
|
|
|
use Symfony\Component\Validator\Validator\ValidatorInterface; |
7
|
|
|
use Mgid\Component\Pagination\Mapping\MappingInterface; |
8
|
|
|
use Mgid\Component\Pagination\Normalizer\ChainNormalizer; |
9
|
|
|
use Symfony\Component\Validator\Exception\ValidationFailedException; |
10
|
|
|
use Mgid\Component\Pagination\Normalizer\NormalizerInterface; |
11
|
|
|
|
12
|
|
|
final class Paginator implements PaginatorInterface |
13
|
|
|
{ |
14
|
|
|
/** |
15
|
|
|
* @var array<string,string> |
16
|
|
|
*/ |
17
|
|
|
private array $adapters = []; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* @var array<string,array<NormalizerInterface>> |
21
|
|
|
*/ |
22
|
|
|
private array $normalizers = []; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* @var MappingInterface |
26
|
|
|
*/ |
27
|
|
|
private MappingInterface $mapping; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @var ValidatorInterface |
31
|
|
|
*/ |
32
|
|
|
private ValidatorInterface $validator; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @param ValidatorInterface $validator |
36
|
|
|
*/ |
37
|
|
|
public function __construct(ValidatorInterface $validator) |
38
|
|
|
{ |
39
|
|
|
$this->mapping = new Mapping(); |
40
|
|
|
$this->validator = $validator; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* {@inheritdoc} |
45
|
|
|
*/ |
46
|
|
|
public function getMapping(): MappingInterface |
47
|
|
|
{ |
48
|
|
|
return $this->mapping; |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* {@inheritdoc} |
53
|
|
|
*/ |
54
|
|
|
public function addAdapter(string $queryBuilderClassName, string $adapterClassName): void |
55
|
|
|
{ |
56
|
|
|
$this->adapters[$queryBuilderClassName] = $adapterClassName; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* {@inheritdoc} |
61
|
|
|
*/ |
62
|
|
|
public function addNormalizer(string $queryBuilderClassName, NormalizerInterface $normalizer): void |
63
|
|
|
{ |
64
|
|
|
$this->normalizers[$queryBuilderClassName][] = $normalizer; |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* {@inheritdoc} |
69
|
|
|
*/ |
70
|
|
|
public function paginate(object $queryBuilder, InputInterface $input): OutputInterface |
71
|
|
|
{ |
72
|
|
|
$this->validate($input); |
73
|
|
|
|
74
|
|
|
$adapter = $this->getAdapter($queryBuilder); |
75
|
|
|
$normalizer = $this->getNormalizer(\get_class($queryBuilder)); |
76
|
|
|
|
77
|
|
|
$this->mapping->setRootAlias($adapter->getRootAlias()); |
78
|
|
|
$this->mapping->normalize($input, $normalizer); |
79
|
|
|
|
80
|
|
|
$adapter->addFilters($input); |
81
|
|
|
|
82
|
|
|
$items = []; |
83
|
|
|
$count = $adapter->getCount(); |
84
|
|
|
|
85
|
|
|
if ($count > 0) { |
86
|
|
|
$adapter->addOrders($input); |
87
|
|
|
$adapter->addPagination($input); |
88
|
|
|
|
89
|
|
|
$items = $adapter->getItems(); |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
return new Output($count, $items); |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
/** |
96
|
|
|
* @param object $queryBuilder |
97
|
|
|
* |
98
|
|
|
* @return Adapter\QueryBuilderAdapterInterface |
99
|
|
|
*/ |
100
|
|
|
private function getAdapter(object $queryBuilder): Adapter\QueryBuilderAdapterInterface |
101
|
|
|
{ |
102
|
|
|
foreach ($this->adapters as $queryBuilderClassName => $adapterClassName) { |
103
|
|
|
if ($queryBuilder instanceof $queryBuilderClassName) { |
104
|
|
|
return new $adapterClassName($queryBuilder); |
105
|
|
|
} |
106
|
|
|
} |
107
|
|
|
|
108
|
|
|
throw new \RuntimeException(\sprintf('No adapter found for query builder of %s', \get_class($queryBuilder))); |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
/** |
112
|
|
|
* @param string $queryBuilderClassName |
113
|
|
|
* |
114
|
|
|
* @return NormalizerInterface |
115
|
|
|
*/ |
116
|
|
|
private function getNormalizer(string $queryBuilderClassName): NormalizerInterface |
117
|
|
|
{ |
118
|
|
|
return new ChainNormalizer($this->normalizers[$queryBuilderClassName] ?? []); |
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
/** |
122
|
|
|
* @param InputInterface $input |
123
|
|
|
* |
124
|
|
|
* @throws ValidationFailedException |
125
|
|
|
*/ |
126
|
|
|
private function validate(InputInterface $input): void |
127
|
|
|
{ |
128
|
|
|
$violations = $this->validator->validate($input); |
129
|
|
|
|
130
|
|
|
if ($violations->count()) { |
131
|
|
|
throw new ValidationFailedException($input, $violations); |
132
|
|
|
} |
133
|
|
|
} |
134
|
|
|
} |
135
|
|
|
|