mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
65 lines
2.5 KiB
PHP
65 lines
2.5 KiB
PHP
<?php
|
|
|
|
// --------------------------------------------------------------
|
|
// Scan for releases missing previews on disk
|
|
// --------------------------------------------------------------
|
|
require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php';
|
|
|
|
use Blacklight\Movie;
|
|
use App\Models\Settings;
|
|
use Blacklight\ColorCLI;
|
|
use Blacklight\utility\Utility;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
$movie = new Movie(['Echo' => true]);
|
|
$colorCli = new ColorCLI();
|
|
|
|
$row = Settings::settingValue('site.main.coverspath');
|
|
if ($row !== null) {
|
|
Utility::setCoversConstant($row);
|
|
} else {
|
|
die('Unable to determine covers path!'.PHP_EOL);
|
|
}
|
|
|
|
$path2cover = NN_COVERS.'movies'.DS;
|
|
|
|
if (isset($argv[1]) && ($argv[1] === 'true' || $argv[1] === 'check')) {
|
|
$couldbe = $argv[1] === 'true' ? $couldbe = 'had ' : 'could have ';
|
|
$limit = $counterfixed = 0;
|
|
if (isset($argv[2]) && is_numeric($argv[2])) {
|
|
$limit = $argv[2];
|
|
}
|
|
$colorCli->header('Scanning for releases missing covers');
|
|
$res = DB::select('SELECT r.imdbid
|
|
FROM releases r
|
|
LEFT JOIN movieinfo m ON m.imdbid = r.imdbid
|
|
WHERE nzbstatus = 1 AND m.cover = 1 AND adddate > (NOW() - INTERVAL 24 HOUR) GROUP BY r.imdbid');
|
|
|
|
foreach ($res as $row) {
|
|
$nzbpath = $path2cover.$row->imdbid.'-cover.jpg';
|
|
if (! file_exists($nzbpath)) {
|
|
$counterfixed++;
|
|
$colorCli->warning('Missing cover '.$nzbpath);
|
|
if ($argv[1] === 'true') {
|
|
$cover = $movie->updateMovieInfo($row->imdbid);
|
|
if ($cover === false || ! file_exists($nzbpath)) {
|
|
DB::update(sprintf('UPDATE movieinfo m SET m.cover = 0 WHERE m.imdbid = %d', $row->imdbid));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (($limit > 0) && ($counterfixed >= $limit)) {
|
|
break;
|
|
}
|
|
}
|
|
$colorCli->header('Total releases missing covers that '.$couldbe.'their covers fixed = '.number_format($counterfixed));
|
|
} else {
|
|
$colorCli->header("\nThis script checks if release covers actually exist on disk.\n\n"
|
|
."Releases without covers may be reset for post-processing, thus regenerating them and related meta data.\n\n"
|
|
."Useful for recovery after filesystem corruption, or as an alternative re-postprocessing tool.\n\n"
|
|
."Optional LIMIT parameter restricts number of releases to be reset.\n\n"
|
|
."php $argv[0] check [LIMIT] ...: Dry run, displays missing covers.\n"
|
|
."php $argv[0] true [LIMIT] ...: Re-process releases missing covers.\n");
|
|
exit();
|
|
}
|