Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
tao_install_checks_PasswordConformity | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 1 |
check | |
0.00% |
0 / 13 |
|
0.00% |
0 / 1 |
6 |
1 | <?php |
2 | |
3 | /* |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2015 |
19 | * |
20 | */ |
21 | |
22 | use oat\generis\model\user\PasswordConstraintsService; |
23 | |
24 | class tao_install_checks_PasswordConformity extends common_configuration_Component |
25 | { |
26 | /** |
27 | * @return common_configuration_Report |
28 | */ |
29 | public function check() |
30 | { |
31 | $content = json_decode(file_get_contents('php://input'), true); |
32 | |
33 | if (PasswordConstraintsService::singleton()->validate($content['value']['password'])) { |
34 | $report = new common_configuration_Report( |
35 | common_configuration_Report::VALID, |
36 | 'Password is strong enough', |
37 | $this |
38 | ); |
39 | } else { |
40 | $report = new common_configuration_Report( |
41 | common_configuration_Report::INVALID, |
42 | implode("</br>", PasswordConstraintsService::singleton()->getErrors()), |
43 | $this |
44 | ); |
45 | } |
46 | |
47 | return $report; |
48 | } |
49 | } |