|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace DutchCodingCompany\CursorPagination\Pagination; |
|
4
|
|
|
|
|
5
|
|
|
use GraphQL\Error\Error; |
|
6
|
|
|
use Illuminate\Contracts\Pagination\LengthAwarePaginator; |
|
7
|
|
|
use Illuminate\Support\Arr; |
|
8
|
|
|
use Laravel\Scout\Builder as ScoutBuilder; |
|
9
|
|
|
use DutchCodingCompany\CursorPagination\Cursor; |
|
10
|
|
|
use DutchCodingCompany\CursorPagination\CursorPaginator; |
|
11
|
|
|
use Nuwave\Lighthouse\Pagination\PaginationArgs; |
|
12
|
|
|
use Nuwave\Lighthouse\Pagination\PaginationType; |
|
13
|
|
|
|
|
14
|
|
|
class CursorArgs |
|
15
|
|
|
{ |
|
16
|
|
|
/** |
|
17
|
|
|
* @var Cursor |
|
18
|
|
|
*/ |
|
19
|
|
|
public $cursor; |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* @var int |
|
23
|
|
|
*/ |
|
24
|
|
|
public $first; |
|
25
|
|
|
|
|
26
|
|
|
/** |
|
27
|
|
|
* Create a new instance from user given args. |
|
28
|
|
|
* |
|
29
|
|
|
* @param mixed[] $args |
|
30
|
|
|
* @param \Nuwave\Lighthouse\Pagination\PaginationType|null $paginationType |
|
31
|
|
|
* @return static |
|
32
|
|
|
* |
|
33
|
|
|
* @throws \GraphQL\Error\Error |
|
34
|
|
|
*/ |
|
35
|
|
|
public static function extractArgs(array $args, ?PaginationType $paginationType, ?int $paginateMaxCount): self |
|
36
|
|
|
{ |
|
37
|
|
|
$instance = new static(); |
|
38
|
|
|
|
|
39
|
|
|
if ($paginationType->isConnection()) { |
|
|
|
|
|
|
40
|
|
|
$instance->first = $args['first']; |
|
41
|
|
|
$instance->cursor = Cursor::decode($args); |
|
42
|
|
|
} else { |
|
43
|
|
|
return PaginationArgs::extractArgs($args, $paginationType, $paginateMaxCount); |
|
|
|
|
|
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
if ($instance->first <= 0) { |
|
47
|
|
|
throw new Error( |
|
48
|
|
|
self::requestedZeroOrLessItems($instance->first) |
|
49
|
|
|
); |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
// Make sure the maximum pagination count is not exceeded |
|
53
|
|
|
if ( |
|
54
|
|
|
$paginateMaxCount !== null |
|
55
|
|
|
&& $instance->first > $paginateMaxCount |
|
56
|
|
|
) { |
|
57
|
|
|
throw new Error( |
|
58
|
|
|
self::requestedTooManyItems($paginateMaxCount, $instance->first) |
|
59
|
|
|
); |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
return $instance; |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
public static function requestedZeroOrLessItems(int $amount): string |
|
66
|
|
|
{ |
|
67
|
|
|
return "Requested pagination amount must be more than 0, got {$amount}."; |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
public static function requestedTooManyItems(int $maxCount, int $actualCount): string |
|
71
|
|
|
{ |
|
72
|
|
|
return "Maximum number of {$maxCount} requested items exceeded, got {$actualCount}. Fetch smaller chunks."; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
public static function scoutBuilderNotSupported(): string |
|
76
|
|
|
{ |
|
77
|
|
|
return "Laravel Scout Builder is not supported for connection based pagination"; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
/** |
|
81
|
|
|
* Apply the args to a builder, constructing a paginator. |
|
82
|
|
|
* |
|
83
|
|
|
* @param \Illuminate\Database\Query\Builder|\Laravel\Scout\Builder|\Illuminate\Database\Eloquent\Relations\Relation $builder |
|
84
|
|
|
*/ |
|
85
|
|
|
public function applyToBuilder($builder): CursorPaginator |
|
86
|
|
|
{ |
|
87
|
|
|
if ($builder instanceof ScoutBuilder) { |
|
|
|
|
|
|
88
|
|
|
throw new Error( |
|
89
|
|
|
self::scoutBuilderNotSupported() |
|
90
|
|
|
); |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
|
|
return $builder->cursorPaginate($this->first, $this->cursor); |
|
94
|
|
|
} |
|
95
|
|
|
} |
|
96
|
|
|
|
If a variable is not always an object, we recommend to add an additional type check to ensure your method call is safe: