]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Settings/TwoFactor/Recovery.php
Introduce `Response` for Modules to create a testable way for module responses
[friendica.git] / src / Module / Settings / TwoFactor / Recovery.php
index 089283d3324d7cd1627479e1521797418a250450..fb13b8b60d65d11819ea2e63b5181279f14406b6 100644 (file)
@@ -1,12 +1,36 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero 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 Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\Settings\TwoFactor;
 
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
 use Friendica\Core\Renderer;
-use Friendica\DI;
-use Friendica\Model\TwoFactor\RecoveryCode;
+use Friendica\Module\Response;
+use Friendica\Security\TwoFactor\Model\RecoveryCode;
 use Friendica\Module\BaseSettings;
 use Friendica\Module\Security\Login;
+use Friendica\Util\Profiler;
+use Psr\Log\LoggerInterface;
 
 /**
  * // Page 3: 2FA enabled but not verified, show recovery codes
@@ -15,25 +39,32 @@ use Friendica\Module\Security\Login;
  */
 class Recovery extends BaseSettings
 {
-       public static function init(array $parameters = [])
+       /** @var IManagePersonalConfigValues */
+       protected $pConfig;
+
+       public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IManagePersonalConfigValues $pConfig, array $server, array $parameters = [])
        {
+               parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
+
+               $this->pConfig = $pConfig;
+
                if (!local_user()) {
                        return;
                }
 
-               $secret = DI::pConfig()->get(local_user(), '2fa', 'secret');
+               $secret = $this->pConfig->get(local_user(), '2fa', 'secret');
 
                if (!$secret) {
-                       DI::baseUrl()->redirect('settings/2fa');
+                       $this->baseUrl->redirect('settings/2fa');
                }
 
                if (!self::checkFormSecurityToken('settings_2fa_password', 't')) {
-                       notice(DI::l10n()->t('Please enter your password to access this page.'));
-                       DI::baseUrl()->redirect('settings/2fa');
+                       notice($this->t('Please enter your password to access this page.'));
+                       $this->baseUrl->redirect('settings/2fa');
                }
        }
 
-       public static function post(array $parameters = [])
+       protected function post(array $request = [], array $post = [])
        {
                if (!local_user()) {
                        return;
@@ -44,19 +75,19 @@ class Recovery extends BaseSettings
 
                        if ($_POST['action'] == 'regenerate') {
                                RecoveryCode::regenerateForUser(local_user());
-                               notice(DI::l10n()->t('New recovery codes successfully generated.'));
-                               DI::baseUrl()->redirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
+                               info($this->t('New recovery codes successfully generated.'));
+                               $this->baseUrl->redirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
                        }
                }
        }
 
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
                if (!local_user()) {
                        return Login::form('settings/2fa/recovery');
                }
 
-               parent::content($parameters);
+               parent::content();
 
                if (!RecoveryCode::countValidForUser(local_user())) {
                        RecoveryCode::generateForUser(local_user());
@@ -64,20 +95,20 @@ class Recovery extends BaseSettings
 
                $recoveryCodes = RecoveryCode::getListForUser(local_user());
 
-               $verified = DI::pConfig()->get(local_user(), '2fa', 'verified');
+               $verified = $this->pConfig->get(local_user(), '2fa', 'verified');
                
                return Renderer::replaceMacros(Renderer::getMarkupTemplate('settings/twofactor/recovery.tpl'), [
                        '$form_security_token'     => self::getFormSecurityToken('settings_2fa_recovery'),
                        '$password_security_token' => self::getFormSecurityToken('settings_2fa_password'),
 
-                       '$title'              => DI::l10n()->t('Two-factor recovery codes'),
-                       '$help_label'         => DI::l10n()->t('Help'),
-                       '$message'            => DI::l10n()->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>'),
+                       '$title'              => $this->t('Two-factor recovery codes'),
+                       '$help_label'         => $this->t('Help'),
+                       '$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>'),
                        '$recovery_codes'     => $recoveryCodes,
-                       '$regenerate_message' => DI::l10n()->t('When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore.'),
-                       '$regenerate_label'   => DI::l10n()->t('Generate new recovery codes'),
+                       '$regenerate_message' => $this->t('When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore.'),
+                       '$regenerate_label'   => $this->t('Generate new recovery codes'),
                        '$verified'           => $verified,
-                       '$verify_label'       => DI::l10n()->t('Next: Verification'),
+                       '$verify_label'       => $this->t('Next: Verification'),
                ]);
        }
 }