-
Notifications
You must be signed in to change notification settings - Fork 33
/
CliLogger.php
130 lines (114 loc) · 3.83 KB
/
CliLogger.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
<?php
use Psr\Log\AbstractLogger;
/**
* Based on:
* https://gist.github.com/sallar/5257396.
*/
class CliLogger extends AbstractLogger
{
public static $foreground_colors = [
'bold' => '1',
'dim' => '2',
'black' => '0;30',
'dark_gray' => '1;30',
'blue' => '0;34',
'light_blue' => '1;34',
'green' => '0;32',
'light_green' => '1;32',
'cyan' => '0;36',
'light_cyan' => '1;36',
'red' => '0;31',
'light_red' => '1;31',
'purple' => '0;35',
'light_purple' => '1;35',
'brown' => '0;33',
'yellow' => '1;33',
'light_gray' => '0;37',
'white' => '1;37',
'normal' => '0;39',
];
public static $background_colors = [
'black' => '40',
'red' => '41',
'green' => '42',
'yellow' => '43',
'blue' => '44',
'magenta' => '45',
'cyan' => '46',
'light_gray' => '47',
];
public static $options = [
'underline' => '4',
'blink' => '5',
'reverse' => '7',
'hidden' => '8',
];
public static $color = [
'emergency' => ['foreground' => 'white', 'background' => ['red', 'underline']],
'alert' => ['foreground' => 'white', 'background' => ['red']],
'critical' => ['foreground' => 'red'],
'error' => ['foreground' => 'light_red'],
'warning' => ['foreground' => 'yellow'],
'notice' => ['foreground' => 'normal'],
'info' => ['foreground' => 'dark_gray'],
'debug' => ['foreground' => 'dim'],
];
/**
* Catches static calls (Wildcard).
*
* @param string $foreground_color Text Color
* @param array $args Options
*
* @return string Colored string
*/
public static function __callStatic($foreground_color, $args)
{
[$string, $background] = $args;
$colored_string = '';
// Check if given foreground color found
if (isset(self::$foreground_colors[$foreground_color])) {
$colored_string .= "\033[".self::$foreground_colors[$foreground_color].'m';
} else {
exit($foreground_color.' not a valid color');
}
if (is_array($background)) {
foreach ($background as $option) {
// Check if given background color found
if (isset(self::$background_colors[$option])) {
$colored_string .= "\033[".self::$background_colors[$option].'m';
} elseif (isset(self::$options[$option])) {
$colored_string .= "\033[".self::$options[$option].'m';
}
}
}
// Add string and end coloring
$colored_string .= $string."\033[0m";
return $colored_string;
}
/**
* {@inheritdoc}
*/
public function log($level, $message, array $context = []): void
{
$foreground = self::$color[$level]['foreground'];
$background = self::$color[$level]['background'] ?? null;
$level = strtoupper($level);
$padding = str_repeat(' ', 10 - strlen($level));
if (!empty($context)) {
$contextContent = [];
foreach ($context as $key => $value) {
if (is_array($value) || is_object($value)) {
$value = str_replace("\n", "\n\t\t", print_r($value, true));
}
$contextContent[] = sprintf(
"\t\t%s%s",
self::dark_gray($key, ['bold']),
self::dark_gray(': '.$value, null)
);
}
$parsedContext = "\n".implode("\n", $contextContent);
}
$formattedMessage = sprintf("[ %s ]%s%s%s\n", $level, $padding, $message, $parsedContext ?? null);
echo self::$foreground($formattedMessage, $background);
}
}