1 <?php
declare(strict_types
=1);
4 * This file is part of the Rapsys UserBundle package.
6 * (c) Raphaël Gertz <symfony@rapsys.eu>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Rapsys\UserBundle\Checker
;
14 use Rapsys\UserBundle\Entity\User
;
15 use Rapsys\UserBundle\Exception\UnactivatedException
;
17 use Symfony\Component\Security\Core\User\InMemoryUserChecker
;
18 use Symfony\Component\Security\Core\Exception\DisabledException
;
19 use Symfony\Component\Security\Core\User\UserInterface
;
24 class UserChecker
extends InMemoryUserChecker
{
28 public function checkPostAuth(UserInterface
$user): void {
29 //Without User instance
30 if (!$user instanceof User
) {
34 //With not activated user
35 if (!$user->isActivated()) {
36 $ex = new UnactivatedException('User Account is not activated');
41 //With not enabled user
42 if (!$user->isEnabled()) {
43 $ex = new DisabledException('User account is not enabled');
48 //Call parent checkPreAuth
49 parent
::checkPostAuth($user);