-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathIdentifierCollection.php
More file actions
128 lines (114 loc) · 3.79 KB
/
IdentifierCollection.php
File metadata and controls
128 lines (114 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 1.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Authentication\Identifier;
use ArrayAccess;
use Authentication\AbstractCollection;
use Cake\Core\App;
use RuntimeException;
/**
* @extends \Authentication\AbstractCollection<\Authentication\Identifier\IdentifierInterface>
*/
class IdentifierCollection extends AbstractCollection implements IdentifierInterface
{
/**
* Errors
*
* @var array
*/
protected array $_errors = [];
/**
* Identifier that successfully Identified the identity.
*
* @var \Authentication\Identifier\IdentifierInterface|null
*/
protected ?IdentifierInterface $_successfulIdentifier = null;
/**
* Identifies an user or service by the passed credentials
*
* @param array $credentials Authentication credentials
* @return \ArrayAccess|array|null
*/
public function identify(array $credentials): ArrayAccess|array|null
{
/** @var \Authentication\Identifier\IdentifierInterface $identifier */
foreach ($this->_loaded as $name => $identifier) {
$result = $identifier->identify($credentials);
if ($result) {
$this->_successfulIdentifier = $identifier;
return $result;
}
$this->_errors[$name] = $identifier->getErrors();
}
$this->_successfulIdentifier = null;
return null;
}
/**
* Creates identifier instance.
*
* @param \Authentication\Identifier\IdentifierInterface|class-string<\Authentication\Identifier\IdentifierInterface> $class Identifier class.
* @param string $alias Identifier alias.
* @param array<string, mixed> $config Config array.
* @return \Authentication\Identifier\IdentifierInterface
* @throws \RuntimeException
*/
protected function _create(object|string $class, string $alias, array $config): IdentifierInterface
{
if (is_object($class)) {
return $class;
}
return new $class($config);
}
/**
* Get errors
*
* @return array
*/
public function getErrors(): array
{
return $this->_errors;
}
/**
* Resolves identifier class name.
*
* @param string $class Class name to be resolved.
* @return class-string<\Authentication\Identifier\IdentifierInterface>|null
*/
protected function _resolveClassName(string $class): ?string
{
/** @var class-string<\Authentication\Identifier\IdentifierInterface>|null */
return App::className($class, 'Identifier', 'Identifier');
}
/**
* @param string $class Missing class.
* @param string $plugin Class plugin.
* @return void
* @throws \RuntimeException
*/
protected function _throwMissingClassError(string $class, ?string $plugin): void
{
$message = sprintf('Identifier class `%s` was not found.', $class);
throw new RuntimeException($message);
}
/**
* Gets the successful identifier instance if one was successful after calling identify.
*
* @return \Authentication\Identifier\IdentifierInterface|null
*/
public function getIdentificationProvider(): ?IdentifierInterface
{
return $this->_successfulIdentifier;
}
}