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
|
<?php
/**
* Part of bdrem
*
* PHP version 5
*
* @category Tools
* @package Bdrem
* @author Christian Weiske <cweiske@cweiske.de>
* @copyright 2014 Christian Weiske
* @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
* @link http://cweiske.de/bdrem.htm
*/
namespace bdrem;
/**
* Render events on the terminal as ASCII table
*
* @category Tools
* @package Bdrem
* @author Christian Weiske <cweiske@cweiske.de>
* @copyright 2014 Christian Weiske
* @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
* @version Release: @package_version@
* @link http://cweiske.de/bdrem.htm
*/
class Renderer_Console extends Renderer
{
/**
* HTTP content type
* @var string
*/
protected $httpContentType = 'text/plain; charset=utf-8';
/**
* Use ANSI color codes for output coloring
*
* @var boolean
*/
public $ansi = false;
/**
* @var \Console_Color2
*/
protected $cc;
/**
* Render events as console table
*
* @param array $arEvents Array of events to render
*
* @return string ASCII table
*/
public function render($arEvents)
{
$this->loadConfig();
if ($this->ansi) {
$this->cc = new \Console_Color2();
}
$tbl = new \Console_Table(
CONSOLE_TABLE_ALIGN_LEFT,
array('intersection' => '', 'horizontal' => '-', 'vertical' => ''),
1, null, $this->ansi
);
$tbl->setAlign(0, CONSOLE_TABLE_ALIGN_RIGHT);
$tbl->setAlign(1, CONSOLE_TABLE_ALIGN_RIGHT);
$tbl->setHeaders(
$this->ansiWrap(
array('Days', 'Age', 'Name', 'Event', 'Date', 'Day'),
'%_%9'
)
);
$tbl->setBorderVisibility(
array(
'left' => false,
'right' => false,
'top' => true,
'bottom' => false,
'inner' => true,
)
);
foreach ($arEvents as $event) {
$colorCode = null;
if ($event->days == 0) {
$colorCode = '%R';
}
$tbl->addRow(
$this->ansiWrap(
array(
$event->days,
$event->age,
wordwrap($event->title, 30, "\n", true),
wordwrap($event->type, 20, "\n", true),
$this->getLocalDate($event->date),
strftime('%a', strtotime($event->localDate))
),
$colorCode
)
);
}
return $tbl->getTable();
}
/**
* Wrap each string in an array in an ANSI color code
*
* @param array $data Array of strings
* @param string $colorCode ANSI color code or name
*
* @return array Wrapped data
*/
protected function ansiWrap($data, $colorCode = null)
{
if (!$this->ansi || $colorCode === null) {
return $data;
}
foreach ($data as $k => &$value) {
$value = $this->cc->convert(
$colorCode . $value . '%n'
);
}
return $data;
}
/**
* Load configuration values into the class
*
* @return void
*/
protected function loadConfig()
{
if (isset($this->config->ansi)) {
$this->ansi = $this->config->ansi;
}
}
}
?>
|