1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace ZfcUser\Authentication\Adapter; |
4
|
|
|
|
5
|
|
|
use InvalidArgumentException; |
6
|
|
|
use Zend\Authentication\Result as AuthenticationResult; |
7
|
|
|
use Zend\Crypt\Password\Bcrypt; |
8
|
|
|
use Zend\ServiceManager\ServiceManager; |
9
|
|
|
use Zend\ServiceManager\ServiceManagerAwareInterface; |
10
|
|
|
use Zend\Session\Container as SessionContainer; |
11
|
|
|
use ZfcUser\Authentication\Adapter\AdapterChainEvent as AuthenticationEvent; |
12
|
|
|
use ZfcUser\Entity\UserInterface as UserEntity; |
13
|
|
|
use ZfcUser\Mapper\HydratorInterface as Hydrator; |
14
|
|
|
use ZfcUser\Mapper\UserInterface as UserMapper; |
15
|
|
|
use ZfcUser\Options\AuthenticationOptionsInterface as AuthenticationOptions; |
16
|
|
|
|
17
|
|
|
class Db extends AbstractAdapter implements ServiceManagerAwareInterface |
18
|
|
|
{ |
19
|
|
|
/** |
20
|
|
|
* @var UserMapper |
21
|
|
|
*/ |
22
|
|
|
protected $mapper; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* @var Hydrator |
26
|
|
|
*/ |
27
|
|
|
protected $hydrator; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @var callable |
31
|
|
|
*/ |
32
|
|
|
protected $credentialPreprocessor; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @var ServiceManager |
36
|
|
|
*/ |
37
|
|
|
protected $serviceManager; |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* @var AuthenticationOptions |
41
|
|
|
*/ |
42
|
|
|
protected $options; |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Called when user id logged out |
46
|
|
|
*/ |
47
|
|
|
public function logout() |
48
|
|
|
{ |
49
|
|
|
$this->getStorage()->clear(); |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
public function authenticate(AuthenticationEvent $event) |
53
|
|
|
{ |
54
|
|
|
if ($this->isSatisfied()) { |
55
|
|
|
$storage = $this->getStorage()->read(); |
56
|
|
|
$event->setIdentity($storage['identity']) |
57
|
|
|
->setCode(AuthenticationResult::SUCCESS) |
58
|
|
|
->setMessages(array('Authentication successful.')); |
59
|
|
|
return; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
$identity = $event->getRequest()->getPost()->get('identity'); |
|
|
|
|
63
|
|
|
$credential = $event->getRequest()->getPost()->get('credential'); |
|
|
|
|
64
|
|
|
$credential = $this->preProcessCredential($credential); |
65
|
|
|
$userObject = null; |
66
|
|
|
|
67
|
|
|
// Cycle through the configured identity sources and test each |
68
|
|
|
$fields = $this->getOptions()->getAuthIdentityFields(); |
69
|
|
|
while (!is_object($userObject) && count($fields) > 0) { |
70
|
|
|
$mode = array_shift($fields); |
71
|
|
|
switch ($mode) { |
72
|
|
|
case 'username': |
73
|
|
|
$userObject = $this->getMapper()->findByUsername($identity); |
74
|
|
|
break; |
75
|
|
|
case 'email': |
76
|
|
|
$userObject = $this->getMapper()->findByEmail($identity); |
77
|
|
|
break; |
78
|
|
|
} |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
if (!$userObject) { |
82
|
|
|
$event->setCode(AuthenticationResult::FAILURE_IDENTITY_NOT_FOUND) |
83
|
|
|
->setMessages(array('A record with the supplied identity could not be found.')); |
84
|
|
|
$this->setSatisfied(false); |
85
|
|
|
return false; |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
if ($this->getOptions()->getEnableUserState()) { |
89
|
|
|
// Don't allow user to login if state is not in allowed list |
90
|
|
|
if (!in_array($userObject->getState(), $this->getOptions()->getAllowedLoginStates())) { |
91
|
|
|
$event->setCode(AuthenticationResult::FAILURE_UNCATEGORIZED) |
92
|
|
|
->setMessages(array('A record with the supplied identity is not active.')); |
93
|
|
|
$this->setSatisfied(false); |
94
|
|
|
return false; |
95
|
|
|
} |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
$cryptoService = $this->getHydrator()->getCryptoService(); |
99
|
|
|
if (!$cryptoService->verify($credential, $userObject->getPassword())) { |
100
|
|
|
// Password does not match |
101
|
|
|
$event->setCode(AuthenticationResult::FAILURE_CREDENTIAL_INVALID) |
102
|
|
|
->setMessages(array('Supplied credential is invalid.')); |
103
|
|
|
$this->setSatisfied(false); |
104
|
|
|
return false; |
105
|
|
|
} elseif ($cryptoService instanceof Bcrypt) { |
106
|
|
|
// Update user's password hash if the cost parameter has changed |
107
|
|
|
$this->updateUserPasswordHash($userObject, $credential, $cryptoService); |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
// regen the id |
111
|
|
|
SessionContainer::getDefaultManager()->regenerateId(); |
112
|
|
|
|
113
|
|
|
// Success! |
114
|
|
|
$event->setIdentity($userObject->getId()); |
115
|
|
|
|
116
|
|
|
$this->setSatisfied(true); |
117
|
|
|
$storage = $this->getStorage()->read(); |
118
|
|
|
$storage['identity'] = $event->getIdentity(); |
119
|
|
|
$this->getStorage()->write($storage); |
120
|
|
|
$event->setCode(AuthenticationResult::SUCCESS) |
121
|
|
|
->setMessages(array('Authentication successful.')); |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
protected function updateUserPasswordHash(UserEntity $user, $password, Bcrypt $bcrypt) |
125
|
|
|
{ |
126
|
|
|
$hash = explode('$', $user->getPassword()); |
127
|
|
|
if ($hash[2] === $bcrypt->getCost()) { |
128
|
|
|
return; |
129
|
|
|
} |
130
|
|
|
$user = $this->getHydrator()->hydrate(compact('password'), $user); |
131
|
|
|
$this->getMapper()->update($user); |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
public function preprocessCredential($credential) |
135
|
|
|
{ |
136
|
|
|
if (is_callable($this->credentialPreprocessor)) { |
137
|
|
|
return call_user_func($this->credentialPreprocessor, $credential); |
138
|
|
|
} |
139
|
|
|
return $credential; |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
/** |
143
|
|
|
* getMapper |
144
|
|
|
* |
145
|
|
|
* @return UserMapper |
146
|
|
|
*/ |
147
|
|
|
public function getMapper() |
148
|
|
|
{ |
149
|
|
|
if (!$this->mapper instanceof UserMapper) { |
150
|
|
|
$this->setMapper($this->serviceManager->get('zfcuser_user_mapper')); |
|
|
|
|
151
|
|
|
} |
152
|
|
|
return $this->mapper; |
153
|
|
|
} |
154
|
|
|
|
155
|
|
|
/** |
156
|
|
|
* setMapper |
157
|
|
|
* |
158
|
|
|
* @param UserMapper $mapper |
159
|
|
|
* @return Db |
160
|
|
|
*/ |
161
|
|
|
public function setMapper(UserMapper $mapper) |
162
|
|
|
{ |
163
|
|
|
$this->mapper = $mapper; |
164
|
|
|
return $this; |
165
|
|
|
} |
166
|
|
|
|
167
|
|
|
/** |
168
|
|
|
* Lazy-loads a hydrator from the service manager |
169
|
|
|
* |
170
|
|
|
* @return Hydrator |
171
|
|
|
*/ |
172
|
|
|
public function getHydrator() |
173
|
|
|
{ |
174
|
|
|
if (!$this->hydrator instanceof Hydrator) { |
175
|
|
|
$this->setHydrator($this->serviceManager->get('zfcuser_user_hydrator')); |
|
|
|
|
176
|
|
|
} |
177
|
|
|
return $this->hydrator; |
178
|
|
|
} |
179
|
|
|
|
180
|
|
|
/** |
181
|
|
|
* Set the hydrator |
182
|
|
|
* |
183
|
|
|
* @param Hydrator $hydrator |
184
|
|
|
*/ |
185
|
|
|
public function setHydrator(Hydrator $hydrator) |
186
|
|
|
{ |
187
|
|
|
$this->hydrator = $hydrator; |
188
|
|
|
} |
189
|
|
|
|
190
|
|
|
/** |
191
|
|
|
* Get credentialPreprocessor. |
192
|
|
|
* |
193
|
|
|
* @return callable |
194
|
|
|
*/ |
195
|
|
|
public function getCredentialPreprocessor() |
196
|
|
|
{ |
197
|
|
|
return $this->credentialPreprocessor; |
198
|
|
|
} |
199
|
|
|
|
200
|
|
|
/** |
201
|
|
|
* Set credentialPreprocessor. |
202
|
|
|
* |
203
|
|
|
* @param callable $credentialPreprocessor the value to be set |
204
|
|
|
* @throws InvalidArgumentException when argument is not callable |
205
|
|
|
*/ |
206
|
|
|
public function setCredentialPreprocessor($credentialPreprocessor) |
207
|
|
|
{ |
208
|
|
|
if (!is_callable($credentialPreprocessor)) { |
209
|
|
|
$message = sprintf( |
210
|
|
|
"Credential Preprocessor must be callable, [%s] given", |
211
|
|
|
gettype($credentialPreprocessor) |
212
|
|
|
); |
213
|
|
|
throw new InvalidArgumentException($message); |
214
|
|
|
} |
215
|
|
|
$this->credentialPreprocessor = $credentialPreprocessor; |
216
|
|
|
} |
217
|
|
|
|
218
|
|
|
/** |
219
|
|
|
* Retrieve service manager instance |
220
|
|
|
* |
221
|
|
|
* @return ServiceManager |
222
|
|
|
*/ |
223
|
|
|
public function getServiceManager() |
224
|
|
|
{ |
225
|
|
|
return $this->serviceManager; |
226
|
|
|
} |
227
|
|
|
|
228
|
|
|
/** |
229
|
|
|
* Set service manager instance |
230
|
|
|
* |
231
|
|
|
* @param ServiceManager $locator |
232
|
|
|
* @return void |
233
|
|
|
*/ |
234
|
|
|
public function setServiceManager(ServiceManager $serviceManager) |
235
|
|
|
{ |
236
|
|
|
$this->serviceManager = $serviceManager; |
237
|
|
|
} |
238
|
|
|
|
239
|
|
|
/** |
240
|
|
|
* @param AuthenticationOptions $options |
241
|
|
|
*/ |
242
|
|
|
public function setOptions(AuthenticationOptions $options) |
243
|
|
|
{ |
244
|
|
|
$this->options = $options; |
245
|
|
|
} |
246
|
|
|
|
247
|
|
|
/** |
248
|
|
|
* @return AuthenticationOptions |
249
|
|
|
*/ |
250
|
|
|
public function getOptions() |
251
|
|
|
{ |
252
|
|
|
if (!$this->options instanceof AuthenticationOptions) { |
253
|
|
|
$this->setOptions($this->serviceManager->get('zfcuser_module_options')); |
|
|
|
|
254
|
|
|
} |
255
|
|
|
return $this->options; |
256
|
|
|
} |
257
|
|
|
} |
258
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: