-
Notifications
You must be signed in to change notification settings - Fork 306
/
passwordResetProcess.php
231 lines (199 loc) · 9.87 KB
/
passwordResetProcess.php
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
<?php
/*
Gibbon: the flexible, open school platform
Founded by Ross Parker at ICHK Secondary. Built by Ross Parker, Sandra Kuipers and the Gibbon community (https://gibbonedu.org/about/)
Copyright © 2010, Gibbon Foundation
Gibbon™, Gibbon Education Ltd. (Hong Kong)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use Gibbon\Contracts\Comms\Mailer;
use Gibbon\Data\PasswordPolicy;
use Gibbon\Data\Validator;
use Gibbon\Http\Url;
include './gibbon.php';
// Load site's password policy
/** @var PasswordPolicy */
$passwordPolicy = $container->get(PasswordPolicy::class);
// Create password
$password = $passwordPolicy->generate();
// Sanitize the $_GET and $_POST arrays
$validator = $container->get(Validator::class);
$_GET = $validator->sanitize($_GET);
$_POST = $validator->sanitize($_POST);
//Check email address is not blank
$input = $_GET['input'] ?? ($_POST['email'] ?? '');
$input = filter_var(trim($input), FILTER_SANITIZE_EMAIL);
$step = $_GET['step'] ?? '';
$URL = Url::fromRoute('passwordReset');
$URLSuccess1 = Url::fromRoute();
if ($input == '' or ($step != 1 and $step != 2)) {
header("Location: {$URL->withReturn('error0')}");
}
//Otherwise proceed
else {
try {
$data = array('email' => $input, 'username' => $input);
$sql = "SELECT gibbonPersonID, email, username, canLogin, gibbonRoleIDPrimary FROM gibbonPerson WHERE (email=:email OR username=:username) AND gibbonPerson.status='Full' AND NOT email=''";
$result = $connection2->prepare($sql);
$result->execute($data);
} catch (PDOException $e) {
header("Location: {$URL->withReturn('error2')}");
exit();
}
if ($result->rowCount() != 1) {
header("Location: {$URL->withReturn('error0')}");
exit();
} else {
$row = $result->fetch();
// Insufficient privileges to login
if ($row['canLogin'] != 'Y') {
header("Location: {$URL->withReturn('fail2')}");
exit();
}
// Get primary role info
$data = array('gibbonRoleIDPrimary' => $row['gibbonRoleIDPrimary']);
$sql = "SELECT * FROM gibbonRole WHERE gibbonRoleID=:gibbonRoleIDPrimary";
$role = $pdo->selectOne($sql, $data);
// Login not allowed for this role
if (!empty($role['canLoginRole']) && $role['canLoginRole'] != 'Y') {
$URL .= '&return=fail9';
header("Location: {$URL}");
exit;
}
$gibbonPersonID = $row['gibbonPersonID'];
$email = $row['email'];
$username = $row['username'];
if ($step == 1) { //This is the request phase
// Use password policy to generate random string
$randStrGenerator = new PasswordPolicy(true, true, false, 40);
//Generate key
$key = $randStrGenerator->generate();
//Try to delete other recors for this user
$data = array('gibbonPersonID' => $gibbonPersonID);
$sql = "DELETE FROM gibbonPersonReset WHERE gibbonPersonID=:gibbonPersonID";
$result = $connection2->prepare($sql);
$result->execute($data);
//Insert key record
try {
$data = array('gibbonPersonID' => $gibbonPersonID, 'key' => $key);
$sql = "INSERT INTO gibbonPersonReset SET gibbonPersonID=:gibbonPersonID, `key`=:key";
$result = $connection2->prepare($sql);
$result->execute($data);
} catch (PDOException $e) {
header("Location: {$URL->withReturn('error2')}");
exit();
}
$gibbonPersonResetID = str_pad($connection2->lastInsertID(), 12, '0', STR_PAD_LEFT);
//Send email
$subject = $session->get('organisationNameShort').' '.__('Gibbon Password Reset');
$body = sprintf(__('A password reset request has been initiated for account %1$s, which is registered to this email address.%2$sIf you did not initiate this request, please ignore this email.%2$sIf you do wish to reset your password, please use the link below to access the reset form:%2$s%3$s%2$s%4$s'), $username, "\n\n", '', '');
$mail = $container->get(Mailer::class);
$mail->AddAddress($email);
if ($session->exists('organisationEmail') && $session->get('organisationEmail') != '') {
$mail->SetFrom($session->get('organisationEmail'), $session->get('organisationName'));
} else {
$mail->SetFrom($session->get('organisationAdministratorEmail'), $session->get('organisationName'));
}
$mail->Subject = $subject;
$mail->renderBody('mail/email.twig.html', [
'title' => __('Password Reset'),
'body' => nl2br(trim($body, "\n")),
'button' => [
'url' => Url::fromRoute('passwordReset')->withAbsoluteUrl()->withQueryParams([
'input' => $input,
'step' => 2,
'gibbonPersonResetID' => $gibbonPersonResetID,
'key' => $key,
]),
'external' => true,
'text' => __('Click Here'),
],
]);
if ($mail->Send()) {
header("Location: {$URL->withReturn('success0')}");
} else {
header("Location: {$URL->withReturn('error3')}");
}
}
else { //This is the confirmation/reset phase
//Get URL parameters
$input = $_GET['input'] ?? '';
$key = $_GET['key'] ?? '';
$gibbonPersonResetID = $_GET['gibbonPersonResetID'] ?? '';
//Verify authenticity of this request and check it is fresh (within 48 hours)
try {
$data = array('key' => $key, 'gibbonPersonResetID' => $gibbonPersonResetID);
$sql = "SELECT * FROM gibbonPersonReset WHERE `key`=:key AND gibbonPersonResetID=:gibbonPersonResetID AND (timestamp > DATE_SUB(now(), INTERVAL 2 DAY))";
$result = $connection2->prepare($sql);
$result->execute($data);
} catch (PDOException $e) {
header("Location: {$URL->withReturn('error2')}");
exit();
}
if ($result->rowCount() != 1) {
header("Location: {$URL->withReturn('error2')}");
exit();
} else {
$row = $result->fetch();
$gibbonPersonID = $row['gibbonPersonID'];
$passwordNew = $_POST['passwordNew'] ?? '';
$passwordConfirm = $_POST['passwordConfirm'] ?? '';
//Check passwords are not blank
if ($passwordNew == '' or $passwordConfirm == '') {
header("Location: {$URL->withReturn('error1')}");
exit();
} else {
//Check that new password is not same as old password
if ($password == $passwordNew) {
header("Location: {$URL->withReturn('error7')}");
exit();
} else {
/** @var PasswordPolicy */
$passwordPolicies = $container->get(PasswordPolicy::class);
//Check strength of password
if (!$passwordPolicies->validate($passwordNew)) {
header("Location: {$URL->withReturn('error6')}");
exit();
} else {
//Check new passwords match
if ($passwordNew != $passwordConfirm) {
header("Location: {$URL->withReturn('error5')}");
exit();
} else {
//Update password
$salt = getSalt();
$passwordStrong = hash('sha256', $salt.$passwordNew);
try {
$data = array('passwordStrong' => $passwordStrong, 'salt' => $salt, 'gibbonPersonID' => $gibbonPersonID);
$sql = "UPDATE gibbonPerson SET passwordStrong=:passwordStrong, passwordStrongSalt=:salt, passwordForceReset='N', failCount=0 WHERE gibbonPersonID=:gibbonPersonID";
$result = $connection2->prepare($sql);
$result->execute($data);
} catch (PDOException $e) {
header("Location: {$URL->withReturn('error2')}");
exit();
}
//Remove requests for this person
$data = array('gibbonPersonID' => $gibbonPersonID);
$sql = "DELETE FROM gibbonPersonReset WHERE gibbonPersonID=:gibbonPersonID";
$result = $connection2->prepare($sql);
$result->execute($data);
//Return
header("Location: {$URL->withReturn('success1')}");
exit();
}
}
}
}
}
}
}
}