-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCLI.php
More file actions
433 lines (370 loc) · 9.68 KB
/
CLI.php
File metadata and controls
433 lines (370 loc) · 9.68 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
<?php
namespace Utopia\CLI;
use Exception;
use Utopia\CLI\Adapters\Generic;
use Utopia\DI\Container;
use Utopia\Servers\Hook;
use Utopia\Validator;
class CLI
{
/**
* Adapter
*
* Type of adapter to pass the callable to
*
* @var Adapter
*/
protected Adapter $adapter;
/**
* Command
*
* The name of the command requested for this process
*
* @var string
*/
protected string $command = '';
/**
* @var Container
*/
protected Container $container;
protected ?Container $parentContainer = null;
/**
* Args
*
* List of arguments passed to this process
*
* @var array
*/
protected array $args = [];
/**
* Tasks
*
* List of commands tasks for this CLI process
*
* @var array
*/
protected array $tasks = [];
/**
* Error
*
* An error callback
*
* @var Hook[]
*/
protected $errors = [];
/**
* Init
*
* A callback function that is initialized on application start
*
* @var Hook[]
*/
protected array $init = [];
/**
* Shutdown
*
* A callback function that is initialized on application end
*
* @var Hook[]
*/
protected array $shutdown = [];
/**
* CLI constructor.
*
* @param Adapter|null $adapter
* @param array $args
* @param Container|null $container
*
* @throws Exception
*/
public function __construct(?Adapter $adapter = null, array $args = [], ?Container $container = null)
{
if (\php_sapi_name() !== 'cli') {
throw new Exception('CLI tasks can only work from the command line');
}
$this->args = $this->parse((! empty($args) || ! isset($_SERVER['argv'])) ? $args : $_SERVER['argv']);
@\cli_set_process_title($this->command);
$this->adapter = $adapter ?? new Generic();
$this->parentContainer = $container;
$this->container = new Container($container);
}
/**
* Init
*
* Set a callback function that will be initialized on application start
*
* @return Hook
*/
public function init(): Hook
{
$hook = new Hook();
$this->init[] = $hook;
return $hook;
}
/**
* Shutdown
*
* Set a callback function that will be initialized on application end
*
* @return Hook
*/
public function shutdown(): Hook
{
$hook = new Hook();
$this->shutdown[] = $hook;
return $hook;
}
/**
* Error
*
* An error callback for failed or no matched requests
*
* @return Hook
*/
public function error(): Hook
{
$hook = new Hook();
$this->errors[] = $hook;
return $hook;
}
/**
* Task
*
* Add a new command task
*
* @param string $name
* @return Task
*/
public function task(string $name): Task
{
$task = new Task($name);
$this->tasks[$name] = $task;
return $task;
}
/**
* If a resource has been created return it, otherwise create it and then return it
*
* @param string $name
* @return mixed
*
* @throws Exception
*/
public function getResource(string $name): mixed
{
if (! $this->container->has($name)) {
throw new Exception('Failed to find resource: "'.$name.'"');
}
return $this->container->get($name);
}
/**
* Get Resources By List
*
* @param array $list
* @return array
*
* @throws Exception
*/
public function getResources(array $list): array
{
$resources = [];
foreach ($list as $name) {
$resources[$name] = $this->getResource($name);
}
return $resources;
}
/**
* Set a new resource callback
*
* @param string $name
* @param callable $callback
* @param array $dependencies
* @return void
*
* @throws Exception
*/
public function setResource(string $name, callable $callback, array $dependencies = []): void
{
$this->container->set($name, $callback, $dependencies);
}
public function getContainer(): Container
{
return $this->container;
}
/**
* task-name --foo=test
*
* @param array $args
* @return array
*
* @throws Exception
*/
public function parse(array $args): array
{
\array_shift($args); // Remove script path from args
if (isset($args[0])) {
$this->command = \array_shift($args);
} else {
throw new Exception('Missing command');
}
$output = [];
foreach ($args as &$arg) {
if (\substr($arg, 0, 2) === '--') {
$arg = \substr($arg, 2);
}
}
/**
* Refer to this answer
* https://stackoverflow.com/questions/18669499/php-issue-with-looping-over-an-array-twice-using-foreach-and-passing-value-by-re/18669732
*/
unset($arg);
foreach ($args as $arg) {
$pair = explode('=', $arg, 2);
$key = $pair[0];
$value = $pair[1];
$output[$key][] = $value;
}
foreach ($output as $key => $value) {
/**
* If there is only one element in a particular key
* unshift the value out of the array
*/
if (count($value) == 1) {
$output[$key] = array_shift($output[$key]);
}
}
return $output;
}
/**
* Find the command that should be triggered
*
* @return Task|null
*/
public function match(): ?Task
{
return $this->tasks[$this->command] ?? null;
}
/**
* Get Params
* Get runtime params for the provided Hook
*
* @param Hook $hook
* @return array
*
* @throws Exception
*/
protected function getParams(Hook $hook): array
{
$params = [];
foreach ($hook->getParams() as $key => $param) {
$value = (isset($this->args[$key])) ? $this->args[$key] : $param['default'];
$this->validate($key, $param, $value);
$params[$this->camelCaseIt($key)] = $value;
}
foreach ($hook->getDependencies() as $dependency) {
if (array_key_exists($this->camelCaseIt($dependency), $params)) {
continue;
}
$params[$this->camelCaseIt($dependency)] = $this->getResource($dependency);
}
return $params;
}
/**
* Run
*
* @return $this
*
* @throws Exception
*/
public function run(): self
{
$this->adapter->start(function () {
$command = $this->match();
try {
if ($command) {
foreach ($this->init as $hook) {
\call_user_func_array($hook->getAction(), $this->getParams($hook));
}
// Call the callback with the matched positions as params
\call_user_func_array($command->getAction(), $this->getParams($command));
foreach ($this->shutdown as $hook) {
\call_user_func_array($hook->getAction(), $this->getParams($hook));
}
} else {
throw new Exception('No command found');
}
} catch (Exception $e) {
foreach ($this->errors as $hook) {
$this->setResource('error', fn () => $e);
\call_user_func_array($hook->getAction(), $this->getParams($hook));
}
}
});
return $this;
}
/**
* Get list of all tasks
*
* @return Task[]
*/
public function getTasks(): array
{
return $this->tasks;
}
/**
* Get list of all args
*
* @return array
*/
public function getArgs(): array
{
return $this->args;
}
/**
* Validate Param
*
* Creates an validator instance and validate given value with given rules.
*
* @param string $key
* @param array $param
* @param mixed $value
*
* @throws Exception
*/
protected function validate(string $key, array $param, $value): void
{
if ('' !== $value) {
// checking whether the class exists
$validator = $param['validator'];
if (\is_callable($validator)) {
$validator = $validator();
}
// is the validator object an instance of the Validator class
if (! $validator instanceof Validator) {
throw new Exception('Validator object is not an instance of the Validator class', 500);
}
if (! $validator->isValid($value)) {
throw new Exception('Invalid '.$key.': '.$validator->getDescription(), 400);
}
} else {
if (! $param['optional']) {
throw new Exception('Param "'.$key.'" is not optional.', 400);
}
}
}
public function setContainer(Container $container): self
{
$this->parentContainer = $container;
$this->container = new Container($container);
return $this;
}
public function reset(): void
{
$this->container = new Container($this->parentContainer);
}
private function camelCaseIt($key): string
{
$key = str_replace('-', '_', $key);
$camelCase = \lcfirst(\str_replace('_', '', \ucwords($key, '_')));
return $camelCase;
}
}