]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Controller/WallabagV1Controller.php
Retrieve created date from Pocket
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Controller / WallabagV1Controller.php
CommitLineData
b1d05721
JB
1<?php
2
3namespace Wallabag\ImportBundle\Controller;
4
b1d05721
JB
5use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6use Symfony\Component\HttpFoundation\Request;
b1d05721 7
b787a775 8class WallabagV1Controller extends WallabagController
b1d05721
JB
9{
10 /**
b787a775 11 * {@inheritdoc}
b1d05721 12 */
b787a775 13 protected function getImportService()
b1d05721 14 {
c98db1b6
JB
15 $service = $this->get('wallabag_import.wallabag_v1.import');
16
17 if ($this->get('craue_config')->get('rabbitmq')) {
18 $service->setRabbitmqProducer($this->get('old_sound_rabbit_mq.import_wallabag_v1_producer'));
19 }
20
21 return $service;
b787a775 22 }
b1d05721 23
b787a775
JB
24 /**
25 * {@inheritdoc}
26 */
27 protected function getImportTemplate()
28 {
29 return 'WallabagImportBundle:WallabagV1:index.html.twig';
30 }
b1d05721 31
b787a775
JB
32 /**
33 * @Route("/wallabag-v1", name="import_wallabag_v1")
34 */
35 public function indexAction(Request $request)
36 {
37 return parent::indexAction($request);
b1d05721
JB
38 }
39}