-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthentication.php
More file actions
400 lines (339 loc) · 8.85 KB
/
Authentication.php
File metadata and controls
400 lines (339 loc) · 8.85 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
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
<?php
namespace Neuron\Cms\Services\Auth;
use Neuron\Cms\Auth\SessionManager;
use Neuron\Cms\Auth\PasswordHasher;
use Neuron\Cms\Models\User;
use Neuron\Cms\Repositories\IUserRepository;
use DateTimeImmutable;
use DateInterval;
use Neuron\Cms\Enums\UserRole;
/**
* Authentication service.
*
* Handles user authentication, session management, and remember me functionality.
*
* @package Neuron\Cms\Services\Auth
*/
class Authentication implements IAuthenticationService
{
private IUserRepository $_userRepository;
private SessionManager $_sessionManager;
private PasswordHasher $_passwordHasher;
private int $_maxLoginAttempts = 5;
private int $_lockoutDuration = 15; // minutes
public function __construct(
IUserRepository $userRepository,
SessionManager $sessionManager,
PasswordHasher $passwordHasher
)
{
$this->_userRepository = $userRepository;
$this->_sessionManager = $sessionManager;
$this->_passwordHasher = $passwordHasher;
}
/**
* Attempt to authenticate a user
*
* Accepts either username or email address for login.
* Automatically detects if the input is an email and searches accordingly.
*/
public function attempt( string $username, string $password, bool $remember = false ): bool
{
// Detect if input is an email address
$isEmail = filter_var( $username, FILTER_VALIDATE_EMAIL );
// Try to find user by email or username
if( $isEmail )
{
$user = $this->_userRepository->findByEmail( $username );
}
else
{
$user = $this->_userRepository->findByUsername( $username );
}
if( !$user )
{
// Perform dummy hash to normalize timing
$this->_passwordHasher->verify( $password, '$2y$10$dummyhashtopreventtimingattack1234567890' );
// Emit login failed event
\Neuron\Application\CrossCutting\Event::emit( new \Neuron\Cms\Events\UserLoginFailedEvent(
$username,
$_SERVER['REMOTE_ADDR'] ?? 'unknown',
microtime( true ),
'user_not_found'
) );
return false;
}
// Check if account is locked
if( $user->isLockedOut() )
{
// Emit login failed event
\Neuron\Application\CrossCutting\Event::emit( new \Neuron\Cms\Events\UserLoginFailedEvent(
$username,
$_SERVER['REMOTE_ADDR'] ?? 'unknown',
microtime( true ),
'account_locked'
) );
return false;
}
// Check if account is active
if( !$user->isActive() )
{
// Emit login failed event
\Neuron\Application\CrossCutting\Event::emit( new \Neuron\Cms\Events\UserLoginFailedEvent(
$username,
$_SERVER['REMOTE_ADDR'] ?? 'unknown',
microtime( true ),
'account_inactive'
) );
return false;
}
// Verify password
if( !$this->validateCredentials( $user, $password ) )
{
// Atomically increment failed login attempts to avoid race condition
$newFailedAttempts = $this->_userRepository->incrementFailedLoginAttempts( $user->getId() );
// Lock account if too many failed attempts
if( $newFailedAttempts >= $this->_maxLoginAttempts )
{
$lockedUntil = (new DateTimeImmutable())->add( new DateInterval( "PT{$this->_lockoutDuration}M" ) );
$this->_userRepository->setLockedUntil( $user->getId(), $lockedUntil );
}
// Emit login failed event
\Neuron\Application\CrossCutting\Event::emit( new \Neuron\Cms\Events\UserLoginFailedEvent(
$username,
$_SERVER['REMOTE_ADDR'] ?? 'unknown',
microtime( true ),
'invalid_credentials'
) );
return false;
}
// Successful login - atomically reset failed attempts
$this->_userRepository->resetFailedLoginAttempts( $user->getId() );
// Refresh user from database to get updated failed_login_attempts
$user = $this->_userRepository->findById( $user->getId() );
// Update last login time and potentially rehash password
$user->setLastLoginAt( new DateTimeImmutable() );
// Check if password needs rehashing
if( $this->_passwordHasher->needsRehash( $user->getPasswordHash() ) )
{
$user->setPasswordHash( $this->_passwordHasher->hash( $password ) );
}
$this->_userRepository->update( $user );
// Log the user in
$this->login( $user, $remember );
return true;
}
/**
* Log a user in
*/
public function login( User $user, bool $remember = false ): void
{
// Regenerate session ID to prevent session fixation
$this->_sessionManager->regenerate();
// Store user ID in session
$this->_sessionManager->set( 'user_id', $user->getId() );
$this->_sessionManager->set( 'user_role', $user->getRole() );
$this->_sessionManager->set( 'login_time', microtime( true ) );
// Handle remember me
if( $remember )
{
$this->setRememberToken( $user );
}
// Emit user login event
\Neuron\Application\CrossCutting\Event::emit( new \Neuron\Cms\Events\UserLoginEvent(
$user,
$_SERVER['REMOTE_ADDR'] ?? 'unknown',
microtime( true )
) );
}
/**
* Log the current user out
*/
public function logout(): void
{
$user = null;
$sessionDuration = 0.0;
// Clear remember token if exists
if( $this->check() )
{
$user = $this->user();
if( $user )
{
$user->setRememberToken( null );
$this->_userRepository->update( $user );
// Calculate session duration
$loginTime = $this->_sessionManager->get( 'login_time' );
if( $loginTime )
{
$sessionDuration = microtime( true ) - $loginTime;
}
}
}
// Destroy session
$this->_sessionManager->destroy();
// Delete remember me cookie if exists
if( isset( $_COOKIE['remember_token'] ) )
{
setcookie( 'remember_token', '', time() - 3600, '/', '', true, true );
}
// Emit user logout event
if( $user )
{
\Neuron\Application\CrossCutting\Event::emit( new \Neuron\Cms\Events\UserLogoutEvent(
$user,
$sessionDuration
) );
}
}
/**
* Check if a user is authenticated
*/
public function check(): bool
{
// Check session first
if( $this->_sessionManager->has( 'user_id' ) )
{
return true;
}
// Check remember me cookie
if( isset( $_COOKIE['remember_token'] ) )
{
return $this->loginUsingRememberToken( $_COOKIE['remember_token'] );
}
return false;
}
/**
* Get the currently authenticated user
*/
public function user(): ?User
{
if( !$this->check() )
{
return null;
}
$userId = $this->_sessionManager->get( 'user_id' );
if( !$userId )
{
return null;
}
$user = $this->_userRepository->findById( $userId );
if( !$user )
{
// Clear stale session if user no longer exists
$this->logout();
}
return $user;
}
/**
* Get the current user's ID
*/
public function id(): ?int
{
if( !$this->check() )
{
return null;
}
return $this->_sessionManager->get( 'user_id' );
}
/**
* Validate user credentials
*/
public function validateCredentials( User $user, string $password ): bool
{
return $this->_passwordHasher->verify( $password, $user->getPasswordHash() );
}
/**
* Set remember me token for user
*/
private function setRememberToken( User $user ): void
{
// Generate secure random token
$token = bin2hex( random_bytes( 32 ) );
// Hash the token before storing
$hashedToken = hash( 'sha256', $token );
// Store hashed token in user record
$user->setRememberToken( $hashedToken );
$this->_userRepository->update( $user );
// Set cookie with plain token (30 days)
setcookie(
'remember_token',
$token,
time() + (30 * 24 * 60 * 60),
'/',
'',
true, // Secure
true // HTTPOnly
);
}
/**
* Attempt to log in using remember token
*/
public function loginUsingRememberToken( string $token ): bool
{
// Hash the token to compare with stored hash
$hashedToken = hash( 'sha256', $token );
$user = $this->_userRepository->findByRememberToken( $hashedToken );
if( !$user || !$user->isActive() )
{
return false;
}
// Log the user in
$this->login( $user, true );
return true;
}
/**
* Set maximum login attempts before lockout
*/
public function setMaxLoginAttempts( int $maxLoginAttempts ): self
{
$this->_maxLoginAttempts = $maxLoginAttempts;
return $this;
}
/**
* Set lockout duration in minutes
*/
public function setLockoutDuration( int $lockoutDuration ): self
{
$this->_lockoutDuration = $lockoutDuration;
return $this;
}
/**
* Check if user has a specific role
*/
public function hasRole( string $role ): bool
{
$user = $this->user();
return $user && $user->getRole() === $role;
}
/**
* Check if user is admin
*/
public function isAdmin(): bool
{
return $this->hasRole( UserRole::ADMIN->value );
}
/**
* Check if user is editor or higher
*/
public function isEditorOrHigher(): bool
{
$user = $this->user();
if( !$user )
{
return false;
}
return in_array( $user->getRole(), [UserRole::ADMIN->value, UserRole::EDITOR->value] );
}
/**
* Check if user is author or higher
*/
public function isAuthorOrHigher(): bool
{
$user = $this->user();
if( !$user )
{
return false;
}
return in_array( $user->getRole(), [UserRole::ADMIN->value, UserRole::EDITOR->value, UserRole::AUTHOR->value] );
}
}