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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Account\Authenticate;
use Birke\Rememberme\Authenticator as RememberMe;
use Birke\Rememberme\Storage\PDOStorage as RememberMePDO;
use Birke\Rememberme\Triplet as RememberMeTriplet;
use Illuminate\Database\Capsule\Manager as Capsule;
use UserFrosting\Session\Session;
use UserFrosting\Sprinkle\Account\Authenticate\Exception\AccountDisabledException;
use UserFrosting\Sprinkle\Account\Authenticate\Exception\AccountInvalidException;
use UserFrosting\Sprinkle\Account\Authenticate\Exception\AccountNotVerifiedException;
use UserFrosting\Sprinkle\Account\Authenticate\Exception\AuthCompromisedException;
use UserFrosting\Sprinkle\Account\Authenticate\Exception\AuthExpiredException;
use UserFrosting\Sprinkle\Account\Authenticate\Exception\InvalidCredentialsException;
use UserFrosting\Sprinkle\Account\Database\Models\User;
use UserFrosting\Sprinkle\Account\Facades\Password;
use UserFrosting\Sprinkle\Core\Util\ClassMapper;
/**
* Handles authentication tasks.
*
* @author Alex Weissman (https://alexanderweissman.com)
* Partially inspired by Laravel's Authentication component: https://github.com/laravel/framework/blob/5.3/src/Illuminate/Auth/SessionGuard.php
*/
class Authenticator
{
/**
* @var ClassMapper
*/
protected $classMapper;
/**
* @var Session
*/
protected $session;
/**
* @var Config
*/
protected $config;
/**
* @var Cache
*/
protected $cache;
/**
* @var bool
*/
protected $loggedOut = false;
/**
* @var RememberMePDO
*/
protected $rememberMeStorage;
/**
* @var RememberMe
*/
protected $rememberMe;
/**
* @var User
*/
protected $user;
/**
* Indicates if the user was authenticated via a rememberMe cookie.
*
* @var bool
*/
protected $viaRemember = false;
/**
* Create a new Authenticator object.
*
* @param ClassMapper $classMapper Maps generic class identifiers to specific class names.
* @param Session $session The session wrapper object that will store the user's id.
* @param Config $config Config object that contains authentication settings.
* @param mixed $cache Cache service instance
*/
public function __construct(ClassMapper $classMapper, Session $session, $config, $cache)
{
$this->classMapper = $classMapper;
$this->session = $session;
$this->config = $config;
$this->cache = $cache;
// Initialize RememberMe storage
$this->rememberMeStorage = new RememberMePDO($this->config['remember_me.table']);
// Get the actual PDO instance from Eloquent
$pdo = Capsule::connection()->getPdo();
$this->rememberMeStorage->setConnection($pdo);
// Set up RememberMe
$this->rememberMe = new RememberMe($this->rememberMeStorage);
// Set cookie name
$cookieName = $this->config['session.name'] . '-' . $this->config['remember_me.cookie.name'];
$this->rememberMe->getCookie()->setName($cookieName);
// Change cookie path
$this->rememberMe->getCookie()->setPath($this->config['remember_me.session.path']);
// Set expire time, if specified
if ($this->config->has('remember_me.expire_time') && ($this->config->has('remember_me.expire_time') != null)) {
$this->rememberMe->getCookie()->setExpireTime($this->config['remember_me.expire_time']);
}
$this->user = null;
$this->viaRemember = false;
}
/**
* Attempts to authenticate a user based on a supplied identity and password.
*
* If successful, the user's id is stored in session.
*/
public function attempt($identityColumn, $identityValue, $password, $rememberMe = false)
{
// Try to load the user, using the specified conditions
$user = $this->classMapper->staticMethod('user', 'where', $identityColumn, $identityValue)->first();
if (!$user) {
throw new InvalidCredentialsException();
}
// Check that the user has a password set (so, rule out newly created accounts without a password)
if (!$user->password) {
throw new InvalidCredentialsException();
}
// Check that the user's account is enabled
if ($user->flag_enabled == 0) {
throw new AccountDisabledException();
}
// Check that the user's account is verified (if verification is required)
if ($this->config['site.registration.require_email_verification'] && $user->flag_verified == 0) {
throw new AccountNotVerifiedException();
}
// Here is my password. May I please assume the identify of this user now?
if (Password::verify($password, $user->password)) {
$this->login($user, $rememberMe);
return $user;
} else {
// We know the password is at fault here (as opposed to the identity), but lets not give away the combination in case of someone bruteforcing
throw new InvalidCredentialsException();
}
}
/**
* Determine if the current user is authenticated.
*
* @return bool
*/
public function check()
{
return !is_null($this->user());
}
/**
* Determine if the current user is a guest (unauthenticated).
*
* @return bool
*/
public function guest()
{
return !$this->check();
}
/**
* Process an account login request.
*
* This method logs in the specified user, allowing the client to assume the user's identity for the duration of the session.
* @param User $user The user to log in.
* @param bool $rememberMe Set to true to make this a "persistent session", i.e. one that will re-login even after the session expires.
* @todo Figure out a way to update the currentUser service to reflect the logged-in user *immediately* in the service provider.
* As it stands, the currentUser service will still reflect a "guest user" for the remainder of the request.
*/
public function login($user, $rememberMe = false)
{
$oldId = session_id();
$this->session->regenerateId(true);
// Since regenerateId deletes the old session, we'll do the same in cache
$this->flushSessionCache($oldId);
// If the user wants to be remembered, create Rememberme cookie
if ($rememberMe) {
$this->rememberMe->createCookie($user->id);
} else {
$this->rememberMe->clearCookie();
}
// Assume identity
$key = $this->config['session.keys.current_user_id'];
$this->session[$key] = $user->id;
// Set auth mode
$this->viaRemember = false;
// User login actions
$user->onLogin();
}
/**
* Processes an account logout request.
*
* Logs the currently authenticated user out, destroying the PHP session and clearing the persistent session.
* This can optionally remove persistent sessions across all browsers/devices, since there can be a "RememberMe" cookie
* and corresponding database entries in multiple browsers/devices. See http://jaspan.com/improved_persistent_login_cookie_best_practice.
*
* @param bool $complete If set to true, will ensure that the user is logged out from *all* browsers on all devices.
*/
public function logout($complete = false)
{
$currentUserId = $this->session->get($this->config['session.keys.current_user_id']);
// This removes all of the user's persistent logins from the database
if ($complete) {
$this->storage->cleanAllTriplets($currentUserId);
}
// Clear the rememberMe cookie
$this->rememberMe->clearCookie();
// User logout actions
if ($currentUserId) {
$currentUser = $this->classMapper->staticMethod('user', 'find', $currentUserId);
if ($currentUser) {
$currentUser->onLogout();
}
}
$this->user = null;
$this->loggedOut = true;
$oldId = session_id();
// Completely destroy the session
$this->session->destroy();
// Since regenerateId deletes the old session, we'll do the same in cache
$this->flushSessionCache($oldId);
// Restart the session service
$this->session->start();
}
/**
* Try to get the currently authenticated user, returning a guest user if none was found.
*
* Tries to re-establish a session for "remember-me" users who have been logged out due to an expired session.
* @return User|null
* @throws AuthExpiredException
* @throws AuthCompromisedException
* @throws AccountInvalidException
* @throws AccountDisabledException
*/
public function user()
{
$user = null;
if (!$this->loggedOut) {
// Return any cached user
if (!is_null($this->user)) {
return $this->user;
}
// If this throws a PDOException we catch it and return null than allowing the exception to propagate.
// This is because the error handler relies on Twig, which relies on a Twig Extension, which relies on the global current_user variable.
// So, we really don't want this method to throw any database exceptions.
try {
// Now, check to see if we have a user in session
$user = $this->loginSessionUser();
// If no user was found in the session, try to login via RememberMe cookie
if (!$user) {
$user = $this->loginRememberedUser();
}
} catch (\PDOException $e) {
$user = null;
}
}
return $this->user = $user;
}
/**
* Determine whether the current user was authenticated using a remember me cookie.
*
* This function is useful when users are performing sensitive operations, and you may want to force them to re-authenticate.
* @return bool
*/
public function viaRemember()
{
return $this->viaRemember;
}
/**
* Attempt to log in the client from their rememberMe token (in their cookie).
*
* @return User|bool If successful, the User object of the remembered user. Otherwise, return false.
* @throws AuthCompromisedException The client attempted to log in with an invalid rememberMe token.
*/
protected function loginRememberedUser()
{
/** @var \Birke\Rememberme\LoginResult $loginResult */
$loginResult = $this->rememberMe->login();
if ($loginResult->isSuccess()) {
// Update in session
$this->session[$this->config['session.keys.current_user_id']] = $loginResult->getCredential();
// There is a chance that an attacker has stolen the login token,
// so we store the fact that the user was logged in via RememberMe (instead of login form)
$this->viaRemember = true;
} else {
// If $rememberMe->login() was not successfull, check if the token was invalid as well. This means the cookie was stolen.
if ($loginResult->hasPossibleManipulation()) {
throw new AuthCompromisedException();
}
}
return $this->validateUserAccount($loginResult->getCredential());
}
/**
* Attempt to log in the client from the session.
*
* @return User|null If successful, the User object of the user in session. Otherwise, return null.
* @throws AuthExpiredException The client attempted to use an expired rememberMe token.
*/
protected function loginSessionUser()
{
$userId = $this->session->get($this->config['session.keys.current_user_id']);
// If a user_id was found in the session, check any rememberMe cookie that was submitted.
// If they submitted an expired rememberMe cookie, then we need to log them out.
if ($userId) {
if (!$this->validateRememberMeCookie()) {
$this->logout();
throw new AuthExpiredException();
}
}
return $this->validateUserAccount($userId);
}
/**
* Determine if the cookie contains a valid rememberMe token.
*
* @return bool
*/
protected function validateRememberMeCookie()
{
$cookieValue = $this->rememberMe->getCookie()->getValue();
if (!$cookieValue) {
return true;
}
$triplet = RememberMeTriplet::fromString($cookieValue);
if (!$triplet->isValid()) {
return false;
}
return true;
}
/**
* Tries to load the specified user by id from the database.
*
* Checks that the account is valid and enabled, throwing an exception if not.
* @param int $userId
* @return User|null
* @throws AccountInvalidException
* @throws AccountDisabledException
*/
protected function validateUserAccount($userId)
{
if ($userId) {
$user = $this->classMapper->staticMethod('user', 'find', $userId);
// If the user doesn't exist any more, throw an exception.
if (!$user) {
throw new AccountInvalidException();
}
// If the user has been disabled since their last request, throw an exception.
if (!$user->flag_enabled) {
throw new AccountDisabledException();
}
return $user;
} else {
return null;
}
}
/**
* Flush the cache associated with a session id
*
* @param string $id The session id
* @return bool
*/
public function flushSessionCache($id)
{
return $this->cache->tags('_s' . $id)->flush();
}
}
|