]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Settings/TwoFactor/Index.php
Merge pull request #9963 from mexon/mat/support-cid-scheme
[friendica.git] / src / Module / Settings / TwoFactor / Index.php
index 9f02692706a0c72e3343702a731bf914236237f5..81b4639c7823c8a4987ba344d66fdde2a1a5f662 100644 (file)
@@ -1,22 +1,39 @@
 <?php
-
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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\Core\L10n;
-use Friendica\Core\PConfig;
 use Friendica\Core\Renderer;
 use Friendica\Core\Session;
-use Friendica\Model\TwoFactorRecoveryCode;
+use Friendica\DI;
+use Friendica\Security\TwoFactor\Model\AppSpecificPassword;
+use Friendica\Security\TwoFactor\Model\RecoveryCode;
 use Friendica\Model\User;
-use Friendica\Module\BaseSettingsModule;
-use Friendica\Module\Login;
+use Friendica\Module\BaseSettings;
+use Friendica\Module\Security\Login;
 use PragmaRX\Google2FA\Google2FA;
 
-class Index extends BaseSettingsModule
+class Index extends BaseSettings
 {
-       public static function post()
+       public static function post(array $parameters = [])
        {
                if (!local_user()) {
                        return;
@@ -25,84 +42,101 @@ class Index extends BaseSettingsModule
                self::checkFormSecurityTokenRedirectOnError('settings/2fa', 'settings_2fa');
 
                try {
-                       User::getIdFromPasswordAuthentication(local_user(), defaults($_POST, 'password', ''));
+                       User::getIdFromPasswordAuthentication(local_user(), $_POST['password'] ?? '');
 
-                       $has_secret = (bool) PConfig::get(local_user(), '2fa', 'secret');
-                       $verified = PConfig::get(local_user(), '2fa', 'verified');
+                       $has_secret = (bool) DI::pConfig()->get(local_user(), '2fa', 'secret');
+                       $verified = DI::pConfig()->get(local_user(), '2fa', 'verified');
 
-                       switch (defaults($_POST, 'action', '')) {
+                       switch ($_POST['action'] ?? '') {
                                case 'enable':
                                        if (!$has_secret && !$verified) {
                                                $Google2FA = new Google2FA();
 
-                                               PConfig::set(local_user(), '2fa', 'secret', $Google2FA->generateSecretKey(32));
+                                               DI::pConfig()->set(local_user(), '2fa', 'secret', $Google2FA->generateSecretKey(32));
 
-                                               self::getApp()->internalRedirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
+                                               DI::baseUrl()->redirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
                                        }
                                        break;
                                case 'disable':
                                        if ($has_secret) {
-                                               TwoFactorRecoveryCode::deleteForUser(local_user());
-                                               PConfig::delete(local_user(), '2fa', 'secret');
-                                               PConfig::delete(local_user(), '2fa', 'verified');
+                                               RecoveryCode::deleteForUser(local_user());
+                                               DI::pConfig()->delete(local_user(), '2fa', 'secret');
+                                               DI::pConfig()->delete(local_user(), '2fa', 'verified');
                                                Session::remove('2fa');
 
-                                               notice(L10n::t('Two-factor authentication successfully disabled.'));
-                                               self::getApp()->internalRedirect('settings/2fa');
+                                               info(DI::l10n()->t('Two-factor authentication successfully disabled.'));
+                                               DI::baseUrl()->redirect('settings/2fa');
                                        }
                                        break;
                                case 'recovery':
                                        if ($has_secret) {
-                                               self::getApp()->internalRedirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
+                                               DI::baseUrl()->redirect('settings/2fa/recovery?t=' . self::getFormSecurityToken('settings_2fa_password'));
+                                       }
+                                       break;
+                               case 'app_specific':
+                                       if ($has_secret) {
+                                               DI::baseUrl()->redirect('settings/2fa/app_specific?t=' . self::getFormSecurityToken('settings_2fa_password'));
+                                       }
+                                       break;
+                               case 'trusted':
+                                       if ($has_secret) {
+                                               DI::baseUrl()->redirect('settings/2fa/trusted?t=' . self::getFormSecurityToken('settings_2fa_password'));
                                        }
                                        break;
                                case 'configure':
                                        if (!$verified) {
-                                               self::getApp()->internalRedirect('settings/2fa/verify?t=' . self::getFormSecurityToken('settings_2fa_password'));
+                                               DI::baseUrl()->redirect('settings/2fa/verify?t=' . self::getFormSecurityToken('settings_2fa_password'));
                                        }
                                        break;
                        }
                } catch (\Exception $e) {
-                       notice(L10n::t('Wrong Password'));
+                       notice(DI::l10n()->t('Wrong Password'));
                }
        }
 
-       public static function content()
+       public static function content(array $parameters = [])
        {
                if (!local_user()) {
                        return Login::form('settings/2fa');
                }
 
-               parent::content();
+               parent::content($parameters);
 
-               $has_secret = (bool) PConfig::get(local_user(), '2fa', 'secret');
-               $verified = PConfig::get(local_user(), '2fa', 'verified');
+               $has_secret = (bool) DI::pConfig()->get(local_user(), '2fa', 'secret');
+               $verified = DI::pConfig()->get(local_user(), '2fa', 'verified');
 
                return Renderer::replaceMacros(Renderer::getMarkupTemplate('settings/twofactor/index.tpl'), [
                        '$form_security_token' => self::getFormSecurityToken('settings_2fa'),
-                       '$title'               => L10n::t('Two-factor authentication'),
-                       '$help_label'          => L10n::t('Help'),
-                       '$status_title'        => L10n::t('Status'),
-                       '$message'             => L10n::t('<p>Use an application on a mobile device to get two-factor authentication codes when prompted on login.</p>'),
+                       '$title'               => DI::l10n()->t('Two-factor authentication'),
+                       '$help_label'          => DI::l10n()->t('Help'),
+                       '$status_title'        => DI::l10n()->t('Status'),
+                       '$message'             => DI::l10n()->t('<p>Use an application on a mobile device to get two-factor authentication codes when prompted on login.</p>'),
                        '$has_secret'          => $has_secret,
                        '$verified'            => $verified,
 
-                       '$auth_app_label'         => L10n::t('Authenticator app'),
-                       '$app_status'             => $has_secret ? $verified ? L10n::t('Configured') : L10n::t('Not Configured') : L10n::t('Disabled'),
-                       '$not_configured_message' => L10n::t('<p>You haven\'t finished configuring your authenticator app.</p>'),
-                       '$configured_message'     => L10n::t('<p>Your authenticator app is correctly configured.</p>'),
-
-                       '$recovery_codes_title'     => L10n::t('Recovery codes'),
-                       '$recovery_codes_remaining' => L10n::t('Remaining valid codes'),
-                       '$recovery_codes_count'     => TwoFactorRecoveryCode::countValidForUser(local_user()),
-                       '$recovery_codes_message'   => L10n::t('<p>These one-use codes can replace an authenticator app code in case you have lost access to it.</p>'),
-
-                       '$action_title'         => L10n::t('Actions'),
-                       '$password'             => ['password', L10n::t('Current password:'), '', L10n::t('You need to provide your current password to change two-factor authentication settings.'), 'required', 'autofocus'],
-                       '$enable_label'         => L10n::t('Enable two-factor authentication'),
-                       '$disable_label'        => L10n::t('Disable two-factor authentication'),
-                       '$recovery_codes_label' => L10n::t('Show recovery codes'),
-                       '$configure_label'      => L10n::t('Finish app configuration'),
+                       '$auth_app_label'         => DI::l10n()->t('Authenticator app'),
+                       '$app_status'             => $has_secret ? $verified ? DI::l10n()->t('Configured') : DI::l10n()->t('Not Configured') : DI::l10n()->t('Disabled'),
+                       '$not_configured_message' => DI::l10n()->t('<p>You haven\'t finished configuring your authenticator app.</p>'),
+                       '$configured_message'     => DI::l10n()->t('<p>Your authenticator app is correctly configured.</p>'),
+
+                       '$recovery_codes_title'     => DI::l10n()->t('Recovery codes'),
+                       '$recovery_codes_remaining' => DI::l10n()->t('Remaining valid codes'),
+                       '$recovery_codes_count'     => RecoveryCode::countValidForUser(local_user()),
+                       '$recovery_codes_message'   => DI::l10n()->t('<p>These one-use codes can replace an authenticator app code in case you have lost access to it.</p>'),
+
+                       '$app_specific_passwords_title'     => DI::l10n()->t('App-specific passwords'),
+                       '$app_specific_passwords_remaining' => DI::l10n()->t('Generated app-specific passwords'),
+                       '$app_specific_passwords_count'     => AppSpecificPassword::countForUser(local_user()),
+                       '$app_specific_passwords_message'   => DI::l10n()->t('<p>These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.</p>'),
+
+                       '$action_title'         => DI::l10n()->t('Actions'),
+                       '$password'             => ['password', DI::l10n()->t('Current password:'), '', DI::l10n()->t('You need to provide your current password to change two-factor authentication settings.'), DI::l10n()->t('Required'), 'autofocus'],
+                       '$enable_label'         => DI::l10n()->t('Enable two-factor authentication'),
+                       '$disable_label'        => DI::l10n()->t('Disable two-factor authentication'),
+                       '$recovery_codes_label' => DI::l10n()->t('Show recovery codes'),
+                       '$app_specific_passwords_label' => DI::l10n()->t('Manage app-specific passwords'),
+                       '$trusted_browsers_label' => DI::l10n()->t('Manage trusted browsers'),
+                       '$configure_label'      => DI::l10n()->t('Finish app configuration'),
                ]);
        }
 }