]> git.mxchange.org Git - friendica.git/blob - src/Module/Settings/TwoFactor/Recovery.php
Move Core\Session::set() to DI::session()->set()
[friendica.git] / src / Module / Settings / TwoFactor / Recovery.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Settings\TwoFactor;
23
24 use Friendica\App;
25 use Friendica\Core\L10n;
26 use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
27 use Friendica\Core\Renderer;
28 use Friendica\DI;
29 use Friendica\Module\Response;
30 use Friendica\Security\TwoFactor\Model\RecoveryCode;
31 use Friendica\Module\BaseSettings;
32 use Friendica\Module\Security\Login;
33 use Friendica\Util\Profiler;
34 use Psr\Log\LoggerInterface;
35
36 /**
37  * // Page 3: 2FA enabled but not verified, show recovery codes
38  *
39  * @package Friendica\Module\TwoFactor
40  */
41 class Recovery extends BaseSettings
42 {
43         /** @var IManagePersonalConfigValues */
44         protected $pConfig;
45
46         public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IManagePersonalConfigValues $pConfig, array $server, array $parameters = [])
47         {
48                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
49
50                 $this->pConfig = $pConfig;
51
52                 if (!local_user()) {
53                         return;
54                 }
55
56                 $secret = $this->pConfig->get(local_user(), '2fa', 'secret');
57
58                 if (!$secret) {
59                         $this->baseUrl->redirect('settings/2fa');
60                 }
61
62                 if (!self::checkFormSecurityToken('settings_2fa_password', 't')) {
63                         DI::sysmsg()->addNotice($this->t('Please enter your password to access this page.'));
64                         $this->baseUrl->redirect('settings/2fa');
65                 }
66         }
67
68         protected function post(array $request = [])
69         {
70                 if (!local_user()) {
71                         return;
72                 }
73
74                 if (!empty($_POST['action'])) {
75                         self::checkFormSecurityTokenRedirectOnError('settings/2fa/recovery', 'settings_2fa_recovery');
76
77                         if ($_POST['action'] == 'regenerate') {
78                                 RecoveryCode::regenerateForUser(local_user());
79                                 DI::sysmsg()->addInfo($this->t('New recovery codes successfully generated.'));
80                                 $this->baseUrl->redirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
81                         }
82                 }
83         }
84
85         protected function content(array $request = []): string
86         {
87                 if (!local_user()) {
88                         return Login::form('settings/2fa/recovery');
89                 }
90
91                 parent::content();
92
93                 if (!RecoveryCode::countValidForUser(local_user())) {
94                         RecoveryCode::generateForUser(local_user());
95                 }
96
97                 $recoveryCodes = RecoveryCode::getListForUser(local_user());
98
99                 $verified = $this->pConfig->get(local_user(), '2fa', 'verified');
100                 
101                 return Renderer::replaceMacros(Renderer::getMarkupTemplate('settings/twofactor/recovery.tpl'), [
102                         '$form_security_token'     => self::getFormSecurityToken('settings_2fa_recovery'),
103                         '$password_security_token' => self::getFormSecurityToken('settings_2fa_password'),
104
105                         '$title'              => $this->t('Two-factor recovery codes'),
106                         '$help_label'         => $this->t('Help'),
107                         '$message'            => $this->t('<p>Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.</p><p><strong>Put these in a safe spot!</strong> If you lose your device and don’t have the recovery codes you will lose access to your account.</p>'),
108                         '$recovery_codes'     => $recoveryCodes,
109                         '$regenerate_message' => $this->t('When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore.'),
110                         '$regenerate_label'   => $this->t('Generate new recovery codes'),
111                         '$verified'           => $verified,
112                         '$verify_label'       => $this->t('Next: Verification'),
113                 ]);
114         }
115 }