-
Notifications
You must be signed in to change notification settings - Fork 613
Expand file tree
/
Copy pathCommand.php
More file actions
484 lines (417 loc) · 12.8 KB
/
Copy pathCommand.php
File metadata and controls
484 lines (417 loc) · 12.8 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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<?php
declare(strict_types=1);
/**
* This file is part of the Phalcon Developer Tools.
*
* (c) Phalcon Team <team@phalcon.io>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Phalcon\DevTools\Commands;
use Phalcon\Config\Config;
use Phalcon\Config\Adapter\Ini as IniConfig;
use Phalcon\Config\Adapter\Json as JsonConfig;
use Phalcon\Config\Adapter\Yaml as YamlConfig;
use Phalcon\DevTools\Builder\Path;
use Phalcon\DevTools\Script;
use Phalcon\DevTools\Script\Color;
use Phalcon\Events\Manager as EventsManager;
use Phalcon\Filter;
abstract class Command implements CommandsInterface
{
/**
* Script
*
* @var Script
*/
protected $script;
/**
* Events Manager
*
* @var EventsManager
*/
protected $eventsManager;
/**
* Output encoding of the script.
*
* @var string
*/
protected $encoding = 'UTF-8';
/**
* Parameters received by the script.
*
* @var array
*/
protected $parameters = [];
/**
* Possible prepared arguments.
*
* @var array
*/
protected $preparedArguments = [];
/**
* @var Path
*/
protected $path;
/**
* @param Script $script
* @param EventsManager $eventsManager
*/
final public function __construct(Script $script, EventsManager $eventsManager)
{
$this->script = $script;
$this->eventsManager = $eventsManager;
$this->path = new Path();
}
/**
* Events Manager
*
* @param EventsManager $eventsManager
*/
public function setEventsManager(EventsManager $eventsManager): void
{
$this->eventsManager = $eventsManager;
}
/**
* Returns the events manager
*
* @return EventsManager
*/
public function getEventsManager(): EventsManager
{
return $this->eventsManager;
}
/**
* Sets the script that will execute the command
*
* @param Script $script
*/
public function setScript(Script $script): void
{
$this->script = $script;
}
/**
* Returns the script that will execute the command
*
* @return Script
*/
public function getScript(): Script
{
return $this->script;
}
/**
* @param string $path Config path
*
* @return Config
* @throws CommandsException
*/
protected function getConfig(string $path): Config
{
foreach (['app/config/', 'config/'] as $configPath) {
foreach (['ini', 'php', 'json', 'yaml', 'yml'] as $extension) {
if (file_exists($path . $configPath . "config." . $extension)) {
return $this->loadConfig($path . $configPath . "/config." . $extension);
}
}
}
$directory = new \RecursiveDirectoryIterator('.');
$iterator = new \RecursiveIteratorIterator($directory);
foreach ($iterator as $f) {
if (preg_match('/config\.(php|ini|json|yaml|yml)$/i', $f->getPathName())) {
return $this->loadConfig($f->getPathName());
}
}
throw new CommandsException("Builder can't locate the configuration file.");
}
/**
* Determines correct adapter by file name
* and load config
*
* @param string $fileName Config file name
*
* @return Config
* @throws CommandsException
*/
protected function loadConfig(string $fileName): Config
{
$pathInfo = pathinfo($fileName);
if (!isset($pathInfo['extension'])) {
throw new CommandsException("Config file extension not found.");
}
$extension = strtolower(trim($pathInfo['extension']));
switch ($extension) {
case 'php':
$config = include($fileName);
if (is_array($config)) {
$config = new Config($config);
}
return $config;
case 'ini':
return new IniConfig($fileName);
case 'json':
return new JsonConfig($fileName);
case 'yaml':
case 'yml':
return new YamlConfig($fileName);
default:
throw new CommandsException("Builder can't locate the configuration file.");
}
}
/**
* Parse the parameters passed to the script.
*
* @param array $parameters Command parameters
* @param array $possibleAlias Command aliases
* @return array
*
* @throws CommandsException
*
* @todo Refactor
*/
public function parseParameters(array $parameters = [], $possibleAlias = []): array
{
if (count($parameters) == 0) {
$parameters = $this->getPossibleParams();
}
$arguments = [];
foreach ($parameters as $parameter => $description) {
if (strpos($parameter, '=') !== false) {
$parameterParts = explode('=', $parameter);
if (count($parameterParts) !== 2) {
throw new CommandsException("Invalid definition for the parameter '$parameter'");
}
if (strlen($parameterParts[0]) == 0) {
throw new CommandsException("Invalid definition for the parameter '$parameter'");
}
if (!in_array($parameterParts[1], ['s', 'i', 'l'])) {
throw new CommandsException("Incorrect data type on parameter '$parameter'");
}
$this->preparedArguments[$parameterParts[0]] = true;
$arguments[$parameterParts[0]] = [
'have-option' => true,
'option-required' => true,
'data-type' => $parameterParts[1],
];
continue;
}
if (!preg_match('/([a-zA-Z0-9]+)/', $parameter)) {
throw new CommandsException("Invalid parameter '$parameter'");
}
$this->preparedArguments[$parameter] = true;
$arguments[$parameter] = [
'have-option' => false,
'option-required' => false
];
}
$param = '';
$paramName = '';
$receivedParams = [];
$numberArguments = count($_SERVER['argv']);
for ($i = 1; $i < $numberArguments; $i++) {
$argv = $_SERVER['argv'][$i];
if (is_string($argv) &&
preg_match('#^([\-]{1,2})([a-zA-Z0-9][a-zA-Z0-9\-]*)(=(.*)){0,1}$#', $argv, $matches)
) {
if (strlen($matches[1]) == 1) {
$param = substr($matches[2], 1);
$paramName = substr($matches[2], 0, 1);
} else {
if (strlen($matches[2]) < 2) {
throw new CommandsException("Invalid script parameter '$argv'");
}
$paramName = $matches[2];
}
if (!isset($this->preparedArguments[$paramName])) {
if (!isset($possibleAlias[$paramName])) {
throw new CommandsException("Unknown parameter '$paramName'");
}
$paramName = $possibleAlias[$paramName];
}
if (isset($arguments[$paramName])) {
if ($param != '') {
$receivedParams[$paramName] = $param;
$param = '';
$paramName = '';
}
if (!$arguments[$paramName]['have-option']) {
$receivedParams[$paramName] = true;
} elseif (isset($matches[4])) {
$receivedParams[$paramName] = $matches[4];
}
}
continue;
}
$param = $argv;
if ($paramName != '') {
/**
* @psalm-suppress InvalidArgument
*/
if (!empty($arguments[$paramName]['have-option']) && $param == '') {
throw new CommandsException("The parameter '$paramName' requires an option");
}
$receivedParams[$paramName] = $param;
$param = '';
$paramName = '';
} else {
$receivedParams[$i - 1] = $param;
$param = '';
}
}
foreach (['ini', 'php', 'json', 'yaml'] as $extension) {
$customConfig = "config.{$extension}";
if (file_exists($customConfig)) {
$config = $this->loadConfig($customConfig);
$commandName = $this->getCommands()[0];
$optionsToMerge = $config->get($commandName);
if (!empty($optionsToMerge)) {
$receivedParams = array_merge($optionsToMerge->toArray(), $receivedParams);
}
break;
}
}
$this->parameters = $receivedParams;
return $receivedParams;
}
/**
* Sets the output encoding of the script.
* @param string $encoding
*
* @return $this
*/
public function setEncoding($encoding)
{
$this->encoding = $encoding;
return $this;
}
/**
* Returns all received options.
*
* @param mixed $filters Filter name or array of filters [Optional]
*
* @return array
*/
public function getOptions($filters = null): array
{
if (!$filters) {
return $this->parameters;
}
$result = [];
foreach ($this->parameters as $param) {
$result[] = $this->filter($param, $filters);
}
return $result;
}
/**
* Returns the value of an option received.
*
* @param mixed $option Option name or array of options
* @param mixed $filters Filter name or array of filters [Optional]
* @param mixed $defaultValue Default value [Optional]
*
* @return mixed
*/
public function getOption($option, $filters = null, $defaultValue = null)
{
if (is_array($option)) {
foreach ($option as $optionItem) {
if (isset($this->parameters[$optionItem])) {
if ($filters !== null) {
return $this->filter($this->parameters[$optionItem], $filters);
}
return $this->parameters[$optionItem];
}
}
return $defaultValue;
}
if (isset($this->parameters[$option])) {
if ($filters !== null) {
return $this->filter($this->parameters[$option], $filters);
}
return $this->parameters[$option];
}
return $defaultValue;
}
/**
* Indicates whether the script was a particular option.
*
* @param string|string[] $option
* @return bool
*/
public function isReceivedOption($option): bool
{
if (!is_array($option)) {
$option = [$option];
}
foreach ($option as $op) {
if (isset($this->parameters[$op])) {
return true;
}
}
return false;
}
/**
* Filters a value
*
* @param mixed $paramValue
* @param array $filters
*
* @return mixed
*/
protected function filter($paramValue, $filters)
{
$filter = new Filter();
return $filter->sanitize($paramValue, $filters);
}
/**
* Prints the available options in the script
*
* @param array $parameters
*/
public function printParameters($parameters): void
{
$length = 0;
foreach ($parameters as $parameter => $description) {
if ($length == 0) {
$length = strlen($parameter);
}
if (strlen($parameter) > $length) {
$length = strlen($parameter);
}
}
print Color::head('Options:') . PHP_EOL;
foreach ($parameters as $parameter => $description) {
print Color::colorize(' --' . $parameter . str_repeat(' ', $length - strlen($parameter)), Color::FG_GREEN);
print Color::colorize(" " . $description) . PHP_EOL;
}
}
/**
* Returns the processed parameters
*
* @return array
*/
public function getParameters(): array
{
return $this->parameters;
}
/**
* {@inheritdoc}
*
* @return bool
*/
public function canBeExternal(): bool
{
return false;
}
/**
* {@inheritdoc}
*
* @param string $identifier
*
* @return bool
*/
public function hasIdentifier($identifier): bool
{
return in_array($identifier, $this->getCommands(), true);
}
}