Skip to content

Commit 1c5190c

Browse files
Support partitioned cookie (#999)
* Support partitioned cookie * Update SwooleClient.php --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent 6da1f2f commit 1c5190c

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

src/Swoole/SwooleClient.php

+11-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,9 @@ public function sendResponseHeaders(Response $response, SwooleResponse $swooleRe
180180
foreach ($response->headers->getCookies() as $cookie) {
181181
$shouldDelete = (string) $cookie->getValue() === '';
182182

183-
$swooleResponse->{$cookie->isRaw() ? 'rawcookie' : 'cookie'}(
183+
$method = $cookie->isRaw() ? 'rawcookie' : 'cookie';
184+
185+
$params = [
184186
$cookie->getName(),
185187
$shouldDelete ? 'deleted' : $cookie->getValue(),
186188
$cookie->getExpiresTime(),
@@ -189,7 +191,14 @@ public function sendResponseHeaders(Response $response, SwooleResponse $swooleRe
189191
$cookie->isSecure(),
190192
$cookie->isHttpOnly(),
191193
$cookie->getSameSite() ?? '',
192-
);
194+
];
195+
196+
if (extension_loaded('swoole') && SWOOLE_VERSION_ID >= 60000) {
197+
$params[] = '';
198+
$params[] = $cookie->isPartitioned();
199+
}
200+
201+
$swooleResponse->$method(...$params);
193202
}
194203
}
195204

tests/SwooleClientTest.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,13 @@ public function test_respond_method_sends_response_to_swoole(): void
190190
$swooleResponse->shouldReceive('header')->once()->with('Cache-Control', 'no-cache, private', true);
191191
$swooleResponse->shouldReceive('header')->once()->with('Content-Type', 'text/html', true);
192192
$swooleResponse->shouldReceive('header')->once()->with('Date', Mockery::type('string'), true);
193-
$swooleResponse->shouldReceive('cookie')->once()->with('new', 'value', 0, '/', '', false, true, 'lax');
194-
$swooleResponse->shouldReceive('cookie')->once()->with('cleared', 'deleted', Mockery::type('int'), '/', '', false, true, 'lax');
193+
if (extension_loaded('swoole') && SWOOLE_VERSION_ID >= 60000) {
194+
$swooleResponse->shouldReceive('cookie')->once()->with('new', 'value', 0, '/', '', false, true, 'lax', '', false);
195+
$swooleResponse->shouldReceive('cookie')->once()->with('cleared', 'deleted', Mockery::type('int'), '/', '', false, true, 'lax', '', false);
196+
} else {
197+
$swooleResponse->shouldReceive('cookie')->once()->with('new', 'value', 0, '/', '', false, true, 'lax');
198+
$swooleResponse->shouldReceive('cookie')->once()->with('cleared', 'deleted', Mockery::type('int'), '/', '', false, true, 'lax');
199+
}
195200
$swooleResponse->shouldReceive('write')->with('Hello World');
196201
$swooleResponse->shouldReceive('end')->once();
197202

0 commit comments

Comments
 (0)