Files
newznab-tmux-NNTmux/app/Http/Controllers/AdultController.php
T
2018-04-13 15:51:13 +02:00

99 lines
3.7 KiB
PHP

<?php
namespace App\Http\Controllers;
use Blacklight\XXX;
use App\Models\Category;
use Illuminate\Http\Request;
class AdultController extends BasePageController
{
/**
* @param \Illuminate\Http\Request $request
*
* @throws \Exception
*/
public function show(Request $request)
{
$this->setPrefs();
$adult = new XXX();
$moviecats = Category::getChildren(Category::XXX_ROOT);
$mtmp = [];
foreach ($moviecats as $mcat) {
$mtmp[$mcat['id']] = $mcat;
}
$category = Category::XXX_ROOT;
if ($request->has('t') && array_key_exists($request->input('t'), $mtmp)) {
$category = $request->input('t') + 0;
}
$catarray = [];
$catarray[] = $category;
$this->smarty->assign('catlist', $mtmp);
$this->smarty->assign('category', $category);
$ordering = $adult->getXXXOrdering();
$orderby = $request->has('ob') && \in_array($request->input('ob'), $ordering, false) ? $request->input('ob') : '';
$movies = [];
$page = $request->has('page') ? $request->input('page') : 1;
$results = $adult->getXXXRange($page, $catarray, $orderby, $this->userdata['categoryexclusions']);
foreach ($results as $result) {
$result['genre'] = makeFieldLinks($result, 'genre', 'xxx');
$result['actors'] = makeFieldLinks($result, 'actors', 'xxx');
$result['director'] = makeFieldLinks($result, 'director', 'xxx');
$movies[] = $result;
}
$title = ($request->has('title') && ! empty($request->input('title'))) ? stripslashes($request->input('title')) : '';
$this->smarty->assign('title', stripslashes($title));
$actors = ($request->has('actors') && ! empty($request->input('actors'))) ? stripslashes($request->input('actors')) : '';
$this->smarty->assign('actors', $actors);
$director = ($request->has('director') && ! empty($request->input('director'))) ? stripslashes($request->input('director')) : '';
$this->smarty->assign('director', $director);
$genres = $adult->getAllGenres(true);
$genre = ($request->has('genre') && \in_array($request->input('genre'), $genres, false)) ? $request->input('genre') : '';
$this->smarty->assign('genres', $genres);
$this->smarty->assign('genre', $genre);
$browseby_link = '&amp;title='.$title.'&amp;actors='.$actors.'&amp;director='.$director.'&amp;genre='.$genre;
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.'/xxx?t='.$category.$browseby_link.'&amp;ob='.$ordertype.'&amp;offset=0');
}
$this->smarty->assign('results', $movies);
$meta_title = 'Browse XXX';
$meta_keywords = 'browse,xxx,nzb,description,details';
$meta_description = 'Browse for XXX Movies';
if ($request->has('id')) {
$content = $this->smarty->fetch('viewxxxfull.tpl');
} else {
$content = $this->smarty->fetch('xxx.tpl');
}
$this->smarty->assign([
'content' => $content,
'meta_title' => $meta_title,
'meta_keywords' => $meta_keywords,
'meta_description' => $meta_description,
]);
$this->pagerender();
}
}