]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Controller/ConfigController.php
Merge remote-tracking branch 'origin/master' into 2.2
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / ConfigController.php
index 70a641f7a2c62be68a013699ca45406325e88d7b..abd35c028b8aa3681e552ef62557d21eca514ad3 100644 (file)
@@ -256,33 +256,36 @@ class ConfigController extends Controller
         return $config;
     }
 
-     /**
-      * Delete account for current user.
-      *
-      * @Route("/account/delete", name="delete_account")
-      *
-      * @throws AccessDeniedHttpException
-      *
-      * @return \Symfony\Component\HttpFoundation\RedirectResponse
-      */
-     public function deleteAccountAction()
-     {
-         $enabledUsers = $this->getDoctrine()
-             ->getRepository('WallabagUserBundle:User')
-             ->getSumEnabledUsers();
-
-         if ($enabledUsers <= 1) {
-             throw new AccessDeniedHttpException();
-         }
-
-         $em = $this->get('fos_user.user_manager');
-         $em->deleteUser($this->getUser());
-
-         $this->get('session')->getFlashBag()->add(
-             'notice',
-             'flashes.account.notice.account_deleted'
-         );
-
-         return $this->redirect($this->generateUrl('fos_user_security_logout'));
-     }
+    /**
+     * Delete account for current user.
+     *
+     * @Route("/account/delete", name="delete_account")
+     *
+     * @param Request $request
+     *
+     * @throws AccessDeniedHttpException
+     *
+     * @return \Symfony\Component\HttpFoundation\RedirectResponse
+     */
+    public function deleteAccountAction(Request $request)
+    {
+        $enabledUsers = $this->getDoctrine()
+            ->getRepository('WallabagUserBundle:User')
+            ->getSumEnabledUsers();
+
+        if ($enabledUsers <= 1) {
+            throw new AccessDeniedHttpException();
+        }
+
+        $user = $this->getUser();
+
+        // logout current user
+        $this->get('security.token_storage')->setToken(null);
+        $request->getSession()->invalidate();
+
+        $em = $this->get('fos_user.user_manager');
+        $em->deleteUser($user);
+
+        return $this->redirect($this->generateUrl('fos_user_security_login'));
+    }
 }