mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
86 lines
2.1 KiB
PHP
86 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\UsenetGroup;
|
|
use App\Services\Binaries\BinariesService;
|
|
use App\Services\NNTP\NNTPService;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class PartRepair extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'binaries:part-repair {group : Group name}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Do part repair for a group';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle(): int
|
|
{
|
|
$groupName = $this->argument('group');
|
|
|
|
try {
|
|
$groupMySQL = UsenetGroup::getByName($groupName)->toArray();
|
|
|
|
if ($groupMySQL === null) {
|
|
$this->error("Group not found: {$groupName}");
|
|
|
|
return self::FAILURE;
|
|
}
|
|
|
|
$nntp = $this->getNntp();
|
|
|
|
$data = $nntp->selectGroup($groupMySQL['name']);
|
|
|
|
if (NNTPService::isError($data) && $nntp->dataError($nntp, $groupMySQL['name']) === false) {
|
|
return self::FAILURE;
|
|
}
|
|
|
|
$binaries = new BinariesService();
|
|
$binaries->setNntp($nntp);
|
|
$binaries->partRepair($groupMySQL);
|
|
|
|
return self::SUCCESS;
|
|
} catch (\Throwable $e) {
|
|
Log::error($e->getTraceAsString());
|
|
$this->error($e->getMessage());
|
|
|
|
return self::FAILURE;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get NNTP connection.
|
|
*/
|
|
private function getNntp(): NNTPService
|
|
{
|
|
$nntp = new NNTPService;
|
|
|
|
$connectResult = config('nntmux_nntp.use_alternate_nntp_server') === true
|
|
? $nntp->doConnect(false, true)
|
|
: $nntp->doConnect();
|
|
|
|
if ($connectResult !== true) {
|
|
$errorMessage = 'Unable to connect to usenet.';
|
|
if (NNTPService::isError($connectResult)) {
|
|
$errorMessage .= ' Error: '.$connectResult->getMessage();
|
|
}
|
|
throw new \Exception($errorMessage);
|
|
}
|
|
|
|
return $nntp;
|
|
}
|
|
}
|