wallabag/src/Wallabag/ImportBundle/Controller/ElcuratorController.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2019-11-07 11:17:01 +00:00
<?php
namespace Wallabag\ImportBundle\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
use Wallabag\ImportBundle\Import\ElcuratorImport;
2019-11-07 11:17:01 +00:00
class ElcuratorController extends WallabagController
{
/**
* @Route("/elcurator", name="import_elcurator")
*/
public function indexAction(Request $request)
{
return parent::indexAction($request);
}
/**
* {@inheritdoc}
*/
protected function getImportService()
{
$service = $this->get(ElcuratorImport::class);
2019-11-07 11:17:01 +00:00
if ($this->get('craue_config')->get('import_with_rabbitmq')) {
$service->setProducer($this->get('old_sound_rabbit_mq.import_elcurator_producer'));
} elseif ($this->get('craue_config')->get('import_with_redis')) {
$service->setProducer($this->get('wallabag_import.producer.redis.elcurator'));
}
return $service;
}
/**
* {@inheritdoc}
*/
protected function getImportTemplate()
{
return 'WallabagImportBundle:Elcurator:index.html.twig';
}
}