Completed
Push — b0.25.0 ( 25876b...875a21 )
by Sebastian
05:28
created

EnhancedUser::hasRoleByName()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 7
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
crap 6
1
<?php
2
3
/**
4
 * Linna Framework.
5
 *
6
 * @author Sebastian Rapetti <[email protected]>
7
 * @copyright (c) 2018, Sebastian Rapetti
8
 * @license http://opensource.org/licenses/MIT MIT License
9
 */
10
declare(strict_types=1);
11
12
namespace Linna\Authorization;
13
14
use Linna\Authentication\Password;
15
use Linna\Authentication\User;
16
17
/**
18
 * Enhanched User.
19
 */
20
class EnhancedUser extends User
21
{
22
    use PermissionTrait;
23
24
    /**
25
     * @var array Contain roles for the user
26
     */
27
    private $roles = [];
28
29
    /**
30
     * Class Constructor.
31
     *
32
     * @param Password $password
33
     * @param array    $roles
34
     * @param array    $permissions
35
     */
36 1
    public function __construct(Password $password, array $roles = [], array $permissions = [])
37
    {
38 1
        parent::__construct($password);
39
40 1
        $this->roles = $roles;
41 1
        $this->permission = $permissions;
42 1
    }
43
44
    /**
45
     * Check if an user has a role, use Role instance.
46
     *
47
     * @param Role $role
48
     *
49
     * @return bool
50
     */
51
    public function hasRole(Role $role): bool
52
    {
53
        return $this->hasRoleById($role->getId());
54
    }
55
56
    /**
57
     * Check if an user has a role, use role Id.
58
     *
59
     * @param int $roleId
60
     *
61
     * @return bool
62
     */
63
    public function hasRoleById(int $roleId): bool
64
    {
65
        if (isset($this->roles[$roleId])) {
66
            return true;
67
        }
68
69
        return false;
70
    }
71
72
    /**
73
     * Check if an user has a role, use role name.
74
     *
75
     * @param string $roleName
76
     *
77
     * @return bool
78
     */
79
    public function hasRoleByName(string $roleName): bool
80
    {
81
        if (in_array($roleName, array_column($this->roles, 'name'), true)) {
82
            return true;
83
        }
84
85
        return false;
86
    }
87
}
88