-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConsoleInputArgument.php
More file actions
276 lines (251 loc) · 7.51 KB
/
ConsoleInputArgument.php
File metadata and controls
276 lines (251 loc) · 7.51 KB
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 2.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Console;
use Cake\Console\Exception\ConsoleException;
use Cake\Core\Exception\CakeException;
use SimpleXMLElement;
/**
* An object to represent a single argument used in the command line.
* ConsoleOptionParser creates these when you use addArgument()
*
* @see \Cake\Console\ConsoleOptionParser::addArgument()
*/
class ConsoleInputArgument
{
/**
* Name of the argument.
*
* @var string
*/
protected string $_name;
/**
* Help string
*
* @var string
*/
protected string $_help;
/**
* Is this option required?
*
* @var bool
*/
protected bool $_required;
/**
* An array of valid choices for this argument.
*
* @var array<string>
*/
protected array $_choices;
/**
* Default value for this argument.
*
* @var string|null
*/
protected ?string $_default = null;
/**
* The multiple separator.
*
* @var string|null
*/
protected ?string $_separator = null;
/**
* Make a new Input Argument
*
* @param array<string, mixed>|string $name The long name of the option, or an array with all the properties.
* @param string $help The help text for this option
* @param bool $required Whether this argument is required. Missing required args will trigger exceptions
* @param array<string> $choices Valid choices for this option.
* @param string|null $default The default value for this argument.
*/
public function __construct(
array|string $name,
string $help = '',
bool $required = false,
array $choices = [],
?string $default = null,
?string $separator = null,
) {
if (is_array($name)) {
if (!isset($name['name'])) {
throw new CakeException('You must provide a `name` for the argument.');
}
foreach ($name as $key => $value) {
$this->{'_' . $key} = $value;
}
} else {
$this->_name = $name;
$this->_help = $help;
$this->_required = $required;
$this->_choices = $choices;
$this->_default = $default;
$this->_separator = $separator;
}
if ($this->_separator !== null && str_contains($this->_separator, ' ')) {
throw new ConsoleException(
sprintf(
'The argument separator must not contain spaces for `%s`.',
$this->_name,
),
);
}
}
/**
* Get the value of the name attribute.
*
* @return string Value of this->_name.
*/
public function name(): string
{
return $this->_name;
}
/**
* Checks if this argument is equal to another argument.
*
* @param \Cake\Console\ConsoleInputArgument $argument ConsoleInputArgument to compare to.
* @return bool
*/
public function isEqualTo(ConsoleInputArgument $argument): bool
{
return $this->name() === $argument->name() &&
$this->usage() === $argument->usage();
}
/**
* Generate the help for this argument.
*
* @param int $width The width to make the name of the option.
* @return string
*/
public function help(int $width = 0): string
{
$name = $this->_name;
if (strlen($name) < $width) {
$name = str_pad($name, $width, ' ');
}
$optional = '';
if (!$this->isRequired()) {
$optional = ' <comment>(optional)</comment>';
}
if ($this->_choices) {
$optional .= sprintf(' <comment>(choices: %s)</comment>', implode('|', $this->_choices));
}
if ($this->_default !== null) {
$optional .= sprintf(' <comment>default: "%s"</comment>', $this->_default);
}
if ($this->_separator) {
$optional .= sprintf(' <comment>(separator: "%s")</comment>', $this->_separator);
}
return sprintf('%s%s%s', $name, $this->_help, $optional);
}
/**
* Get the usage value for this argument
*
* @return string
*/
public function usage(): string
{
$name = $this->_name;
if ($this->_choices) {
$name = implode('|', $this->_choices);
}
$name = '<' . $name . '>';
if (!$this->isRequired()) {
return '[' . $name . ']';
}
return $name;
}
/**
* Get the default value for this argument
*
* @return string|null
*/
public function defaultValue(): ?string
{
return $this->_default;
}
/**
* Check if this argument is a required argument
*
* @return bool
*/
public function isRequired(): bool
{
return $this->_required;
}
/**
* Get the value of the separator.
*
* @return string|null Value of this->_separator.
*/
public function separator(): ?string
{
return $this->_separator;
}
/**
* Check that $value is a valid choice for this argument.
*
* @param string $value The choice to validate.
* @return true
* @throws \Cake\Console\Exception\ConsoleException
*/
public function validChoice(string $value): bool
{
if ($this->_choices === []) {
return true;
}
if ($value && $this->_separator) {
$values = explode($this->_separator, $value);
} else {
$values = [$value];
}
$unwanted = array_filter($values, fn(string $value) => !in_array($value, $this->_choices, true));
if ($unwanted) {
throw new ConsoleException(
sprintf(
'`%s` is not a valid value for `%s`. Please use one of `%s`',
$value,
$this->_name,
implode('|', $this->_choices),
),
);
}
return true;
}
/**
* Append this arguments XML representation to the passed in SimpleXml object.
*
* @param \SimpleXMLElement $parent The parent element.
* @return \SimpleXMLElement The parent with this argument appended.
*/
public function xml(SimpleXMLElement $parent): SimpleXMLElement
{
$option = $parent->addChild('argument');
assert($option !== null);
$option->addAttribute('name', $this->_name);
$option->addAttribute('help', $this->_help);
$option->addAttribute('required', (string)(int)$this->isRequired());
if ($this->separator() !== null) {
$option->addAttribute('separator', $this->separator());
}
$choices = $option->addChild('choices');
foreach ($this->_choices as $valid) {
$choices->addChild('choice', $valid);
}
if ($this->_default !== null) {
$option->addAttribute('default', $this->_default);
}
return $parent;
}
}