-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListContentTask.php
100 lines (85 loc) · 2.93 KB
/
ListContentTask.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
declare(strict_types=1);
/*
* This file is part of the CleverAge/FlysystemProcessBundle package.
*
* Copyright (c) Clever-Age
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CleverAge\FlysystemProcessBundle\Task;
use CleverAge\ProcessBundle\Model\AbstractConfigurableTask;
use CleverAge\ProcessBundle\Model\IterableTaskInterface;
use CleverAge\ProcessBundle\Model\ProcessState;
use League\Flysystem\FilesystemException;
use League\Flysystem\FilesystemOperator;
use Symfony\Component\DependencyInjection\ServiceLocator;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* Iterate over the content of a filesystem.
*/
class ListContentTask extends AbstractConfigurableTask implements IterableTaskInterface
{
/**
* @var list<\League\Flysystem\StorageAttributes>|null
*/
protected ?array $fsContent = null;
/**
* @param ServiceLocator<FilesystemOperator> $storages
*/
public function __construct(protected readonly ServiceLocator $storages)
{
}
protected function configureOptions(OptionsResolver $resolver): void
{
$resolver->setRequired('filesystem');
$resolver->setAllowedTypes('filesystem', 'string');
$resolver->setDefault('file_pattern', null);
$resolver->setAllowedTypes('file_pattern', ['null', 'string']);
}
/**
* @throws \InvalidArgumentException
* @throws FilesystemException
*/
public function execute(ProcessState $state): void
{
if (null === $this->fsContent || null === key($this->fsContent)) {
/** @var string $filesystemOption */
$filesystemOption = $this->getOption($state, 'filesystem');
$filesystem = $this->storages->get($filesystemOption);
/** @var ?string $patternOption */
$patternOption = $this->getOption($state, 'file_pattern');
$this->fsContent = $this->getFilteredFilesystemContents($filesystem, $patternOption);
}
if (null === key($this->fsContent)) {
$state->setSkipped(true);
$this->fsContent = null;
} else {
$state->setOutput(current($this->fsContent));
}
}
public function next(ProcessState $state): bool
{
if (!\is_array($this->fsContent)) {
return false;
}
next($this->fsContent);
return null !== key($this->fsContent);
}
/**
* @return list<\League\Flysystem\StorageAttributes>
*
* @throws FilesystemException
*/
protected function getFilteredFilesystemContents(FilesystemOperator $filesystem, ?string $pattern = null): array
{
$results = [];
foreach ($filesystem->listContents('') as $item) {
if (null === $pattern || preg_match($pattern, $item->path())) {
$results[] = $item;
}
}
return $results;
}
}