-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractAuth.php
More file actions
122 lines (103 loc) · 2.8 KB
/
AbstractAuth.php
File metadata and controls
122 lines (103 loc) · 2.8 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
<?php
/**
* @author : Jakiboy
* @package : FloatPHP
* @subpackage : Kernel Component
* @version : 1.5.x
* @copyright : (c) 2018 - 2025 Jihad Sinnaour <me@jihadsinnaour.com>
* @link : https://floatphp.com
* @license : MIT
*
* This file is a part of FloatPHP Framework.
*/
declare(strict_types=1);
namespace FloatPHP\Kernel;
use FloatPHP\Interfaces\Kernel\AuthenticationInterface;
abstract class AbstractAuth extends BaseController
{
/**
* Login.
*
* @access public
* @return void
*/
abstract public function login();
/**
* Check whether current user is authenticated.
*
* @access public
* @return bool
*/
public function isAuthenticated() : bool
{
if ( $this->getSession($this->getSessionId()) ) {
return $this->isValidSession();
}
return false;
}
/**
* Authenticate user.
*
* @access protected
* @param AuthenticationInterface $auth
* @param array $args
* @return void
*/
protected function authenticate(AuthenticationInterface $auth, array $args = []) : void
{
// Security
$this->verifyRequest(force: true);
// Get authentication
$args = $this->mergeArray([
'user' => $this->getRequest('user'),
'pswd' => $this->getRequest('pswd')
], $args);
$user = (string)$args['user'];
$pswd = (string)$args['pswd'];
// Authenticate override
$this->doAction('authenticate', $user);
// Verify authentication
if ( ($data = $auth->getUser($user)) ) {
// Check password
if ( $this->isPassword($pswd, $data['password']) ) {
// Check password format
if ( $this->applyFilter('auth-strong-pswd', false) ) {
if ( !$this->isStrongPassword($pswd) ) {
// Authenticate failed
$msg = $this->applyFilter('auth-pswd-msg', 'Strong password required');
$msg = $this->translate($msg);
$this->setResponse($msg, [], 'warning');
}
}
// Register session
$this->registerSession(
$this->getAccessExpire()
);
// Check valid session
if ( $this->isValidSession() ) {
if ( $auth->hasSecret($user) ) {
$this->setSession('--verify', $user);
// Authenticate accepted
$msg = $this->applyFilter('auth-accepted-msg', 'Accepted');
$msg = $this->translate($msg);
$this->setResponse($msg, [], 'accepted', 202);
} else {
$this->setSession($auth->getKey(), $data[$auth->getKey()]);
// Authenticate success
$msg = $this->applyFilter('auth-success-msg', 'Connected');
$msg = $this->translate($msg);
$this->setResponse($msg);
}
} else {
$this->endSession();
}
}
}
// Authenticate failed override
$this->doAction('auth-failed', $user);
// Authenticate failed
$msg = $this->applyFilter('auth-error-msg', 'Authentication failed');
$msg = $this->translate($msg);
$this->setResponse($msg, [], 'error', 401);
}
}