]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Controller/ConfigController.php
Fix tests
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / ConfigController.php
index 5bbe1c7439322787ee96ef8766421adf5e053d63..846e96ff9a5c9807dc5137a1cd504379d2a25c56 100644 (file)
@@ -81,23 +81,23 @@ class ConfigController extends Controller
         $userForm->handleRequest($request);
 
         // `googleTwoFactor` isn't a field within the User entity, we need to define it's value in a different way
-        if (true === $user->isGoogleAuthenticatorEnabled() && false === $userForm->isSubmitted()) {
+        if ($this->getParameter('twofactor_auth') && true === $user->isGoogleAuthenticatorEnabled() && false === $userForm->isSubmitted()) {
             $userForm->get('googleTwoFactor')->setData(true);
         }
 
         if ($userForm->isSubmitted() && $userForm->isValid()) {
             // handle creation / reset of the OTP secret if checkbox changed from the previous state
-            if (true === $userForm->get('googleTwoFactor')->getData() && false === $user->isGoogleAuthenticatorEnabled()) {
-                $secret = $this->get('scheb_two_factor.security.google_authenticator')->generateSecret();
+            if ($this->getParameter('twofactor_auth')) {
+                if (true === $userForm->get('googleTwoFactor')->getData() && false === $user->isGoogleAuthenticatorEnabled()) {
+                    $secret = $this->get('scheb_two_factor.security.google_authenticator')->generateSecret();
 
-                $user->setGoogleAuthenticatorSecret($secret);
-                $user->setEmailTwoFactor(false);
+                    $user->setGoogleAuthenticatorSecret($secret);
+                    $user->setEmailTwoFactor(false);
 
-                $qrCode = $this->get('scheb_two_factor.security.google_authenticator')->getQRContent($user);
-
-                $this->addFlash('OTPSecret', ['code' => $secret, 'qrCode' => $qrCode]);
-            } elseif (false === $userForm->get('googleTwoFactor')->getData() && true === $user->isGoogleAuthenticatorEnabled()) {
-                $user->setGoogleAuthenticatorSecret(null);
+                    $this->addFlash('OtpQrCode', $this->get('scheb_two_factor.security.google_authenticator')->getQRContent($user));
+                } elseif (false === $userForm->get('googleTwoFactor')->getData() && true === $user->isGoogleAuthenticatorEnabled()) {
+                    $user->setGoogleAuthenticatorSecret(null);
+                }
             }
 
             $userManager->updateUser($user, true);