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

42 lines
1 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\ImportBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Request;
class ChromeController extends BrowserController
{
2017-07-01 07:52:38 +00:00
/**
* @Route("/chrome", name="import_chrome")
*/
public function indexAction(Request $request)
{
return parent::indexAction($request);
}
/**
* {@inheritdoc}
*/
protected function getImportService()
{
$service = $this->get('wallabag_import.chrome.import');
if ($this->get('craue_config')->get('import_with_rabbitmq')) {
2016-09-21 16:00:08 +00:00
$service->setProducer($this->get('old_sound_rabbit_mq.import_chrome_producer'));
} elseif ($this->get('craue_config')->get('import_with_redis')) {
2016-09-21 16:00:08 +00:00
$service->setProducer($this->get('wallabag_import.producer.redis.chrome'));
}
return $service;
}
/**
* {@inheritdoc}
*/
protected function getImportTemplate()
{
return 'WallabagImportBundle:Chrome:index.html.twig';
}
}