-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathPrimaryKeySessionAuthenticator.php
More file actions
177 lines (162 loc) · 5.76 KB
/
PrimaryKeySessionAuthenticator.php
File metadata and controls
177 lines (162 loc) · 5.76 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
declare(strict_types=1);
namespace Authentication\Authenticator;
use ArrayAccess;
use Authentication\Identifier\IdentifierFactory;
use Authentication\Identifier\IdentifierInterface;
use Cake\Http\Exception\UnauthorizedException;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
/**
* Session Authenticator with only ID
*
* This authenticator stores only the user's primary key in the session,
* and looks up the full user record from the database on each request.
*
* By default, it uses a TokenIdentifier configured to look up users by
* their `id` field. This works out of the box for most applications:
*
* ```php
* $service->loadAuthenticator('Authentication.PrimaryKeySession');
* ```
*
* You can customize the identifier configuration if needed:
*
* ```php
* $service->loadAuthenticator('Authentication.PrimaryKeySession', [
* 'identifier' => [
* 'className' => 'Authentication.Token',
* 'tokenField' => 'uuid',
* 'dataField' => 'key',
* 'resolver' => [
* 'className' => 'Authentication.Orm',
* 'userModel' => 'Members',
* ],
* ],
* ]);
* ```
*/
class PrimaryKeySessionAuthenticator extends SessionAuthenticator
{
/**
* Default config for this object.
*
* - `identifierKey` The key used when passing the ID to the identifier.
* - `idField` The field on the user entity that contains the primary key.
*
* @var array<string, mixed>
*/
protected array $_defaultConfig = [
'fields' => [],
'sessionKey' => 'Auth',
'impersonateSessionKey' => 'AuthImpersonate',
'identify' => false,
'identityAttribute' => 'identity',
'identifierKey' => 'key',
'idField' => 'id',
];
/**
* Constructor
*
* Bypasses SessionAuthenticator's default PasswordIdentifier creation
* to allow lazy initialization of the TokenIdentifier in getIdentifier().
*
* @param \Authentication\Identifier\IdentifierInterface|null $identifier Identifier instance.
* @param array<string, mixed> $config Configuration settings.
*/
public function __construct(?IdentifierInterface $identifier, array $config = [])
{
$this->_identifier = $identifier;
$this->setConfig($config);
}
/**
* Gets the identifier.
*
* If no identifier was explicitly configured, creates a default TokenIdentifier
* configured to look up users by their primary key (`id` field).
*
* @return \Authentication\Identifier\IdentifierInterface
*/
public function getIdentifier(): IdentifierInterface
{
if ($this->_identifier === null) {
$this->_identifier = IdentifierFactory::create([
'className' => 'Authentication.Token',
'tokenField' => $this->getConfig('idField'),
'dataField' => $this->getConfig('identifierKey'),
]);
}
return $this->_identifier;
}
/**
* Authenticate a user using session data.
*
* @param \Psr\Http\Message\ServerRequestInterface $request The request to authenticate with.
* @return \Authentication\Authenticator\ResultInterface
*/
public function authenticate(ServerRequestInterface $request): ResultInterface
{
$sessionKey = $this->getConfig('sessionKey');
/** @var \Cake\Http\Session $session */
$session = $request->getAttribute('session');
$userId = $session->read($sessionKey);
if (!$userId) {
return new Result(null, Result::FAILURE_IDENTITY_NOT_FOUND);
}
$user = $this->getIdentifier()->identify([$this->getConfig('identifierKey') => $userId]);
if (!$user) {
return new Result(null, Result::FAILURE_IDENTITY_NOT_FOUND);
}
return new Result($user, Result::SUCCESS);
}
/**
* @inheritDoc
*/
public function persistIdentity(ServerRequestInterface $request, ResponseInterface $response, $identity): array
{
$sessionKey = $this->getConfig('sessionKey');
/** @var \Cake\Http\Session $session */
$session = $request->getAttribute('session');
if (!$session->check($sessionKey)) {
$session->renew();
$session->write($sessionKey, $identity[$this->getConfig('idField')]);
}
return [
'request' => $request,
'response' => $response,
];
}
/**
* Impersonates a user
*
* @param \Psr\Http\Message\ServerRequestInterface $request The request
* @param \Psr\Http\Message\ResponseInterface $response The response
* @param \ArrayAccess $impersonator User who impersonates
* @param \ArrayAccess $impersonated User impersonated
* @return array
*/
public function impersonate(
ServerRequestInterface $request,
ResponseInterface $response,
ArrayAccess $impersonator,
ArrayAccess $impersonated,
): array {
$sessionKey = $this->getConfig('sessionKey');
$impersonateSessionKey = $this->getConfig('impersonateSessionKey');
/** @var \Cake\Http\Session $session */
$session = $request->getAttribute('session');
if ($session->check($impersonateSessionKey)) {
throw new UnauthorizedException(
'You are impersonating a user already. ' .
'Stop the current impersonation before impersonating another user.',
);
}
$session->write($impersonateSessionKey, $impersonator[$this->getConfig('idField')]);
$session->write($sessionKey, $impersonated[$this->getConfig('idField')]);
$this->setConfig('identify', true);
return [
'request' => $request,
'response' => $response,
];
}
}