aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Controller/ChromeController.php
blob: 6628cdb0bd4fa49beaf04cdf3d54a41cdcbfc8f7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                           
                                             
                                               



                                                







                                                 






                                                                      
                                                                                            
                                                                         
                                                                                       











                                                             
 
<?php

namespace Wallabag\ImportBundle\Controller;

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Annotation\Route;

class ChromeController extends BrowserController
{
    /**
     * @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')) {
            $service->setProducer($this->get('old_sound_rabbit_mq.import_chrome_producer'));
        } elseif ($this->get('craue_config')->get('import_with_redis')) {
            $service->setProducer($this->get('wallabag_import.producer.redis.chrome'));
        }

        return $service;
    }

    /**
     * {@inheritdoc}
     */
    protected function getImportTemplate()
    {
        return 'WallabagImportBundle:Chrome:index.html.twig';
    }
}