|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* balloon |
|
7
|
|
|
* |
|
8
|
|
|
* @copyright Copryright (c) 2012-2019 gyselroth GmbH (https://gyselroth.com) |
|
9
|
|
|
* @license GPL-3.0 https://opensource.org/licenses/GPL-3.0 |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace Balloon\App\Idp\Hook; |
|
13
|
|
|
|
|
14
|
|
|
use Balloon\App\Idp\Exception; |
|
15
|
|
|
use Balloon\Hook\AbstractHook; |
|
16
|
|
|
use Balloon\Server\RoleInterface; |
|
17
|
|
|
use Balloon\Server\User; |
|
18
|
|
|
use Dolondro\GoogleAuthenticator\Secret; |
|
19
|
|
|
use Dolondro\GoogleAuthenticator\SecretFactory; |
|
20
|
|
|
use Micro\Auth\Adapter\Basic\BasicInterface; |
|
21
|
|
|
use Micro\Auth\Identity; |
|
22
|
|
|
use Psr\Log\LoggerInterface; |
|
23
|
|
|
|
|
24
|
|
|
class MultiFactorAuth extends AbstractHook |
|
25
|
|
|
{ |
|
26
|
|
|
/** |
|
27
|
|
|
* Issuer. |
|
28
|
|
|
*/ |
|
29
|
|
|
public const ISSUER = 'balloon'; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* Logger. |
|
33
|
|
|
* |
|
34
|
|
|
* @var LoggerInterface |
|
35
|
|
|
*/ |
|
36
|
|
|
protected $logger; |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* Secret factory. |
|
40
|
|
|
* |
|
41
|
|
|
* @var SecretFactory |
|
42
|
|
|
*/ |
|
43
|
|
|
protected $secret_factory; |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* Secret. |
|
47
|
|
|
* |
|
48
|
|
|
* @var Secret |
|
49
|
|
|
*/ |
|
50
|
|
|
protected $secret; |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* Constructor. |
|
54
|
|
|
*/ |
|
55
|
|
|
public function __construct(LoggerInterface $logger, SecretFactory $secret_factory) |
|
56
|
|
|
{ |
|
57
|
|
|
$this->logger = $logger; |
|
58
|
|
|
$this->secret_factory = $secret_factory; |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* {@inheritdoc} |
|
63
|
|
|
*/ |
|
64
|
|
|
public function preUpdateUser(User $user, array &$attributes = []): void |
|
65
|
|
|
{ |
|
66
|
|
|
$existing = $user->getAttributes(); |
|
|
|
|
|
|
67
|
|
|
if (isset($attributes['multi_factor_auth']) && $attributes['multi_factor_auth'] === true) { |
|
68
|
|
|
$secret = $this->secret_factory->create(self::ISSUER, $user->getUsername()); |
|
69
|
|
|
$attributes['google_auth_secret'] = $secret->getSecretKey(); |
|
70
|
|
|
$this->secret = $secret; |
|
71
|
|
|
} |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
|
|
/** |
|
75
|
|
|
* {@inheritdoc} |
|
76
|
|
|
*/ |
|
77
|
|
|
public function preDecorateRole(RoleInterface $role, array &$attributes = []): void |
|
78
|
|
|
{ |
|
79
|
|
|
$mfa = $role->getAttributes()['multi_factor_auth']; |
|
80
|
|
|
$attributes['multi_factor_auth'] = $mfa; |
|
81
|
|
|
|
|
82
|
|
|
if ($this->secret !== null) { |
|
83
|
|
|
$attributes['multi_factor_uri'] = $this->secret->getUri(); |
|
84
|
|
|
} |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* {@inheritdoc} |
|
89
|
|
|
*/ |
|
90
|
|
|
public function preServerIdentity(Identity $identity, ?User &$user): void |
|
91
|
|
|
{ |
|
92
|
|
|
if (null === $user || ('/index.php/api/v2/tokens' === $_SERVER['ORIG_SCRIPT_NAME'] && isset($_POST['grant_type']) && $_POST['grant_type'] === 'password_mfa')) { |
|
93
|
|
|
return; |
|
94
|
|
|
} |
|
95
|
|
|
|
|
96
|
|
|
if ($identity->getAdapter() instanceof BasicInterface && $user->getAttributes()['multi_factor_auth'] === true) { |
|
|
|
|
|
|
97
|
|
|
throw new Exception\MultiFactorAuthenticationRequired('multi-factor authentication required'); |
|
98
|
|
|
} |
|
99
|
|
|
|
|
100
|
|
|
$this->logger->debug('multi-factor authentication is not required for user ['.$user->getId().']', [ |
|
101
|
|
|
'category' => get_class($this), |
|
102
|
|
|
]); |
|
103
|
|
|
} |
|
104
|
|
|
} |
|
105
|
|
|
|
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.