@@ -34,17 +34,13 @@ public function encode(LaravelCursor $cursor): string
34
34
{
35
35
$ key = $ cursor ->parameter ($ this ->keyName );
36
36
37
- if (!$ key ) {
38
- return $ cursor ->encode ();
37
+ if ($ key ) {
38
+ $ parameters = $ this ->withoutPrivate ($ cursor ->toArray ());
39
+ $ parameters [$ this ->keyName ] = $ this ->idParser ->encode ($ key );
40
+ $ cursor = new LaravelCursor ($ parameters , $ cursor ->pointsToNextItems ());
39
41
}
40
42
41
- $ encodedId = $ this ->idParser ->encode ($ key );
42
- $ parameters = $ cursor ->toArray ();
43
- unset($ parameters ['_pointsToNextItems ' ]);
44
- $ parameters [$ this ->keyName ] = $ encodedId ;
45
-
46
- $ newCursor = new LaravelCursor ($ parameters , $ cursor ->pointsToNextItems ());
47
- return $ newCursor ->encode ();
43
+ return $ cursor ->encode ();
48
44
}
49
45
50
46
/**
@@ -53,25 +49,39 @@ public function encode(LaravelCursor $cursor): string
53
49
*/
54
50
public function decode (Cursor $ cursor ): ?LaravelCursor
55
51
{
56
- $ encodedCursor = $ cursor ->isBefore () ? $ cursor ->getBefore () : $ cursor ->getAfter ();
57
- if (!is_string ($ encodedCursor )) {
58
- return null ;
59
- }
60
-
61
- $ parameters = json_decode (base64_decode (str_replace (['- ' , '_ ' ], ['+ ' , '/ ' ], $ encodedCursor )), true );
52
+ $ decoded = LaravelCursor::fromEncoded (
53
+ $ cursor ->isBefore () ? $ cursor ->getBefore () : $ cursor ->getAfter (),
54
+ );
62
55
63
- if (json_last_error () !== JSON_ERROR_NONE ) {
56
+ if ($ decoded === null ) {
64
57
return null ;
65
58
}
66
59
67
- $ pointsToNextItems = $ parameters [ ' _pointsToNextItems ' ] ;
68
- unset( $ parameters [ ' _pointsToNextItems ' ]);
60
+ $ parameters = $ this -> withoutPrivate ( $ decoded -> toArray ()) ;
61
+
69
62
if (isset ($ parameters [$ this ->keyName ])) {
70
63
$ parameters [$ this ->keyName ] = $ this ->idParser ->decode (
71
64
$ parameters [$ this ->keyName ],
72
65
);
73
66
}
74
67
75
- return new LaravelCursor ($ parameters , $ pointsToNextItems );
68
+ return new LaravelCursor ($ parameters , $ decoded ->pointsToNextItems ());
69
+ }
70
+
71
+ /**
72
+ * @param array<string, mixed> $values
73
+ * @return array<string, mixed>
74
+ */
75
+ private function withoutPrivate (array $ values ): array
76
+ {
77
+ $ result = [];
78
+
79
+ foreach ($ values as $ key => $ value ) {
80
+ if (!str_starts_with ($ key , '_ ' )) {
81
+ $ result [$ key ] = $ value ;
82
+ }
83
+ }
84
+
85
+ return $ result ;
76
86
}
77
87
}
0 commit comments