mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 22:01:33 +00:00
284 lines
10 KiB
PHP
284 lines
10 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Category;
|
|
use App\Services\MovieBrowseService;
|
|
use App\Services\MovieService;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\View\View;
|
|
|
|
class MovieController extends BasePageController
|
|
{
|
|
protected MovieBrowseService $movieBrowseService;
|
|
|
|
protected MovieService $movieService;
|
|
|
|
public function __construct(MovieBrowseService $movieBrowseService, MovieService $movieService)
|
|
{
|
|
parent::__construct();
|
|
$this->movieBrowseService = $movieBrowseService;
|
|
$this->movieService = $movieService;
|
|
}
|
|
|
|
/**
|
|
* @throws \Exception
|
|
*/
|
|
public function showMovies(Request $request, string $id = ''): mixed
|
|
{
|
|
$moviecats = Category::getChildren(Category::MOVIE_ROOT)->map(function ($mcat) {
|
|
return ['id' => $mcat->id, 'title' => $mcat->title];
|
|
});
|
|
|
|
$category = $request->has('imdb') ? -1 : ($request->input('t', Category::MOVIE_ROOT));
|
|
if ($id && $moviecats->pluck('title')->contains($id)) {
|
|
$cat = Category::where(['title' => $id, 'root_categories_id' => Category::MOVIE_ROOT])->first(['id']);
|
|
$category = $cat->id ?? Category::MOVIE_ROOT;
|
|
}
|
|
|
|
$catarray = $category !== -1 ? [$category] : [];
|
|
|
|
$page = (int) $request->input('page', 1);
|
|
$offset = ($page - 1) * (int) config('nntmux.items_per_cover_page');
|
|
|
|
$orderby = $request->input('ob', '');
|
|
$ordering = $this->movieBrowseService->getMovieOrdering();
|
|
if (! in_array($orderby, $ordering, true)) {
|
|
$orderby = '';
|
|
}
|
|
|
|
$rslt = $this->movieBrowseService->getMovieRange($page, $catarray, $offset, (int) config('nntmux.items_per_cover_page'), $orderby, -1, (array) $this->userdata->categoryexclusions);
|
|
$totalCount = $rslt->isNotEmpty() ? ($rslt[0]->_totalcount ?? 0) : 0;
|
|
$results = $this->paginate($rslt ?? [], $totalCount, (int) config('nntmux.items_per_cover_page'), $page, $request->url(), $request->query());
|
|
|
|
$movies = $results->map(function ($result) {
|
|
$result->genre = makeFieldLinks($result, 'genre', 'movies');
|
|
$result->actors = makeFieldLinks($result, 'actors', 'movies');
|
|
$result->director = makeFieldLinks($result, 'director', 'movies');
|
|
|
|
// Add cover image URL using helper function
|
|
$result->cover = getReleaseCover($result);
|
|
|
|
return $result;
|
|
});
|
|
|
|
$years = range(1903, now()->addYear()->year);
|
|
rsort($years);
|
|
|
|
$catname = $category === -1 ? 'All' : Category::find($category) ?? 'All';
|
|
|
|
$this->viewData = array_merge($this->viewData, [
|
|
'cpapi' => $this->userdata->cp_api,
|
|
'cpurl' => $this->userdata->cp_url,
|
|
'catlist' => $moviecats,
|
|
'category' => $category,
|
|
'categorytitle' => $id,
|
|
'title' => stripslashes((string) ($request->input('title') ?? '')),
|
|
'actors' => stripslashes((string) ($request->input('actors') ?? '')),
|
|
'director' => stripslashes((string) ($request->input('director') ?? '')),
|
|
'ratings' => range(1, 9),
|
|
'rating' => $request->input('rating', ''),
|
|
'genres' => $this->movieBrowseService->getGenres(),
|
|
'genre' => $request->input('genre', ''),
|
|
'years' => $years,
|
|
'year' => $request->input('year', ''),
|
|
'catname' => $catname,
|
|
'resultsadd' => $movies,
|
|
'results' => $results,
|
|
'covgroup' => 'movies',
|
|
'meta_title' => 'Browse Movies',
|
|
'meta_keywords' => 'browse,nzb,description,details',
|
|
'meta_description' => 'Browse for Movies',
|
|
'movie_layout' => $this->userdata->movie_layout ?? 2,
|
|
]);
|
|
|
|
// Return the appropriate view
|
|
$viewName = $request->has('imdb') ? 'movies.viewmoviefull' : 'movies.index';
|
|
|
|
return view($viewName, $this->viewData);
|
|
}
|
|
|
|
/**
|
|
* Show a single movie with all its releases
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function showMovie(Request $request, string $imdbid): mixed
|
|
{
|
|
// Get movie info
|
|
$movieInfo = $this->movieService->getMovieInfo($imdbid);
|
|
|
|
if (! $movieInfo) {
|
|
return redirect()->route('Movies')->with('error', 'Movie not found');
|
|
}
|
|
|
|
// Convert Eloquent model to array
|
|
$movieArray = $movieInfo->toArray();
|
|
|
|
// Ensure we have at least the basic fields
|
|
if (empty($movieArray['title'])) {
|
|
$movieArray['title'] = 'Unknown Title';
|
|
}
|
|
if (empty($movieArray['imdbid'])) {
|
|
$movieArray['imdbid'] = $imdbid;
|
|
}
|
|
|
|
// Only process fields if they exist and are not empty
|
|
if (! empty($movieArray['genre'])) {
|
|
$movieArray['genre'] = makeFieldLinks($movieArray, 'genre', 'movies');
|
|
}
|
|
if (! empty($movieArray['actors'])) {
|
|
$movieArray['actors'] = makeFieldLinks($movieArray, 'actors', 'movies');
|
|
}
|
|
if (! empty($movieArray['director'])) {
|
|
$movieArray['director'] = makeFieldLinks($movieArray, 'director', 'movies');
|
|
}
|
|
|
|
// Add cover image URL using helper function
|
|
$movieArray['cover'] = getReleaseCover($movieArray);
|
|
|
|
// Get all releases for this movie directly (no limit)
|
|
$releases = $this->movieBrowseService->getMovieReleases($imdbid, (array) $this->userdata->categoryexclusions);
|
|
|
|
$this->viewData = array_merge($this->viewData, [
|
|
'movie' => $movieArray,
|
|
'releases' => $releases,
|
|
'meta_title' => ($movieArray['title'] ?? 'Movie').' - Movie Details',
|
|
'meta_keywords' => 'movie,details,releases',
|
|
'meta_description' => 'View all releases for '.($movieArray['title'] ?? 'this movie'),
|
|
]);
|
|
|
|
return view('movies.viewmoviefull', $this->viewData);
|
|
}
|
|
|
|
/**
|
|
* @return JsonResponse|View
|
|
*/
|
|
public function showTrailer(Request $request)
|
|
{
|
|
if ($request->has('id') && ctype_digit($request->input('id'))) {
|
|
$mov = $this->movieService->getMovieInfo($request->input('id'));
|
|
|
|
if (! $mov) {
|
|
return response()->json(['message' => 'There is no trailer for this movie.'], 404);
|
|
}
|
|
|
|
$modal = $request->has('modal');
|
|
|
|
$viewData = [
|
|
'movie' => $mov,
|
|
];
|
|
|
|
// Return different views for modal vs full page
|
|
if ($modal) {
|
|
return view('movies.trailer-modal', $viewData);
|
|
}
|
|
|
|
$this->viewData = array_merge($this->viewData, [
|
|
'movie' => $mov,
|
|
'title' => 'Info for '.$mov['title'],
|
|
'meta_title' => '',
|
|
'meta_keywords' => '',
|
|
'meta_description' => '',
|
|
]);
|
|
|
|
return view('movies.viewmovietrailer', $this->viewData);
|
|
}
|
|
|
|
return response()->json(['message' => 'Invalid movie ID.'], 400);
|
|
}
|
|
|
|
/**
|
|
* Show trending movies (top 15 most downloaded in last 48 hours)
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function showTrending(Request $request): mixed
|
|
{
|
|
|
|
// Cache key for trending movies (48 hours)
|
|
$cacheKey = 'trending_movies_top_15_48h';
|
|
|
|
// Get trending movies from cache or calculate (refresh every hour)
|
|
$trendingMovies = Cache::remember($cacheKey, 3600, function () {
|
|
// Calculate timestamp for 48 hours ago
|
|
$fortyEightHoursAgo = Carbon::now()->subHours(48);
|
|
|
|
// Get movies with their download counts from last 48 hours
|
|
// Join with user_downloads to get actual download timestamps
|
|
$query = DB::table('movieinfo as m')
|
|
->join('releases as r', 'm.imdbid', '=', 'r.imdbid')
|
|
->leftJoin('user_downloads as ud', 'r.id', '=', 'ud.releases_id')
|
|
->select([
|
|
'm.imdbid',
|
|
'm.title',
|
|
'm.year',
|
|
'm.rating',
|
|
'm.plot',
|
|
'm.genre',
|
|
'm.cover',
|
|
'm.tmdbid',
|
|
'm.traktid',
|
|
DB::raw('COUNT(DISTINCT ud.id) as total_downloads'),
|
|
DB::raw('COUNT(DISTINCT r.id) as release_count'),
|
|
])
|
|
->where('m.title', '!=', '')
|
|
->where('m.imdbid', '!=', '0000000')
|
|
->where('ud.timestamp', '>=', $fortyEightHoursAgo)
|
|
->groupBy('m.imdbid', 'm.title', 'm.year', 'm.rating', 'm.plot', 'm.genre', 'm.cover', 'm.tmdbid', 'm.traktid')
|
|
->havingRaw('COUNT(DISTINCT ud.id) > 0')
|
|
->orderByDesc('total_downloads')
|
|
->limit(15)
|
|
->get();
|
|
|
|
// Process the results
|
|
return $query->map(function ($item) {
|
|
// Add cover image URL using helper function
|
|
$coverArray = [
|
|
'imdbid' => $item->imdbid,
|
|
'tmdbid' => $item->tmdbid,
|
|
'cover' => $item->cover,
|
|
];
|
|
$item->cover = getReleaseCover($coverArray);
|
|
|
|
return $item;
|
|
});
|
|
});
|
|
|
|
$this->viewData = array_merge($this->viewData, [
|
|
'trendingMovies' => $trendingMovies,
|
|
'meta_title' => 'Trending Movies - Last 48 Hours',
|
|
'meta_keywords' => 'trending,movies,popular,downloads,recent',
|
|
'meta_description' => 'Browse the most popular and downloaded movies in the last 48 hours',
|
|
]);
|
|
|
|
return view('movies.trending', $this->viewData);
|
|
}
|
|
|
|
/**
|
|
* Update user's movie layout preference
|
|
*/
|
|
public function updateLayout(Request $request): mixed
|
|
{
|
|
$request->validate([
|
|
'layout' => 'required|integer|in:1,2',
|
|
]);
|
|
|
|
$user = auth()->user();
|
|
if ($user) {
|
|
$user->movie_layout = (int) $request->input('layout');
|
|
$user->save();
|
|
|
|
return response()->json(['success' => true, 'layout' => $user->movie_layout]);
|
|
}
|
|
|
|
return response()->json(['success' => false, 'message' => 'User not authenticated'], 401);
|
|
}
|
|
}
|