-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCLI.php
More file actions
202 lines (173 loc) · 4.21 KB
/
CLI.php
File metadata and controls
202 lines (173 loc) · 4.21 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
<?php
namespace Utopia\CLI;
use Exception;
use Utopia\Hook;
use Utopia\Traits\Hooks;
use Utopia\Traits\Resources;
use Utopia\Validator;
class CLI
{
use Resources, Hooks;
/**
* Command
*
* The name of the command requested for this process
*
* @var string
*/
protected string $command = '';
/**
* 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 = [];
/**
* CLI constructor.
*
* @param array $args
*
* @throws Exception
*/
public function __construct(array $args = [])
{
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);
}
/**
* 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;
}
/**
* 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);
$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 isset($this->tasks[$this->command]) ? $this->tasks[$this->command] : null;
}
/**
* Run
*
* @return $this
*/
public function run(): self
{
$command = $this->match();
try {
if ($command) {
/**
* Call init hooks
*/
$this->callHooks(self::$init, params: $this->args);
/**
* Call the command hook
*/
$this->callHook($command, params: $this->args);
/**
* Call shutdown hooks
*/
$this->callHooks(self::$shutdown, params: $this->args);
} else {
throw new Exception('No command found');
}
} catch (Exception $e) {
self::setResource('error', fn () => $e);
$this->callHooks(self::$errors, params: $this->args);
}
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;
}
public static function reset(): void
{
self::$resourcesCallbacks = [];
self::$init = [];
self::$shutdown = [];
self::$errors = [];
}
}