]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/ImportBundle/Controller/WallabagV1Controller.php
Add a real configuration for CS-Fixer
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Controller / WallabagV1Controller.php
index 3e748d57f7da090d2fa8fb76f4d3b2df9739adcc..d700d8a883a38ca7a09f1fb0f02343cceff37c79 100644 (file)
@@ -8,26 +8,34 @@ use Symfony\Component\HttpFoundation\Request;
 class WallabagV1Controller extends WallabagController
 {
     /**
-     * {@inheritdoc}
+     * @Route("/wallabag-v1", name="import_wallabag_v1")
      */
-    protected function getImportService()
+    public function indexAction(Request $request)
     {
-        return $this->get('wallabag_import.wallabag_v1.import');
+        return parent::indexAction($request);
     }
 
     /**
      * {@inheritdoc}
      */
-    protected function getImportTemplate()
+    protected function getImportService()
     {
-        return 'WallabagImportBundle:WallabagV1:index.html.twig';
+        $service = $this->get('wallabag_import.wallabag_v1.import');
+
+        if ($this->get('craue_config')->get('import_with_rabbitmq')) {
+            $service->setProducer($this->get('old_sound_rabbit_mq.import_wallabag_v1_producer'));
+        } elseif ($this->get('craue_config')->get('import_with_redis')) {
+            $service->setProducer($this->get('wallabag_import.producer.redis.wallabag_v1'));
+        }
+
+        return $service;
     }
 
     /**
-     * @Route("/wallabag-v1", name="import_wallabag_v1")
+     * {@inheritdoc}
      */
-    public function indexAction(Request $request)
+    protected function getImportTemplate()
     {
-        return parent::indexAction($request);
+        return 'WallabagImportBundle:WallabagV1:index.html.twig';
     }
 }