Files
animethemes-server/app/Actions/Storage/Base/MoveResults.php
T
2025-10-01 17:18:31 -03:00

77 lines
2.5 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Actions\Storage\Base;
use App\Actions\ActionResult;
use App\Contracts\Actions\Storage\StorageResults;
use App\Enums\Actions\ActionStatus;
use App\Models\BaseModel;
use Illuminate\Console\Command;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
readonly class MoveResults implements StorageResults
{
/**
* @param array<string, bool> $moves
*/
public function __construct(
protected BaseModel $model,
protected string $from,
protected string $to,
protected array $moves = []
) {}
public function toLog(): void
{
if ($this->moves === []) {
Log::error('No moves were attempted.');
}
foreach ($this->moves as $fs => $result) {
$result
? Log::info("Moved '{$this->model->getName()}' from '$this->from' to '$this->to' in disk '$fs'")
: Log::error("Failed to move '{$this->model->getName()}' from '$this->from' to '$this->to' in disk '$fs'");
}
}
public function toConsole(Command $command): void
{
if ($this->moves === []) {
$command->error('No moves were attempted.');
}
foreach ($this->moves as $fs => $result) {
$result
? $command->info("Moved '{$this->model->getName()}' from '$this->from' to '$this->to' in disk '$fs'")
: $command->error("Failed to move '{$this->model->getName()}' from '$this->from' to '$this->to' in disk '$fs'");
}
}
public function toActionResult(): ActionResult
{
if ($this->moves === []) {
return new ActionResult(
ActionStatus::FAILED,
'No moves were attempted. Please check that disks are configured.'
);
}
/** @var Collection $passed */
/** @var Collection $failed */
[$passed, $failed] = collect($this->moves)->partition(fn (bool $result, string $fs): bool => $result);
if ($failed->isNotEmpty()) {
return new ActionResult(
ActionStatus::FAILED,
"Failed to move '{$this->model->getName()}' from '$this->from' to '$this->to' in disks {$failed->keys()->join(', ', ' & ')}."
);
}
return new ActionResult(
ActionStatus::PASSED,
"Moved '{$this->model->getName()}' from '$this->from' to '$this->to' in disks {$passed->keys()->join(', ', ' & ')}."
);
}
}