2012-11-05 12:55:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Console;
|
|
|
|
|
|
|
|
use Symfony\Component\Console\Formatter\OutputFormatter;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*/
|
|
|
|
class HtmlOutputFormatter extends OutputFormatter
|
|
|
|
{
|
2021-08-30 12:14:19 +00:00
|
|
|
/** @var array<int, string> */
|
2012-11-05 12:55:23 +00:00
|
|
|
private static $availableForegroundColors = array(
|
|
|
|
30 => 'black',
|
|
|
|
31 => 'red',
|
|
|
|
32 => 'green',
|
|
|
|
33 => 'yellow',
|
|
|
|
34 => 'blue',
|
|
|
|
35 => 'magenta',
|
|
|
|
36 => 'cyan',
|
2015-09-28 09:51:14 +00:00
|
|
|
37 => 'white',
|
2012-11-05 12:55:23 +00:00
|
|
|
);
|
2021-08-30 12:14:19 +00:00
|
|
|
/** @var array<int, string> */
|
2012-11-05 12:55:23 +00:00
|
|
|
private static $availableBackgroundColors = array(
|
|
|
|
40 => 'black',
|
|
|
|
41 => 'red',
|
|
|
|
42 => 'green',
|
|
|
|
43 => 'yellow',
|
|
|
|
44 => 'blue',
|
|
|
|
45 => 'magenta',
|
|
|
|
46 => 'cyan',
|
2015-09-28 09:51:14 +00:00
|
|
|
47 => 'white',
|
2012-11-05 12:55:23 +00:00
|
|
|
);
|
2021-08-30 12:14:19 +00:00
|
|
|
/** @var array<int, string> */
|
2012-11-05 12:55:23 +00:00
|
|
|
private static $availableOptions = array(
|
|
|
|
1 => 'bold',
|
|
|
|
4 => 'underscore',
|
|
|
|
//5 => 'blink',
|
|
|
|
//7 => 'reverse',
|
|
|
|
//8 => 'conceal'
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
2013-01-05 19:01:58 +00:00
|
|
|
* @param array $styles Array of "name => FormatterStyle" instances
|
2012-11-05 12:55:23 +00:00
|
|
|
*/
|
|
|
|
public function __construct(array $styles = array())
|
|
|
|
{
|
|
|
|
parent::__construct(true, $styles);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function format($message)
|
|
|
|
{
|
|
|
|
$formatted = parent::format($message);
|
|
|
|
|
2015-06-12 16:23:18 +00:00
|
|
|
$clearEscapeCodes = '(?:39|49|0|22|24|25|27|28)';
|
2015-06-30 14:38:32 +00:00
|
|
|
|
2015-06-12 16:23:18 +00:00
|
|
|
return preg_replace_callback("{\033\[([0-9;]+)m(.*?)\033\[(?:".$clearEscapeCodes.";)*?".$clearEscapeCodes."m}s", array($this, 'formatHtml'), $formatted);
|
2012-11-05 12:55:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private function formatHtml($matches)
|
|
|
|
{
|
|
|
|
$out = '<span style="';
|
|
|
|
foreach (explode(';', $matches[1]) as $code) {
|
|
|
|
if (isset(self::$availableForegroundColors[$code])) {
|
|
|
|
$out .= 'color:'.self::$availableForegroundColors[$code].';';
|
|
|
|
} elseif (isset(self::$availableBackgroundColors[$code])) {
|
|
|
|
$out .= 'background-color:'.self::$availableBackgroundColors[$code].';';
|
|
|
|
} elseif (isset(self::$availableOptions[$code])) {
|
|
|
|
switch (self::$availableOptions[$code]) {
|
|
|
|
case 'bold':
|
|
|
|
$out .= 'font-weight:bold;';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'underscore':
|
|
|
|
$out .= 'text-decoration:underline;';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-18 21:06:36 +00:00
|
|
|
return $out.'">'.$matches[2].'</span>';
|
2012-11-05 12:55:23 +00:00
|
|
|
}
|
|
|
|
}
|