mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Console\Commands\Repositories\Storage;
|
|
|
|
use App\Console\Commands\Repositories\ReconcileCommand;
|
|
use App\Contracts\Repositories\RepositoryInterface;
|
|
use App\Contracts\Storage\InteractsWithDisk;
|
|
use App\Rules\Storage\StorageDirectoryExistsRule;
|
|
use Illuminate\Contracts\Validation\Validator;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Facades\Validator as ValidatorFacade;
|
|
|
|
abstract class StorageReconcileCommand extends ReconcileCommand implements InteractsWithDisk
|
|
{
|
|
/**
|
|
* Apply filters to repositories before reconciliation.
|
|
*/
|
|
protected function handleFilters(
|
|
RepositoryInterface $sourceRepository,
|
|
RepositoryInterface $destinationRepository,
|
|
array $data = []
|
|
): void {
|
|
parent::handleFilters($sourceRepository, $destinationRepository, $data);
|
|
|
|
$path = Arr::get($data, 'path');
|
|
if ($path !== null) {
|
|
$sourceRepository->handleFilter('path', $path);
|
|
$destinationRepository->handleFilter('path', $path);
|
|
}
|
|
}
|
|
|
|
protected function validator(): Validator
|
|
{
|
|
$fs = Storage::disk($this->disk());
|
|
|
|
return ValidatorFacade::make($this->options(), [
|
|
'path' => ['nullable', 'string', 'doesnt_start_with:/', new StorageDirectoryExistsRule($fs)],
|
|
]);
|
|
}
|
|
}
|