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

44 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\ImportBundle\Controller;
2022-08-28 00:01:46 +00:00
use Craue\ConfigBundle\Util\Config;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;
use Wallabag\ImportBundle\Import\FirefoxImport;
class FirefoxController extends BrowserController
{
2017-07-01 07:52:38 +00:00
/**
* @Route("/firefox", name="import_firefox")
*/
public function indexAction(Request $request)
{
return parent::indexAction($request);
}
/**
* {@inheritdoc}
*/
protected function getImportService()
{
$service = $this->get(FirefoxImport::class);
2022-08-28 00:01:46 +00:00
if ($this->get(Config::class)->get('import_with_rabbitmq')) {
2016-09-21 16:00:08 +00:00
$service->setProducer($this->get('old_sound_rabbit_mq.import_firefox_producer'));
2022-08-28 00:01:46 +00:00
} elseif ($this->get(Config::class)->get('import_with_redis')) {
2016-09-21 16:00:08 +00:00
$service->setProducer($this->get('wallabag_import.producer.redis.firefox'));
}
return $service;
}
/**
* {@inheritdoc}
*/
protected function getImportTemplate()
{
return '@WallabagImport/Firefox/index.html.twig';
}
}