Skip to content

Commit 0220f52

Browse files
Merge pull request #14 from andreascreten/remove-cookie-from-response
Remove the cookie from the response if Trans SID is in use
2 parents e3d0092 + 7279ec5 commit 0220f52

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/StartSessionMiddleware.php

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace iMi\LaravelTransSid;
44

5+
use Illuminate\Contracts\Session\Session;
6+
use Symfony\Component\HttpFoundation\Response;
7+
58
class StartSessionMiddleware extends \Illuminate\Session\Middleware\StartSession
69
{
710

@@ -63,4 +66,14 @@ public function getSession(\Illuminate\Http\Request $request)
6366

6467
return $session;
6568
}
69+
70+
protected function addCookieToResponse(Response $response, Session $session)
71+
{
72+
// Do not add cookie if TransSID is active
73+
if ($session->has(self::LOCKED_FIELD)) {
74+
return;
75+
}
76+
77+
parent::addCookieToResponse($response, $session);
78+
}
6679
}

0 commit comments

Comments
 (0)