src/Controller/Website/ArticleOverviewController.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Website;
  3. use ONGR\ElasticsearchBundle\Service\Manager;
  4. use ONGR\ElasticsearchBundle\Service\Repository;
  5. use ONGR\ElasticsearchDSL\Sort\FieldSort;
  6. use Sulu\Bundle\ArticleBundle\Document\ArticleViewDocument;
  7. use Sulu\Bundle\WebsiteBundle\Controller\WebsiteController;
  8. use Sulu\Component\Content\Compat\StructureInterface;
  9. use Symfony\Component\HttpFoundation\Request;
  10. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  11. class ArticleOverviewController extends WebsiteController
  12. {
  13.     const PAGE_SIZE 9;
  14.     /**
  15.      * @var Manager
  16.      */
  17.     private $esManagerLive;
  18.     public function __construct(Manager $esManagerLive)
  19.     {
  20.         $this->esManagerLive $esManagerLive;
  21.     }
  22.     public function indexAction(Request $requestStructureInterface $structure$preview false$partial false)
  23.     {
  24.         $page $request->query->getInt('page'1);
  25.         if ($page 1) {
  26.             throw new NotFoundHttpException();
  27.         }
  28.         $articles $this->loadArticles($pageself::PAGE_SIZE$request->getLocale());
  29.         $pages = (int) ceil($articles->count() / self::PAGE_SIZE) ?: 1;
  30.         return $this->renderStructure(
  31.             $structure,
  32.             [
  33.                 'page' => $page,
  34.                 'pages' => $pages,
  35.                 'articles' => $articles
  36.             ],
  37.             $preview,
  38.             $partial
  39.         );
  40.     }
  41.     private function loadArticles($page$pageSize$locale)
  42.     {
  43.         $repository $this->getRepository();
  44.         $search $repository->createSearch()
  45.             ->addSort(new FieldSort('authored'FieldSort::DESC))
  46.             ->setFrom(($page 1) * $pageSize)
  47.             ->setSize($pageSize);
  48.         return $repository->findDocuments($search);
  49.     }
  50.     /**
  51.      * @return Repository
  52.      */
  53.     private function getRepository()
  54.     {
  55.         return $this->esManagerLive->getRepository(ArticleViewDocument::class);
  56.     }
  57. }