mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 22:01:33 +00:00
62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\AdditionalProcessing\DTO;
|
|
|
|
final readonly class AdditionalWorkPlan
|
|
{
|
|
/**
|
|
* @param list<string> $sampleMessageIds
|
|
* @param list<string> $jpgMessageIds
|
|
* @param list<ArchiveCandidate> $archiveCandidates
|
|
* @param list<string> $unsupportedReasons
|
|
*/
|
|
public function __construct(
|
|
public array $sampleMessageIds = [],
|
|
public array $jpgMessageIds = [],
|
|
public string $mediaInfoMessageId = '',
|
|
public string $audioInfoMessageId = '',
|
|
public string $audioInfoExtension = '',
|
|
public array $archiveCandidates = [],
|
|
public int $bookFileCount = 0,
|
|
public bool $bookFlood = false,
|
|
public int $duplicateMessageIdCount = 0,
|
|
public array $unsupportedReasons = [],
|
|
) {}
|
|
|
|
public function hasCompressedFile(): bool
|
|
{
|
|
return $this->archiveCandidates !== [];
|
|
}
|
|
|
|
/**
|
|
* @return list<ArchiveCandidate>
|
|
*/
|
|
public function orderedArchiveCandidates(bool $reverse = false): array
|
|
{
|
|
return $reverse ? array_reverse($this->archiveCandidates) : $this->archiveCandidates;
|
|
}
|
|
|
|
/**
|
|
* Return a stable priority view without changing the legacy processing order.
|
|
*
|
|
* @return list<ArchiveCandidate>
|
|
*/
|
|
public function prioritizedArchiveCandidates(): array
|
|
{
|
|
$firstVolumes = [];
|
|
$remaining = [];
|
|
|
|
foreach ($this->archiveCandidates as $candidate) {
|
|
if ($candidate->likelyFirstVolume) {
|
|
$firstVolumes[] = $candidate;
|
|
} else {
|
|
$remaining[] = $candidate;
|
|
}
|
|
}
|
|
|
|
return [...$firstVolumes, ...$remaining];
|
|
}
|
|
}
|