4 * Error collection class that enables HTML Purifier to report HTML
5 * problems back to the user
7 class HTMLPurifier_ErrorCollector
11 * Identifiers for the returned error array. These are purposely numeric
12 * so list() can be used.
32 protected $_stacks = array(array());
35 * @type HTMLPurifier_Language
40 * @type HTMLPurifier_Generator
45 * @type HTMLPurifier_Context
52 protected $lines = array();
55 * @param HTMLPurifier_Context $context
57 public function __construct($context)
59 $this->locale
=& $context->get('Locale');
60 $this->context
= $context;
61 $this->_current
=& $this->_stacks
[0];
62 $this->errors
=& $this->_stacks
[0];
66 * Sends an error message to the collector for later use
67 * @param int $severity Error severity, PHP error style (don't use E_USER_)
68 * @param string $msg Error message text
70 public function send($severity, $msg)
73 if (func_num_args() > 2) {
74 $args = func_get_args();
79 $token = $this->context
->get('CurrentToken', true);
80 $line = $token ?
$token->line
: $this->context
->get('CurrentLine', true);
81 $col = $token ?
$token->col
: $this->context
->get('CurrentCol', true);
82 $attr = $this->context
->get('CurrentAttr', true);
84 // perform special substitutions, also add custom parameters
86 if (!is_null($token)) {
87 $args['CurrentToken'] = $token;
89 if (!is_null($attr)) {
90 $subst['$CurrentAttr.Name'] = $attr;
91 if (isset($token->attr
[$attr])) {
92 $subst['$CurrentAttr.Value'] = $token->attr
[$attr];
97 $msg = $this->locale
->getMessage($msg);
99 $msg = $this->locale
->formatMessage($msg, $args);
102 if (!empty($subst)) {
103 $msg = strtr($msg, $subst);
106 // (numerically indexed)
108 self
::LINENO
=> $line,
109 self
::SEVERITY
=> $severity,
110 self
::MESSAGE
=> $msg,
111 self
::CHILDREN
=> array()
113 $this->_current
[] = $error;
115 // NEW CODE BELOW ...
116 // Top-level errors are either:
117 // TOKEN type, if $value is set appropriately, or
118 // "syntax" type, if $value is null
119 $new_struct = new HTMLPurifier_ErrorStruct();
120 $new_struct->type
= HTMLPurifier_ErrorStruct
::TOKEN
;
122 $new_struct->value
= clone $token;
124 if (is_int($line) && is_int($col)) {
125 if (isset($this->lines
[$line][$col])) {
126 $struct = $this->lines
[$line][$col];
128 $struct = $this->lines
[$line][$col] = $new_struct;
130 // These ksorts may present a performance problem
131 ksort($this->lines
[$line], SORT_NUMERIC
);
133 if (isset($this->lines
[-1])) {
134 $struct = $this->lines
[-1];
136 $struct = $this->lines
[-1] = $new_struct;
139 ksort($this->lines
, SORT_NUMERIC
);
141 // Now, check if we need to operate on a lower structure
143 $struct = $struct->getChild(HTMLPurifier_ErrorStruct
::ATTR
, $attr);
144 if (!$struct->value
) {
145 $struct->value
= array($attr, 'PUT VALUE HERE');
148 if (!empty($cssprop)) {
149 $struct = $struct->getChild(HTMLPurifier_ErrorStruct
::CSSPROP
, $cssprop);
150 if (!$struct->value
) {
151 // if we tokenize CSS this might be a little more difficult to do
152 $struct->value
= array($cssprop, 'PUT VALUE HERE');
156 // Ok, structs are all setup, now time to register the error
157 $struct->addError($severity, $msg);
161 * Retrieves raw error data for custom formatter to use
163 public function getRaw()
165 return $this->errors
;
169 * Default HTML formatting implementation for error messages
170 * @param HTMLPurifier_Config $config Configuration, vital for HTML output nature
171 * @param array $errors Errors array to display; used for recursion.
174 public function getHTMLFormatted($config, $errors = null)
178 $this->generator
= new HTMLPurifier_Generator($config, $this->context
);
179 if ($errors === null) {
180 $errors = $this->errors
;
183 // 'At line' message needs to be removed
185 // generation code for new structure goes here. It needs to be recursive.
186 foreach ($this->lines
as $line => $col_array) {
190 foreach ($col_array as $col => $struct) {
191 $this->_renderStruct($ret, $struct, $line, $col);
194 if (isset($this->lines
[-1])) {
195 $this->_renderStruct($ret, $this->lines
[-1]);
198 if (empty($errors)) {
199 return '<p>' . $this->locale
->getMessage('ErrorCollector: No errors') . '</p>';
201 return '<ul><li>' . implode('</li><li>', $ret) . '</li></ul>';
206 private function _renderStruct(&$ret, $struct, $line = null, $col = null)
208 $stack = array($struct);
209 $context_stack = array(array());
210 while ($current = array_pop($stack)) {
211 $context = array_pop($context_stack);
212 foreach ($current->errors
as $error) {
213 list($severity, $msg) = $error;
216 // W3C uses an icon to indicate the severity of the error.
217 $error = $this->locale
->getErrorName($severity);
218 $string .= "<span class=\"error e$severity\"><strong>$error</strong></span> ";
219 if (!is_null($line) && !is_null($col)) {
220 $string .= "<em class=\"location\">Line $line, Column $col: </em> ";
222 $string .= '<em class="location">End of Document: </em> ';
224 $string .= '<strong class="description">' . $this->generator
->escape($msg) . '</strong> ';
226 // Here, have a marker for the character on the column appropriate.
227 // Be sure to clip extremely long lines.
228 //$string .= '<pre>';
230 //$string .= '</pre>';
233 foreach ($current->children
as $array) {
234 $context[] = $current;
235 $stack = array_merge($stack, array_reverse($array, true));
236 for ($i = count($array); $i > 0; $i--) {
237 $context_stack[] = $context;
244 // vim: et sw=4 sts=4