]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Refactored code
authorNicolas Lœuillet <nicolas@loeuillet.org>
Fri, 31 Mar 2017 09:04:18 +0000 (11:04 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Fri, 31 Mar 2017 09:04:18 +0000 (11:04 +0200)
src/Wallabag/CoreBundle/Controller/ConfigController.php

index 7dbe3f1875902d88e3f65df80ccd14a8f5dd9a85..b2814aded0a7202b54a161ae818f6a6a5e91d46e 100644 (file)
@@ -284,14 +284,13 @@ class ConfigController extends Controller
     }
 
     /**
-     * Remove all tags for a given user and cleanup orphan tags.
+     * Remove all tags for given tags and a given user and cleanup orphan tags.
      *
-     * @param int $userId
+     * @param array $tags
+     * @param int   $userId
      */
-    private function removeAllTagsByUserId($userId)
+    private function removeAllTagsByStatusAndUserId($tags, $userId)
     {
-        $tags = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findAllTags($userId);
-
         if (empty($tags)) {
             return;
         }
@@ -312,6 +311,17 @@ class ConfigController extends Controller
         $em->flush();
     }
 
+    /**
+     * Remove all tags for a given user and cleanup orphan tags.
+     *
+     * @param int $userId
+     */
+    private function removeAllTagsByUserId($userId)
+    {
+        $tags = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findAllTags($userId);
+        $this->removeAllTagsByStatusAndUserId($tags, $userId);
+    }
+
     /**
      * Remove all tags for a given user and cleanup orphan tags.
      *
@@ -320,25 +330,7 @@ class ConfigController extends Controller
     private function removeTagsForArchivedByUserId($userId)
     {
         $tags = $this->getDoctrine()->getRepository('WallabagCoreBundle:Tag')->findTagsForArchivedArticles($userId);
-
-        if (empty($tags)) {
-            return;
-        }
-
-        $this->getDoctrine()
-            ->getRepository('WallabagCoreBundle:Entry')
-            ->removeTags($userId, $tags);
-
-        // cleanup orphan tags
-        $em = $this->getDoctrine()->getManager();
-
-        foreach ($tags as $tag) {
-            if (count($tag->getEntries()) === 0) {
-                $em->remove($tag);
-            }
-        }
-
-        $em->flush();
+        $this->removeAllTagsByStatusAndUserId($tags, $userId);
     }
 
     private function removeAnnotationsForArchivedByUserId($userId)