Files
newznab-tmux/app/Console/Commands/UpdateBinaries.php
T
DariusIII 0c6ce9974a CS fixes
2026-01-07 14:51:28 +01:00

198 lines
5.0 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Console\Commands;
use App\Models\Settings;
use App\Models\UsenetGroup;
use App\Services\Binaries\BinariesService;
use App\Services\NNTP\NNTPService;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Log;
class UpdateBinaries extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'update:binaries
{group? : Group name to update (optional, processes all if omitted)}
{max? : Maximum headers to download}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Update binaries for a specific group or all groups';
private bool $echoCLI;
/**
* Execute the console command.
*/
public function handle(): int
{
$this->echoCLI = (bool) config('nntmux.echocli');
$groupName = $this->argument('group');
$max = $this->argument('max');
$maxHeaders = is_numeric($max) && $max > 0
? (int) $max
: ((int) Settings::settingValue('max_headers_iteration') ?: 1000000);
$startTime = now()->toImmutable();
try {
$this->outputBanner();
$nntp = $this->getNntp();
$binaries = new BinariesService;
$binaries->setNntp($nntp);
if ($groupName && ! is_numeric($groupName)) {
$this->outputHeader('Updating Single Group');
$this->outputInfo("Group: {$groupName}");
$this->outputInfo('Max headers: '.number_format($maxHeaders));
$this->updateSingleGroup($binaries, $groupName, $maxHeaders);
} else {
$this->outputHeader('Updating All Groups');
$this->outputInfo('Max headers: '.number_format($maxHeaders));
$binaries->updateAllGroups($maxHeaders);
}
$this->outputSummary($startTime);
return self::SUCCESS;
} catch (\Throwable $e) {
Log::error($e->getMessage());
cli()->error('Error: '.$e->getMessage());
return self::FAILURE;
}
}
/**
* Update a single group.
*/
private function updateSingleGroup(BinariesService $binaries, string $groupName, int $maxHeaders): void
{
$group = UsenetGroup::getByName($groupName);
if ($group === null) {
throw new \RuntimeException("Group not found: {$groupName}");
}
$binaries->updateGroup($group->toArray(), $maxHeaders);
}
/**
* Get NNTP connection.
*/
private function getNntp(): NNTPService
{
$nntp = new NNTPService;
$connectResult = $nntp->doConnect();
if ($connectResult !== true) {
$errorMessage = 'Unable to connect to usenet.';
if (NNTPService::isError($connectResult)) {
$errorMessage .= ' Error: '.$connectResult->getMessage();
}
throw new \RuntimeException($errorMessage);
}
return $nntp;
}
/**
* Output the banner.
*/
private function outputBanner(): void
{
if (! $this->echoCLI) {
return;
}
echo PHP_EOL;
cli()->header('NNTmux Binary Update');
cli()->info('Started: '.now()->format('Y-m-d H:i:s'));
}
/**
* Output a section header.
*/
private function outputHeader(string $title): void
{
if (! $this->echoCLI) {
return;
}
echo PHP_EOL;
cli()->header(strtoupper($title));
cli()->header(str_repeat('-', strlen($title)));
}
/**
* Output an info line.
*/
private function outputInfo(string $message): void
{
if (! $this->echoCLI) {
return;
}
cli()->info(" {$message}");
}
/**
* Output the summary.
*/
private function outputSummary(\DateTimeInterface $startTime): void
{
if (! $this->echoCLI) {
return;
}
$elapsed = now()->diffInSeconds($startTime, true);
$timeStr = $this->formatElapsedTime($elapsed);
echo PHP_EOL;
cli()->header('COMPLETE');
cli()->header('--------');
cli()->info(" Total time: {$timeStr}");
echo PHP_EOL;
}
/**
* Format elapsed time.
*/
private function formatElapsedTime(int|float $seconds): string
{
if ($seconds < 1) {
return sprintf('%dms', (int) ($seconds * 1000));
}
if ($seconds < 60) {
return sprintf('%.1fs', $seconds);
}
$minutes = floor($seconds / 60);
$remainingSeconds = $seconds % 60;
if ($minutes < 60) {
return sprintf('%dm %ds', $minutes, (int) $remainingSeconds);
}
$hours = floor($minutes / 60);
$remainingMinutes = $minutes % 60;
return sprintf('%dh %dm', $hours, $remainingMinutes);
}
}