]>
Commit | Line | Data |
---|---|---|
b1d05721 JB |
1 | <?php |
2 | ||
3 | namespace Wallabag\ImportBundle\Controller; | |
4 | ||
b1d05721 JB |
5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
6 | use Symfony\Component\HttpFoundation\Request; | |
b1d05721 | 7 | |
b787a775 | 8 | class 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 | ||
b3437d58 JB |
17 | if ($this->get('craue_config')->get('import_with_rabbitmq')) { |
18 | $service->setProducer($this->get('old_sound_rabbit_mq.import_wallabag_v1_producer')); | |
19 | } elseif ($this->get('craue_config')->get('import_with_redis')) { | |
20 | $service->setProducer($this->get('wallabag_import.producer.redis.wallabag_v1')); | |
c98db1b6 JB |
21 | } |
22 | ||
23 | return $service; | |
b787a775 | 24 | } |
b1d05721 | 25 | |
b787a775 JB |
26 | /** |
27 | * {@inheritdoc} | |
28 | */ | |
29 | protected function getImportTemplate() | |
30 | { | |
31 | return 'WallabagImportBundle:WallabagV1:index.html.twig'; | |
32 | } | |
b1d05721 | 33 | |
b787a775 JB |
34 | /** |
35 | * @Route("/wallabag-v1", name="import_wallabag_v1") | |
36 | */ | |
37 | public function indexAction(Request $request) | |
38 | { | |
39 | return parent::indexAction($request); | |
b1d05721 JB |
40 | } |
41 | } |