|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
namespace Cerbero\LazyJsonPages\Paginations; |
|
6
|
|
|
|
|
7
|
|
|
use Cerbero\LazyJsonPages\Exceptions\UnsupportedPaginationException; |
|
8
|
|
|
use Traversable; |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* The aggregator of supported paginations. |
|
12
|
|
|
*/ |
|
13
|
|
|
class AnyPagination extends Pagination |
|
14
|
|
|
{ |
|
15
|
|
|
/** |
|
16
|
|
|
* The supported paginations. |
|
17
|
|
|
* |
|
18
|
|
|
* @var class-string<Pagination>[] |
|
|
|
|
|
|
19
|
|
|
*/ |
|
20
|
|
|
protected array $supportedPaginations = [ |
|
21
|
|
|
CursorAwarePagination::class, |
|
22
|
|
|
CustomPagination::class, |
|
|
|
|
|
|
23
|
|
|
LastPageAwarePagination::class, |
|
24
|
|
|
LinkHeaderAwarePagination::class, |
|
25
|
|
|
TotalItemsAwarePagination::class, |
|
26
|
|
|
TotalPagesAwarePagination::class, |
|
27
|
|
|
]; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* Yield the paginated items. |
|
31
|
|
|
* |
|
32
|
|
|
* @return Traversable<int, mixed> |
|
33
|
|
|
* @throws UnsupportedPaginationException |
|
34
|
|
|
*/ |
|
35
|
50 |
|
public function getIterator(): Traversable |
|
36
|
|
|
{ |
|
37
|
|
|
// yield only items and not indexes to ensure incremental indexes |
|
38
|
|
|
// otherwise the actual indexes always start from 0 on every page |
|
39
|
50 |
|
foreach ($this->matchingPagination() as $item) { |
|
40
|
43 |
|
yield $item; |
|
41
|
|
|
} |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* Retrieve the pagination matching with the configuration. |
|
46
|
|
|
*/ |
|
47
|
50 |
|
protected function matchingPagination(): Pagination |
|
48
|
|
|
{ |
|
49
|
50 |
|
foreach ($this->supportedPaginations as $class) { |
|
50
|
50 |
|
$pagination = new $class($this->source, $this->client, $this->config); |
|
51
|
|
|
|
|
52
|
50 |
|
if ($pagination->matches()) { |
|
53
|
49 |
|
return $pagination; |
|
54
|
|
|
} |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
1 |
|
throw new UnsupportedPaginationException($this->config); |
|
58
|
|
|
} |
|
59
|
|
|
} |
|
60
|
|
|
|