Test Failed
Push — master ( efd8de...40a3e3 )
by Daniel
06:38
created

UserChecker::checkPreAuth()   B

Complexity

Conditions 7
Paths 6

Size

Total Lines 20
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 7

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 7
eloc 12
c 1
b 0
f 0
nc 6
nop 1
dl 0
loc 20
ccs 9
cts 9
cp 1
crap 7
rs 8.8333
1
<?php
2
3
/*
4
 * This file is part of the Silverback API Components Bundle Project
5
 *
6
 * (c) Daniel West <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Silverback\ApiComponentsBundle\Security;
15
16
use Silverback\ApiComponentsBundle\Entity\User\AbstractUser;
17
use Silverback\ApiComponentsBundle\Exception\UserDisabledException;
18
use Silverback\ApiComponentsBundle\Exception\UserEmailAddressUnverified;
19
use Symfony\Component\Security\Core\Exception\CustomUserMessageAccountStatusException;
20
use Symfony\Component\Security\Core\User\UserCheckerInterface;
21
use Symfony\Component\Security\Core\User\UserInterface;
22
23
class UserChecker implements UserCheckerInterface
24
{
25
    private bool $denyUnverifiedLogin;
26 5
27
    public function __construct(bool $denyUnverifiedLogin = true)
28 5
    {
29 5
        $this->denyUnverifiedLogin = $denyUnverifiedLogin;
30
    }
31 4
32
    public function checkPreAuth(UserInterface $user): void
33 4
    {
34 1
        if (!$user instanceof AbstractUser) {
35
            return;
36
        }
37 3
38 1
        if (!$user->isEnabled()) {
39
            $message = 'Your account is currently disabled.';
40
            if (class_exists(CustomUserMessageAccountStatusException::class)) {
41 2
                throw new CustomUserMessageAccountStatusException($message);
42 1
            }
43
            throw new UserDisabledException($message);
44 1
        }
45
46 1
        if ($this->denyUnverifiedLogin && !$user->isEmailAddressVerified()) {
47
            $message = 'Please verify your email address before logging in. If you did not receive a confirmation email please try resetting your password using the forgot password feature.';
48 1
            if (class_exists(CustomUserMessageAccountStatusException::class)) {
49
                throw new CustomUserMessageAccountStatusException($message);
50
            }
51
            throw new UserEmailAddressUnverified($message);
52
        }
53
    }
54
55
    public function checkPostAuth(UserInterface $user): void
56
    {
57
    }
58
}
59