40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
use App\Entity\Torrent;
|
||
|
use App\Repository\TorrentRepository;
|
||
|
use Pagerfanta\Adapter\DoctrineORMAdapter;
|
||
|
use Pagerfanta\Pagerfanta;
|
||
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||
|
use Symfony\Component\HttpFoundation\Request;
|
||
|
|
||
|
class TorrentController extends Controller
|
||
|
{
|
||
|
private const PER_PAGE = 20;
|
||
|
|
||
|
public function showTorrent(Torrent $torrent)
|
||
|
{
|
||
|
return $this->render('torrent_show.html.twig', [
|
||
|
'torrent' => $torrent,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function searchTorrent(Request $request, TorrentRepository $repo)
|
||
|
{
|
||
|
$query = $request->query->get('query', '');
|
||
|
$page = (int) $request->query->get('page', '1');
|
||
|
|
||
|
$pagerAdapter = new DoctrineORMAdapter($repo->createFindLikeQueryBuilder($query));
|
||
|
$pager = new Pagerfanta($pagerAdapter);
|
||
|
$pager
|
||
|
->setCurrentPage($page)
|
||
|
->setMaxPerPage(self::PER_PAGE)
|
||
|
;
|
||
|
|
||
|
return $this->render('search_results.html.twig', [
|
||
|
'torrents' => $pager,
|
||
|
'searchQuery' => $query,
|
||
|
]);
|
||
|
}
|
||
|
}
|