-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Registry.php
87 lines (70 loc) · 2.69 KB
/
Registry.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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Workflow;
use Symfony\Component\Workflow\Exception\InvalidArgumentException;
use Symfony\Component\Workflow\SupportStrategy\WorkflowSupportStrategyInterface;
/**
* @author Fabien Potencier <[email protected]>
* @author Grégoire Pineau <[email protected]>
*/
class Registry
{
private array $workflows = [];
public function addWorkflow(WorkflowInterface $workflow, WorkflowSupportStrategyInterface $supportStrategy): void
{
$this->workflows[] = [$workflow, $supportStrategy];
}
public function has(object $subject, ?string $workflowName = null): bool
{
foreach ($this->workflows as [$workflow, $supportStrategy]) {
if ($this->supports($workflow, $supportStrategy, $subject, $workflowName)) {
return true;
}
}
return false;
}
public function get(object $subject, ?string $workflowName = null): WorkflowInterface
{
$matched = [];
foreach ($this->workflows as [$workflow, $supportStrategy]) {
if ($this->supports($workflow, $supportStrategy, $subject, $workflowName)) {
$matched[] = $workflow;
}
}
if (!$matched) {
throw new InvalidArgumentException(\sprintf('Unable to find a workflow for class "%s".', get_debug_type($subject)));
}
if (2 <= \count($matched)) {
$names = array_map(static fn (WorkflowInterface $workflow): string => $workflow->getName(), $matched);
throw new InvalidArgumentException(\sprintf('Too many workflows (%s) match this subject (%s); set a different name on each and use the second (name) argument of this method.', implode(', ', $names), get_debug_type($subject)));
}
return $matched[0];
}
/**
* @return Workflow[]
*/
public function all(object $subject): array
{
$matched = [];
foreach ($this->workflows as [$workflow, $supportStrategy]) {
if ($supportStrategy->supports($workflow, $subject)) {
$matched[] = $workflow;
}
}
return $matched;
}
private function supports(WorkflowInterface $workflow, WorkflowSupportStrategyInterface $supportStrategy, object $subject, ?string $workflowName): bool
{
if (null !== $workflowName && $workflowName !== $workflow->getName()) {
return false;
}
return $supportStrategy->supports($workflow, $subject);
}
}