X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FImportBundle%2FController%2FWallabagV1Controller.php;h=d700d8a883a38ca7a09f1fb0f02343cceff37c79;hb=f808b01692a835673f328d7221ba8c212caa9b61;hp=1bc9696d5b90bbdfb42dfeab056dbc7e9c8b4673;hpb=439b36323e37f669b056cc5228c44bb91196256c;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Controller/WallabagV1Controller.php b/src/Wallabag/ImportBundle/Controller/WallabagV1Controller.php index 1bc9696d..d700d8a8 100644 --- a/src/Wallabag/ImportBundle/Controller/WallabagV1Controller.php +++ b/src/Wallabag/ImportBundle/Controller/WallabagV1Controller.php @@ -2,64 +2,40 @@ namespace Wallabag\ImportBundle\Controller; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Component\HttpFoundation\Request; -use Wallabag\ImportBundle\Form\Type\UploadImportType; -class WallabagV1Controller extends Controller +class WallabagV1Controller extends WallabagController { /** * @Route("/wallabag-v1", name="import_wallabag_v1") */ public function indexAction(Request $request) { - $form = $this->createForm(UploadImportType::class); - $form->handleRequest($request); - - $wallabag = $this->get('wallabag_import.wallabag_v1.import'); - - if ($form->isValid()) { - $file = $form->get('file')->getData(); - $markAsRead = $form->get('mark_as_read')->getData(); - $name = $this->getUser()->getId().'.json'; - - if (in_array($file->getClientMimeType(), $this->getParameter('wallabag_import.allow_mimetypes')) && $file->move($this->getParameter('wallabag_import.resource_dir'), $name)) { - $res = $wallabag - ->setUser($this->getUser()) - ->setFilepath($this->getParameter('wallabag_import.resource_dir').'/'.$name) - ->setMarkAsRead($markAsRead) - ->import(); - - $message = 'flashes.import.notice.failed'; - - if (true === $res) { - $summary = $wallabag->getSummary(); - $message = $this->get('translator')->trans('flashes.import.notice.summary', array( - '%imported%' => $summary['imported'], - '%skipped%' => $summary['skipped'], - )); - - unlink($this->getParameter('wallabag_import.resource_dir').'/'.$name); - } + return parent::indexAction($request); + } - $this->get('session')->getFlashBag()->add( - 'notice', - $message - ); + /** + * {@inheritdoc} + */ + protected function getImportService() + { + $service = $this->get('wallabag_import.wallabag_v1.import'); - return $this->redirect($this->generateUrl('homepage')); - } else { - $this->get('session')->getFlashBag()->add( - 'notice', - 'flashes.import.notice.failed_on_file' - ); - } + 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 $this->render('WallabagImportBundle:WallabagV1:index.html.twig', [ - 'form' => $form->createView(), - 'import' => $wallabag, - ]); + return $service; + } + + /** + * {@inheritdoc} + */ + protected function getImportTemplate() + { + return 'WallabagImportBundle:WallabagV1:index.html.twig'; } }