Add ConsoleController

This commit is contained in:
DariusIII
2018-04-05 00:24:32 +02:00
parent 48158ea131
commit 1c59397b1a
21 changed files with 151 additions and 39 deletions
+113
View File
@@ -0,0 +1,113 @@
<?php
namespace App\Http\Controllers;
use App\Models\Category;
use Blacklight\Console;
use Blacklight\Genres;
use Illuminate\Http\Request;
class ConsoleController extends BasePageController
{
/**
* @param \Illuminate\Http\Request $request
* @throws \Exception
*/
public function show(Request $request)
{
$this->setPrefs();
$console = new Console(['Settings' => $this->settings]);
$gen = new Genres(['Settings' => $this->settings]);
$concats = Category::getChildren(Category::GAME_ROOT);
$ctmp = [];
foreach ($concats as $ccat) {
$ctmp[$ccat['id']] = $ccat;
}
$category = Category::query()->where('id', '=', Category::GAME_ROOT)->first();
$catarray = [];
$catarray[] = $category;
$this->smarty->assign('catlist', $ctmp);
$this->smarty->assign('category', $category->title);
$offset = ($request->has('offset') && ctype_digit($request->input('offset'))) ? $request->input('offset') : 0;
$ordering = $console->getConsoleOrdering();
$orderby = $request->has('ob') && \in_array($request->input('ob'), $ordering, false) ? $request->input('ob') : '';
$consoles = [];
$results = $console->getConsoleRange($catarray, $orderby, $this->userdata['categoryexclusions']);
$maxwords = 50;
foreach ($results as $result) {
if (! empty($result['review'])) {
$words = explode(' ', $result['review']);
if (\count($words) > $maxwords) {
$newwords = \array_slice($words, 0, $maxwords);
$result['review'] = implode(' ', $newwords).'...';
}
}
$consoles[] = $result;
}
$platform = ($request->has('platform') && ! empty($request->input('platform'))) ? stripslashes($request->input('platform')) : '';
$this->smarty->assign('platform', $platform);
$title = ($request->has('title') && ! empty($request->input('title'))) ? stripslashes($request->input('title')) : '';
$this->smarty->assign('title', $title);
$genres = $gen->getGenres(Genres::CONSOLE_TYPE, true);
$tmpgnr = [];
foreach ($genres as $gn) {
$tmpgnr[$gn['id']] = $gn['title'];
}
$genre = ($request->has('genre') && array_key_exists($request->input('genre'), $tmpgnr)) ? $request->input('genre') : '';
$this->smarty->assign('genres', $genres);
$this->smarty->assign('genre', $genre);
$browseby_link = '&amp;title='.$title.'&amp;platform='.$platform;
$this->smarty->assign('pagertotalitems', $results[0]['_totalcount'] ?? 0);
$this->smarty->assign('pageroffset', $offset);
$this->smarty->assign('pageritemsperpage', config('nntmux.items_per_cover_page'));
$this->smarty->assign('pagerquerybase', WWW_TOP.'/console?t='.$category.$browseby_link.'&amp;ob='.$orderby.'&amp;offset=');
$this->smarty->assign('pagerquerysuffix', '#results');
$thisr = $this->smarty->fetch('pager.tpl');
$this->smarty->assign('pager', $thisr);
if ((int) $category === -1) {
$this->smarty->assign('catname', 'All');
} else {
$cdata = Category::find($category);
if ($cdata) {
$this->smarty->assign('catname', $cdata->parent !== null ? $cdata->parent->title.' > '.$cdata->title : $cdata->title);
} else {
$this->show404();
}
}
foreach ($ordering as $ordertype) {
$this->smarty->assign('orderby'.$ordertype, WWW_TOP.'/console?t='.$category.$browseby_link.'&amp;ob='.$ordertype.'&amp;offset=0');
}
$this->smarty->assign('results', $consoles);
$meta_title = 'Browse Console';
$meta_keywords = 'browse,nzb,console,games,description,details';
$meta_description = 'Browse for Console Games';
$content = $this->smarty->fetch('console.tpl');
$this->smarty->assign(
[
'content' => $content,
'meta_title' => $meta_title,
'meta_keywords' => $meta_keywords,
'meta_description' => $meta_description,
]
);
$this->pagerender();
}
}