diff --git a/Changelog b/Changelog index 1aa3de036..eb93fcab1 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-04-05 DariusIII + * Chg: Add ConsoleController * Chg: Update handling of requests for nzb files 2018-04-04 DariusIII * Chg: Add RSS controller and route diff --git a/app/Http/Controllers/ConsoleController.php b/app/Http/Controllers/ConsoleController.php new file mode 100644 index 000000000..478bf7cec --- /dev/null +++ b/app/Http/Controllers/ConsoleController.php @@ -0,0 +1,113 @@ +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 = '&title='.$title.'&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.'&ob='.$orderby.'&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.'&ob='.$ordertype.'&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(); + } +} diff --git a/resources/views/themes/Charisma/books.tpl b/resources/views/themes/Charisma/books.tpl index 61c79595f..3506c61e0 100755 --- a/resources/views/themes/Charisma/books.tpl +++ b/resources/views/themes/Charisma/books.tpl @@ -23,7 +23,7 @@