Files
newznab-tmux/app/Console/Commands/NntmuxRemoveBadReleases.php
T
2024-04-03 22:13:57 +02:00

88 lines
2.6 KiB
PHP

<?php
namespace App\Console\Commands;
use App\Models\Release;
use App\Models\ReleaseFile;
use Blacklight\ManticoreSearch;
use Blacklight\NZB;
use Blacklight\ReleaseImage;
use Elasticsearch;
use Elasticsearch\Common\Exceptions\Missing404Exception;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;
class NntmuxRemoveBadReleases extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'nntmux:remove-bad';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Update releases that have passworded files inside archives and remove releases that cannot be PPA\'d properly';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
*
* @throws \Exception
*/
public function handle(): void
{
// Select releases with password status -2 and smaller and delete them. Also delete the files from the filesystem.
$badReleases = Release::query()->where('passwordstatus', '<=', -2)->get();
foreach ($badReleases as $badRelease) {
$nzbPath = (new NZB())->getNZBPath($badRelease->guid);
File::delete($nzbPath);
(new ReleaseImage)->delete($badRelease->guid);
if (config('nntmux.elasticsearch_enabled') === true) {
$params = [
'index' => 'releases',
'id' => $badRelease->id,
];
try {
Elasticsearch::delete($params);
} catch (Missing404Exception $e) {
//we do nothing here just catch the error, we don't care if release is missing from ES, we are deleting it anyway
}
} else {
$identifiers = [
'i' => $badRelease->id,
];
// Delete from sphinx.
(new ManticoreSearch())->deleteRelease($identifiers);
}
$badRelease->delete();
}
Release::query()->where('passwordstatus', '=', -2)->delete();
$passReleases = ReleaseFile::query()->where('passworded', '=', 1)->groupBy('releases_id')->get();
$count = 0;
foreach ($passReleases as $passRelease) {
Release::whereId($passRelease->releases_id)->update(['passwordstatus' => 1]);
$count++;
}
$this->info('Updated '.$count.' bad releases');
}
}