-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathColor.php
411 lines (369 loc) · 10.3 KB
/
Color.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
<?php declare(strict_types=1);
/**
* This file is part of toolkit/cli-utils.
*
* @link https://github.com/php-toolkit/cli-utils
* @author https://github.com/inhere
* @license MIT
*/
namespace Toolkit\Cli;
use Toolkit\Cli\Color\ANSICode;
use Toolkit\Cli\Color\ColorCode;
use Toolkit\Cli\Color\ColorTag;
use function array_filter;
use function array_keys;
use function implode;
use function is_array;
use function is_string;
use function preg_replace;
use function sprintf;
use function strip_tags;
use function strpos;
use const PHP_EOL;
/**
* Class Color
*
* Usage:
*
* ```php
* echo Color::red('hello');
* echo Color::info('hello');
* ```
*
* @package Toolkit\Cli
* // basic
* @method static string red(string $text)
* @method static string blue(string $text)
* @method static string cyan(string $text)
* @method static string black(string $text)
* @method static string brown(string $text)
* @method static string green(string $text)
* @method static string white(string $text)
* @method static string yellow(string $text)
* @method static string magenta(string $text)
*
* // alert
* @method static string info(string $text)
* @method static string danger(string $text)
* @method static string error(string $text)
* @method static string notice(string $text)
* @method static string warning(string $text)
* @method static string success(string $text)
*
* // more please @see Color::STYLES
*/
class Color extends ANSICode
{
// Regex to match color tags
public const COLOR_TAG = '/<([a-z=;]+)>(.*?)<\/\\1>/s';
// CLI color template
public const COLOR_TPL = "\033[%sm%s\033[0m";
/**
* There are some internal styles
* custom style: fg;bg;opt
*
* @var array
*/
public const STYLES = [
// basic
'normal' => '39',// no color
'red' => '0;31',
'red1' => '1;31',
'blue' => '0;34',
'cyan' => '0;36',
'cyan1' => '1;36',
'black' => '0;30',
'green' => '0;32',
'green1' => '1;32',
'brown' => '0;33',
'brown1' => '1;33',
'white' => '1;37',
'ylw0' => '0;33',
'ylw' => '1;33',
'yellow0' => '0;33',
'yellow' => '1;33',
'mga0' => '0;35',
'magenta0' => '0;35',
'mga' => '1;35',
'mga1' => '1;35',
'magenta' => '1;35',
// alert
'suc' => '1;32',// same 'green' and 'bold'
'success' => '1;32',
'info' => '0;32',// same 'green'
'comment' => '0;33',// same 'brown'
'cmd' => '0;33',// same 'brown'
'note' => '36;1',
'notice' => '36;4',
'warn' => '0;30;43',
'warning' => '0;30;43',
'code' => '0;95',// same 'red'
'danger' => '0;31',// same 'red'
'err' => '97;41',
'error' => '97;41',
// extra
'darkDray' => '90',
'dark_gray' => '90',
'hiRed' => '91',
'hiRed1' => '1;91',
'hiGreen' => '92',
'hiGreen1' => '1;92',
'hiYellow' => '93',
'hiYellow1' => '1;93',
'hiBlue' => '94',
'hiBlue1' => '1;94',
'hiMagenta' => '95',
'hiMagenta1' => '1;95',
'hiCyan' => '96',
'hiCyan1' => '1;96',
// extra
'lightRedEx' => '91',
'light_red_ex' => '91',
'lightGreenEx' => '92',
'light_green_ex' => '92',
'lightYellow' => '93',
'light_yellow' => '93',
'lightBlueEx' => '94',
'light_blue_ex' => '94',
'lightMagenta' => '95',
'light_magenta' => '95',
'lightCyanEx' => '96',
'light_cyan_ex' => '96',
'whiteEx' => '97',
'white_ex' => '97',
// option
'b' => '0;1',
'bold' => '0;1',
'fuzzy' => '0;2',
'i' => '0;3',
'italic' => '0;3',
'us' => '0;4',
'underscore' => '0;4',
'blink' => '5',
'reverse' => '7',
'concealed' => '8',
// ---------- The following is deprecated ----------
'lightRed' => '1;31',
'light_red' => '1;31',
'lightGreen' => '1;32',
'light_green' => '1;32',
'lightBlue' => '1;34',
'light_blue' => '1;34',
'lightCyan' => '1;36',
'light_cyan' => '1;36',
'lightDray' => '37',
'light_gray' => '37',
];
/**
* Flag to remove color codes from the output
*
* @var bool
*/
private static bool $noColor = false;
/**
* Force render color code
*
* @var bool
*/
private static bool $forceColor = false;
/**
* @param string $method
* @param array $args
*
* @return string
*/
public static function __callStatic(string $method, array $args)
{
if (isset(self::STYLES[$method])) {
return self::render($args[0], $method);
}
return '';
}
/**
* Apply style for text
*
* @param string $style
* @param string $text
*
* @return string
*/
public static function apply(string $style, string $text): string
{
return self::render($text, $style);
}
/**
* Format and print to STDOUT
*
* @param string $format
* @param mixed ...$args
*/
public static function printf(string $format, ...$args): void
{
echo self::render(sprintf($format, ...$args));
}
/**
* Print colored message to STDOUT
*
* @param array|string $messages
* @param array|string $style
*/
public static function println(array|string $messages, array|string $style = 'info'): void
{
$str = is_array($messages) ? implode("\n", $messages) : (string)$messages;
echo self::render($str, $style) . PHP_EOL;
}
/**
* @param string $text
* @param string $tag
*
* @return string
*/
public static function addTag(string $text, string $tag = 'info'): string
{
return ColorTag::add($text, $tag);
}
/*******************************************************************************
* color render
******************************************************************************/
/**
* Render text, apply color code
*
* @param string $text
* @param array|string|null $style
* - string: 'green', 'blue'
* - array: [Color::FG_GREEN, Color::BG_WHITE, Color::UNDERSCORE]
*
* @return string
*/
public static function render(string $text, array|string|null $style = null): string
{
if (!$text) {
return $text;
}
// shouldn't render color, clear color code.
if (!self::isShouldRenderColor()) {
return self::clearColor($text);
}
$color = '';
// use defined style: 'green'
if (is_string($style)) {
$color = self::STYLES[$style] ?? '';
// custom style: [self::FG_GREEN, self::BG_WHITE, self::UNDERSCORE]
} elseif (is_array($style)) {
$color = implode(';', $style);
// user color tag: <info>message</info>
} elseif (strpos($text, '</') > 0) {
return self::parseTag($text);
}
if (!$color) {
return $text;
}
// $result = chr(27). "$color{$text}" . chr(27) . chr(27) . "[0m". chr(27);
return sprintf(self::COLOR_TPL, $color, $text);
}
/**
* parse color tag e.g: <info>message</info>
*
* @param string $text
* @param bool $recursive
*
* @return string
*/
public static function parseTag(string $text, bool $recursive = false): string
{
return ColorTag::parse($text, $recursive);
}
/**
* @return bool
*/
public static function isShouldRenderColor(): bool
{
// force render color code
if (self::$forceColor) {
return true;
}
// disable color
if (self::$noColor) {
return false;
}
// current env is support render color?
return Cli::isSupportColor();
}
/**
* Create a color style code from a parameter string.
*
* @param string $string e.g 'fg=white;bg=black;options=bold,underscore;extra=1'
*
* @return string
*/
public static function stringToCode(string $string): string
{
return ColorCode::fromString($string)->toString();
}
/**
* @param string $text
* @param bool $stripTag
*
* @return string
*/
public static function clearColor(string $text, bool $stripTag = true): string
{
// return preg_replace('/\033\[(?:\d;?)+m/', '' , "\033[0;36mtext\033[0m");
return preg_replace('/\033\[(?:\d;?)+m/', '', $stripTag ? strip_tags($text) : $text);
}
/**
* @param string $style
*
* @return bool
*/
public static function hasStyle(string $style): bool
{
return isset(self::STYLES[$style]);
}
/**
* get all style names
*
* @return array
*/
public static function getStyles(): array
{
return array_filter(array_keys(self::STYLES), static function ($style) {
return !strpos($style, '_');
});
}
/**
* reset color config
*/
public static function resetConfig(): void
{
self::$noColor = self::$forceColor = false;
}
/**
* @return bool
*/
public static function isNoColor(): bool
{
return self::$noColor;
}
/**
* @param bool $noColor
*/
public static function setNoColor(bool $noColor): void
{
self::$noColor = $noColor;
}
/**
* @return bool
*/
public static function isForceColor(): bool
{
return self::$forceColor;
}
/**
* @param bool $forceColor
*/
public static function setForceColor(bool $forceColor): void
{
self::$forceColor = $forceColor;
}
}