mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 22:01:33 +00:00
91 lines
3.2 KiB
PHP
91 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Category;
|
|
use App\Services\GamesService;
|
|
use App\Services\GenreService;
|
|
use Illuminate\Http\Request;
|
|
|
|
class GamesController extends BasePageController
|
|
{
|
|
/**
|
|
* @throws \Exception
|
|
*/
|
|
public function show(Request $request): mixed
|
|
{
|
|
$games = new GamesService;
|
|
$gen = new GenreService;
|
|
|
|
$concats = Category::getChildren(Category::PC_ROOT);
|
|
$ctmp = [];
|
|
foreach ($concats as $ccat) {
|
|
$ctmp[$ccat['id']] = $ccat;
|
|
}
|
|
$category = Category::PC_GAMES;
|
|
if ($request->has('t') && array_key_exists($request->input('t'), $ctmp)) {
|
|
$category = $request->input('t') + 0;
|
|
}
|
|
|
|
$catarray = [];
|
|
$catarray[] = $category;
|
|
|
|
$page = $request->has('page') && is_numeric($request->input('page')) ? $request->input('page') : 1;
|
|
$ordering = $games->getGamesOrdering();
|
|
$orderby = $request->has('ob') && \in_array($request->input('ob'), $ordering, false) ? $request->input('ob') : '';
|
|
$offset = ($page - 1) * config('nntmux.items_per_cover_page');
|
|
$rslt = $games->getGamesRange($page, $catarray, $offset, config('nntmux.items_per_cover_page'), $orderby, '', (array) $this->userdata->categoryexclusions);
|
|
$results = $this->paginate($rslt, $rslt[0]->_totalcount ?? 0, config('nntmux.items_per_cover_page'), $page, $request->url(), $request->query());
|
|
|
|
$title = ($request->has('title') && ! empty($request->input('title'))) ? stripslashes($request->input('title')) : '';
|
|
|
|
$genres = $gen->getGenres((string) GenreService::GAME_TYPE, true);
|
|
$tmpgnr = [];
|
|
foreach ($genres as $gn) {
|
|
/** @var \App\Models\Genre $gn */
|
|
$tmpgnr[$gn->id] = $gn->title;
|
|
}
|
|
|
|
$years = range(1903, date('Y') + 1);
|
|
rsort($years);
|
|
$year = ($request->has('year') && \in_array($request->input('year'), $years, false)) ? $request->input('year') : '';
|
|
|
|
$genre = ($request->has('genre') && array_key_exists($request->input('genre'), $tmpgnr)) ? $request->input('genre') : '';
|
|
|
|
if ((int) $category === -1) {
|
|
$catname = 'All';
|
|
} else {
|
|
$cdata = Category::find($category);
|
|
if ($cdata !== null) {
|
|
$catname = $cdata->title;
|
|
} else {
|
|
$catname = 'All';
|
|
}
|
|
}
|
|
|
|
// Build order by URLs
|
|
$orderByUrls = [];
|
|
foreach ($ordering as $orderType) {
|
|
$orderByUrls['orderby'.$orderType] = url('Games?ob='.$orderType);
|
|
}
|
|
|
|
$this->viewData = array_merge($this->viewData, [
|
|
'catlist' => $ctmp,
|
|
'category' => $category,
|
|
'catname' => $catname,
|
|
'title' => $title,
|
|
'genres' => $genres,
|
|
'genre' => $genre,
|
|
'years' => $years,
|
|
'year' => $year,
|
|
'results' => $results,
|
|
'covgroup' => 'games',
|
|
'meta_title' => 'Browse Games',
|
|
'meta_keywords' => 'browse,nzb,games,description,details',
|
|
'meta_description' => 'Browse for Games',
|
|
], $orderByUrls);
|
|
|
|
return view('games.index', $this->viewData);
|
|
}
|
|
}
|