-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCommandLoader.php
152 lines (123 loc) · 4.09 KB
/
CommandLoader.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Console;
use Psr\Container\ContainerInterface;
use RuntimeException;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Command\LazyCommand;
use Symfony\Component\Console\CommandLoader\CommandLoaderInterface;
use Symfony\Component\Console\Exception\CommandNotFoundException;
use function array_shift;
use function explode;
final class CommandLoader implements CommandLoaderInterface
{
/**
* @psalm-var array<string, array{
* name: non-empty-string,
* aliases: non-empty-string[],
* class: class-string<Command>,
* hidden: bool,
* }>
*/
private array $commandMap;
/**
* @var string[]
*/
private array $commandNames;
/**
* @param array $commandMap An array with command names as keys and service ids as values.
*
* @psalm-param array<string, class-string<Command>> $commandMap
*/
public function __construct(private ContainerInterface $container, array $commandMap)
{
$this->setCommandMap($commandMap);
}
public function get(string $name): Command
{
if (!$this->has($name)) {
throw new CommandNotFoundException(sprintf('Command "%s" does not exist.', $name));
}
$commandName = $this->commandMap[$name]['name'];
$commandAliases = $this->commandMap[$name]['aliases'];
$commandClass = $this->commandMap[$name]['class'];
$commandHidden = $this->commandMap[$name]['hidden'];
$description = $commandClass::getDefaultDescription();
if ($description === null) {
return $this->getCommandInstance($name);
}
return new LazyCommand(
$commandName,
$commandAliases,
$description,
$commandHidden,
fn () => $this->getCommandInstance($name),
);
}
public function has(string $name): bool
{
return isset($this->commandMap[$name]);
}
public function getNames(): array
{
return $this->commandNames;
}
private function getCommandInstance(string $name): Command
{
$commandName = $this->commandMap[$name]['name'];
$commandClass = $this->commandMap[$name]['class'];
$commandAliases = $this->commandMap[$name]['aliases'];
/** @var Command $command */
$command = $this->container->get($commandClass);
if ($command->getName() !== $commandName) {
$command->setName($commandName);
}
if ($command->getAliases() !== $commandAliases) {
$command->setAliases($commandAliases);
}
return $command;
}
/**
* @psalm-param array<string, class-string<Command>> $commandMap
*/
private function setCommandMap(array $commandMap): void
{
$this->commandMap = [];
$this->commandNames = [];
foreach ($commandMap as $name => $class) {
$aliases = explode('|', $name);
$hidden = false;
if ($aliases[0] === '') {
$hidden = true;
array_shift($aliases);
}
/** @var string[] $aliases Fix for psalm. See {@link https://github.com/vimeo/psalm/issues/9261}. */
$this->validateAliases($aliases);
$primaryName = array_shift($aliases);
$item = [
'name' => $primaryName,
'aliases' => $aliases,
'class' => $class,
'hidden' => $hidden,
];
$this->commandMap[$primaryName] = $item;
$this->commandNames[] = $primaryName;
foreach ($aliases as $alias) {
$this->commandMap[$alias] = $item;
}
}
}
/**
* @psalm-param string[] $aliases
*
* @psalm-assert non-empty-string[] $aliases
*/
private function validateAliases(array $aliases): void
{
foreach ($aliases as $alias) {
if ($alias === '') {
throw new RuntimeException('Do not allow empty command name or alias.');
}
}
}
}