Skip to content

Commit

Permalink
Merge pull request #30 from ConnectHolland/clear-cookie
Browse files Browse the repository at this point in the history
set cookie expire to match token exire date & reset cookie on logout
  • Loading branch information
basekkelenkamp committed Aug 3, 2021
2 parents 73c368d + 17706aa commit 8aabbb0
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
9 changes: 8 additions & 1 deletion src/Handler/LogoutHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use Doctrine\Common\Persistence\ManagerRegistry;
use Doctrine\ORM\EntityManager;
use Lexik\Bundle\JWTAuthenticationBundle\Security\Authentication\Token\JWTUserToken;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Messenger\Handler\MessageHandlerInterface;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;

Expand All @@ -30,9 +31,10 @@ public function __construct(TokenStorageInterface $tokenStorage, ManagerRegistry
/**
* Invalidate the current login by invalidating the current JWT token.
*/
public function __invoke(Logout $logout): void
public function __invoke(Logout $logout): Response
{
$token = $this->tokenStorage->getToken();
$response = new Response();

if ($token instanceof JWTUserToken) {
$invalidToken = new InvalidToken();
Expand All @@ -46,6 +48,11 @@ public function __invoke(Logout $logout): void
} else {
throw new \RuntimeException('Unable to invalid token because doctrine is not set up correctly. Please configure `vendor/connectholland/secure-jwt/src/Entity` as an annotated entity path (see README.md for more details)');
}

$response->headers->clearCookie('BEARER', '/', null, true, true, 'none');

}

return $response;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function handleAuthenticationSuccess(UserInterface $user, $jwt = null): J
$decoded = $this->jwtEncoder->decode($data['token']);
$this->responsePayload = array_merge($this->responsePayload, $decoded);
$response = new JsonResponse(['result' => 'ok', 'payload' => $this->responsePayload]);
$response->headers->setCookie(new Cookie('BEARER', $data['token'], 0, '/', null, true, true, false, $this->sameSite));
$response->headers->setCookie(new Cookie('BEARER', $data['token'], $decoded['exp'], '/', null, true, true, false, $this->sameSite));

return $response;
}
Expand Down
21 changes: 21 additions & 0 deletions tests/Handler/LogoutHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
use Doctrine\ORM\EntityManager;
use Lexik\Bundle\JWTAuthenticationBundle\Security\Authentication\Token\JWTUserToken;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
Expand Down Expand Up @@ -45,6 +46,26 @@ public function testOnlyHandleJWTTokens(): void
$this->handler->__invoke(new Logout());
}

public function testRemovesCookie(): void
{
$this->tokenStorage->setToken(new JWTUserToken([], null, 'unit-test-token'));
$manager = $this->createMock(EntityManager::class);

$this->doctrine
->expects($this->once())
->method('getManagerForClass')
->willReturn($manager);

$response = $this->handler->__invoke(new Logout());
$this->assertInstanceOf(Response::class, $response);
$cookies = $response->headers->getCookies();

$this->assertCount(1, $cookies);
$this->assertSame('BEARER', $cookies[0]->getName());
$this->assertSame(1, $cookies[0]->getExpiresTime());
}


public function testPersistsInvalidToken(): void
{
$this->tokenStorage->setToken(new JWTUserToken([], null, 'unit-test-token'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public function testOnAuthenticationSuccess(): void
$this->assertSame('[email protected]', $content['payload']['user']);
$this->assertCount(1, $cookies);
$this->assertSame('secrettoken', $cookies[0]->getValue());
$this->assertSame(1627902433, $cookies[0]->getExpiresTime());
}

public function testHandleAuthenticationSuccess()
Expand Down Expand Up @@ -94,7 +95,7 @@ private function getEncoder(): JWTEncoderInterface
$encoder
->expects($this->once())
->method('decode')
->willReturn(['user' => '[email protected]']);
->willReturn(['user' => '[email protected]', 'exp' => 1627902433]);

return $encoder;
}
Expand Down

0 comments on commit 8aabbb0

Please sign in to comment.