-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCursorBasedPagination.php
43 lines (34 loc) · 1.2 KB
/
CursorBasedPagination.php
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
<?php
declare(strict_types=1);
namespace Undabot\JsonApi\Implementation\Model\Request\Pagination;
use Undabot\JsonApi\Definition\Exception\Request\InvalidParameterValueException;
use Undabot\JsonApi\Definition\Model\Request\Pagination\PaginationInterface;
use Undabot\JsonApi\Implementation\Model\Source\Source;
class CursorBasedPagination implements PaginationInterface
{
public const PARAM_PAGE_AFTER = 'after';
public const PARAM_PAGE_BEFORE = 'before';
public const PARAM_PAGE_SIZE = 'size';
public function __construct(private ?string $after, private ?string $before, private ?int $size)
{
if (null === $this->after && null === $this->before && null === $this->size) {
throw new InvalidParameterValueException(new Source(null), 'At least one of the params must be not null.');
}
}
public function getSize(): int
{
return $this->size ?? 0;
}
public function getAfter(): ?string
{
return $this->after;
}
public function getBefore(): ?string
{
return $this->before;
}
public function getOffset(): int
{
throw new \LogicException('Cursor based pagination does not have offset');
}
}