This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommand.php
456 lines (399 loc) · 10.7 KB
/
Command.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
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
<?php
namespace aubreypwd\PHP_CLI;
use \splitbrain\phpcli\Options;
use \splitbrain\phpcli\Colors;
/**
* CLI
*
* @TODO Methods to do colors easier
* - ->log( )
*
* @since 1.0.0
*/
abstract class Command extends \splitbrain\phpcli\CLI {
abstract protected function setup( Options $options );
abstract protected function main( Options $options );
/**
* Colors
*
* @since 1.0.0
*
* @var \splitbrain\phpcli\Colors
*/
public $colors;
/**
* Construct
*
* @since 1.0.0
*
* @return void
*/
public function __construct() {
$this->colors = new Colors();
parent::__construct();
}
/**
* Set the description of the command.
*
* @since 1.0.0
*
* @param Options $options Options.
* @param string $help Description string.
*/
protected function set_desc( Options $options, string $help ) : void {
$options->setHelp( $help );
}
/**
* Log something out to console.
*
* This method is a bit of a hack to do things like:
*
* $this->log( "A generic message to the console." );
*
* That way you can express something out without having to format
* it using debug, info, warning, etc.
*
* But, if you want to use those designations (see parent::$logLevel),
* you can by setting $level normally to a log level and using
* $message instead.
*
* @since 1.0.0
*
* @param string $level If you set this to anything in
* parent::$logLevel we'll use parent::logMessage()
* and forward your $message to the console.
* But if it is not, we will treat $level like the
* message (ignoring $message) to ouput that to
* the console.
* @param string $message If you set $level to anything in
* parent::$logLevel then we will treat $message as
* the message and forward it along to
* parent::logMessage().
* @param array $context Conect (see parent::logMessage()).
* @return void
*/
public function log( $level = '', $message = '', array $context = array() ) {
if ( in_array( $level, array_keys( $this->loglevel ), true ) ) {
// $level is set to something specific, use that.
$this->logMessage($level, $message, $context);
return;
}
// Just log out some text.
echo $this->parse_html( $this->colorize_message( "{$level}\n" ) );
}
/**
* Does the system have the command?
*
* @since 1.0.0
*
* @param string $command The command, e.g. `ls`.
* @return bool
*/
protected function has_command( string $command ) : bool {
if ( empty( $command ) ) {
return false;
}
$exec = exec( "command -v {$command}" );
if ( ! is_string( $exec ) ) {
return false;
}
if ( empty( $exec ) ) {
return false;
}
return basename( trim( $exec ) ) === $command;
}
/**
* Run a command.
*
* You will need to use exec_* tools here to extrapolate data.
*
* @since 1.0.0
*
* @param string $command The command.
* @param bool $quiet Pipe into /dev/null to supress output (you will get no output info).
* @param bool $force Force the run, even if we can't determine the command exists.
* @return array Data about the run.
*/
protected function exec( string $command, $quiet = false, $force = false, ) : array {
if ( ! $force && ! $this->has_command( strtok( $command, ' ' ) ) ) {
return [
'last_line' => '',
'output' => [],
'code' => 1,
];
}
$last_line = exec(
$quiet
? "{$command} &> /dev/null 2>&1" // Re-direct everything.
: "{$command} 2> /dev/null", // Just re-direct errors.
$output,
$code
);
return [
'last_line' => $last_line,
'output' => $output,
'code' => intval( $code )
];
}
/**
* Get the output of aubreypwd\PHP_CLI\CLI::exec().
*
* @since 1.0.0
*
* @param array $result The result from aubreypwd\PHP_CLI\CLI::exec().
* @param string $as Set to `string` to get back a string with \n
* line breaks. Defaults to `array` with an array
* of lines of the output.
* @return string|array See $as.
*/
protected function exec_get_output( array $result, string $as = 'string' ) : string|array {
if ( 'array' !== $as && 'string' !== $as ) {
throw new \InvalidArgumentException( '$as must be set to array|string.' );
}
if ( ! isset( $result['output'] ) || ! is_array( $result['output'] ) ) {
throw new \InvalidArgumentException( 'We can only work with an array from exec().' );
}
return 'array' === $as ? $result['output'] : implode( "\n", $result['output'] );
}
/**
* Get the status of aubreypwd\PHP_CLI\CLI::exec().
*
* @since 1.0.0
*
* @param array $exec The data from aubreypwd\PHP_CLI\CLI::exec().
* @return bool True if no errors, false if there were.
*/
protected function exec_get_status( array $exec ) : bool {
if ( ! is_array( $exec ) || ! isset( $exec['code'] ) ) {
throw new \Exception( 'We can only work with result from aubreypwd\PHP_CLI\CLI::exec().' );
}
return $exec['code'] === 0
? true
: false;
}
/**
* Get the last line of aubreypwd\PHP_CLI\CLI::exec().
*
* @since 1.0.0
*
* @param array $exec Result of aubreypwd\PHP_CLI\CLI::exec().
* @return string
*/
protected function exec_last_line( array $exec ) : string {
return isset( $exec['last_line'] ) ? trim( $exec['last_line'] ) : '';
}
/**
* Run a command in a directory.
*
* You will have to use exec_* tools here to extrapolate data.
*
* @since 1.0.0
*
* @param string $command The command.
* @param string $directory The directory.
* @param bool $quietly Supress output.
* @return array Result data from aubreypwd\PHP_CLI\CLI::exec().
*/
protected function rid( string $command, string $directory, $quietly = false ) : string|array {
if ( ! file_exists( $directory ) ) {
throw new \Exception( "{$directory} doesn't exist." );
}
if ( empty( $command ) ) {
throw new \Exception( '$command is empty.' );
}
return $this->exec( "( cd '{$directory}' && {$command} )", $quietly, true );
}
/**
* Explain/Register an argument.
*
* @since 1.0.0
*
* @param Options $options Options.
* @param string $arg The argument name.
* @param string $help The explanation of the argument.
* @param bool $required Is the argument required?
* @param string $command Command
* @return void
*/
protected function explain_argument( Options $options, string $arg, string $help, bool $required = true, string $command = '' ) : void {
$options->registerArgument( $arg, $help, $required, $command );
}
/**
* Is an argument present (in any position)?
*
* @since 1.0.0
*
* @param Options $options Options.
* @param string $arg Argument name.
* @return bool
*/
protected function arg_present( Options $options, string $arg ) : bool {
return in_array( $arg, $this->get_args( $options ), true );
}
/**
* Get all the arguments.
*
* @since 1.0.0
*
* @param Options $options Options.
* @return array
*/
protected function get_args( Options $options ) : array {
return $options->getArgs();
}
/**
* Get argument of position.
*
* @since 1.0.0
*
* @param Options $options Options.
* @param int $position Position.
* @return string The value of the argument in that position.
*/
protected function get_arg( Options $options, int $position ) : string {
$args = $options->getArgs();
return isset( $args[ $position ] )
? $args[ $position ]
: '';
}
/**
* Explain/Register an option.
*
* @since 1.0.0
*
* @param Options $options Options.
* @param string $long Long version.
* @param string $help Help contents.
* @param mixed|null $short Short version (optional).
* @param bool $explain_arg If it requires an argument, explain it here.
* @param string $command Command.
* @return void
*/
protected function explain_option( Options $options, string $long, string $help, mixed $short = null, string $explain_arg = '', string $command = '' ) : void {
$options->registerOption( $long, $help, $short, empty( $explain_arg ) ? false : $explain_arg, $command );
}
/**
* Get the value of an option of if an option is set.
*
* @since 1.0.0
*
* @param Options $options Options.
* @param string $option Option.
* @return bool|string True or false if it is or is not set.
* String if it's set to a value, e.g. --flag=.
*/
protected function get_opt( Options $options, $option ) : bool|string {
return $options->getOpt( $option );
}
/**
* Show the help.
*
* @since 1.0.0
*
* @param Options $options Options.
* @return void
*/
protected function show_help( Options $options ) : void {
echo $options->help();
}
/**
* Convert HTML.
*
* @since 1.0.0
*
* @param string $message The message which includes HTML.
* @return string The message with known HTML converted.
*/
protected function parse_html( $message ) {
return str_replace(
array(
'<br>',
'<p>',
'</p>',
'<li>',
'</li>',
),
array(
"\n",
"\n",
"\n",
" • ",
""
),
$message
);
}
/**
* Colorize a message.
*
* @since [-NEXT-]
*
* @param string $message The message with colors in HTML tags, e.g.
* "This is <red>bad</red>".
* @return string Colorized message,
*/
protected function colorize_message( string $message ) : string {
foreach ( [
'reset',
'black',
'darkgray',
'blue',
'lightblue',
'green',
'lightgreen',
'cyan',
'lightcyan',
'red',
'lightred',
'purple',
'lightpurple',
'brown',
'yellow',
'lightgray',
'white',
] as $color ) {
$message = str_replace(
array(
"<$color>",
"</$color>",
),
array(
$this->colors->getColorCode( $color ),
$this->colors->getColorCode( 'reset' )
),
$message
);
}
return $message;
}
/**
* Get the running PHP version.
*
* @since 1.0.0
*
* @return string
*/
protected function get_php_version() : string {
return $this->exec_last_line( $this->exec( "php -r 'echo phpversion() . \"\n\";' | sed 's/ *$//g'" ) );
}
/**
* Get the working directory path.
*
* @since 1.0.0
*
* @return string
*/
protected function get_working_dir() : string {
return $this->exec_last_line( $this->exec( 'pwd' ) );
}
/**
* Get the working directory basename.
*
* @since 1.0.0
*
* @return string
*/
protected function get_working_dirname() : string {
return $this->exec_last_line( $this->exec( 'echo "${PWD##*/}"' ) );
}
}