2006-07-23 23:29:12 +00:00
|
|
|
<?php
|
|
|
|
|
2006-08-20 21:59:41 +00:00
|
|
|
/**
|
|
|
|
* Takes tokens makes them well-formed (balance end tags, etc.)
|
|
|
|
*/
|
2006-07-23 23:29:12 +00:00
|
|
|
class HTMLPurifier_Strategy_MakeWellFormed extends HTMLPurifier_Strategy
|
|
|
|
{
|
|
|
|
|
2007-06-24 17:44:27 +00:00
|
|
|
/**
|
|
|
|
* Locally shared variable references
|
|
|
|
*/
|
2007-11-25 02:24:39 +00:00
|
|
|
protected $inputTokens, $inputIndex, $outputTokens, $currentNesting,
|
2007-06-24 17:44:27 +00:00
|
|
|
$currentInjector, $injectors;
|
|
|
|
|
2008-01-05 00:10:43 +00:00
|
|
|
public function execute($tokens, $config, $context) {
|
2007-06-23 17:11:05 +00:00
|
|
|
|
2006-08-31 20:33:07 +00:00
|
|
|
$definition = $config->getHTMLDefinition();
|
2007-06-23 17:11:05 +00:00
|
|
|
|
2007-10-02 22:50:59 +00:00
|
|
|
// local variables
|
|
|
|
$result = array();
|
|
|
|
$generator = new HTMLPurifier_Generator();
|
|
|
|
$escape_invalid_tags = $config->get('Core', 'EscapeInvalidTags');
|
2007-12-05 01:26:28 +00:00
|
|
|
$e = $context->get('ErrorCollector', true);
|
2007-10-02 22:50:59 +00:00
|
|
|
|
|
|
|
// member variables
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->currentNesting = array();
|
2007-10-02 22:50:59 +00:00
|
|
|
$this->inputIndex = false;
|
|
|
|
$this->inputTokens =& $tokens;
|
|
|
|
$this->outputTokens =& $result;
|
2007-06-23 17:11:05 +00:00
|
|
|
|
2007-10-02 22:50:59 +00:00
|
|
|
// context variables
|
|
|
|
$context->register('CurrentNesting', $this->currentNesting);
|
2007-12-05 01:26:28 +00:00
|
|
|
$context->register('InputIndex', $this->inputIndex);
|
|
|
|
$context->register('InputTokens', $tokens);
|
2007-06-26 15:07:07 +00:00
|
|
|
|
2007-06-24 04:22:28 +00:00
|
|
|
// -- begin INJECTOR --
|
|
|
|
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->injectors = array();
|
2007-06-23 17:44:28 +00:00
|
|
|
|
2007-06-24 21:35:34 +00:00
|
|
|
$injectors = $config->getBatch('AutoFormat');
|
|
|
|
$custom_injectors = $injectors['Custom'];
|
|
|
|
unset($injectors['Custom']); // special case
|
|
|
|
foreach ($injectors as $injector => $b) {
|
|
|
|
$injector = "HTMLPurifier_Injector_$injector";
|
2007-06-28 13:06:15 +00:00
|
|
|
if (!$b) continue;
|
|
|
|
$this->injectors[] = new $injector;
|
2007-06-24 02:27:57 +00:00
|
|
|
}
|
2007-06-24 21:35:34 +00:00
|
|
|
foreach ($custom_injectors as $injector) {
|
|
|
|
if (is_string($injector)) {
|
|
|
|
$injector = "HTMLPurifier_Injector_$injector";
|
|
|
|
$injector = new $injector;
|
|
|
|
}
|
|
|
|
$this->injectors[] = $injector;
|
2007-06-24 02:45:38 +00:00
|
|
|
}
|
|
|
|
|
2007-06-24 04:22:28 +00:00
|
|
|
// array index of the injector that resulted in an array
|
|
|
|
// substitution. This enables processTokens() to know which
|
|
|
|
// injectors are affected by the added tokens and which are
|
|
|
|
// not (namely, the ones after the current injector are not
|
|
|
|
// affected)
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->currentInjector = false;
|
2007-06-24 02:27:57 +00:00
|
|
|
|
2007-06-24 17:44:27 +00:00
|
|
|
// give the injectors references to the definition and context
|
|
|
|
// variables for performance reasons
|
2007-12-05 01:26:28 +00:00
|
|
|
foreach ($this->injectors as $i => $injector) {
|
|
|
|
$error = $injector->prepare($config, $context);
|
2007-06-28 13:06:15 +00:00
|
|
|
if (!$error) continue;
|
2007-12-05 01:26:28 +00:00
|
|
|
array_splice($this->injectors, $i, 1); // rm the injector
|
|
|
|
trigger_error("Cannot enable {$injector->name} injector because $error is not allowed", E_USER_WARNING);
|
2007-06-24 17:44:27 +00:00
|
|
|
}
|
2007-06-24 04:22:28 +00:00
|
|
|
|
2007-12-05 01:26:28 +00:00
|
|
|
// warning: most foreach loops follow the convention $i => $injector.
|
|
|
|
// Don't define these as loop-wide variables, please!
|
2007-10-02 22:50:59 +00:00
|
|
|
|
2007-06-24 04:22:28 +00:00
|
|
|
// -- end INJECTOR --
|
|
|
|
|
2007-06-26 15:07:07 +00:00
|
|
|
$token = false;
|
|
|
|
$context->register('CurrentToken', $token);
|
|
|
|
|
2007-12-05 01:26:28 +00:00
|
|
|
// isset is in loop because $tokens size changes during loop exec
|
2007-06-24 17:44:27 +00:00
|
|
|
for ($this->inputIndex = 0; isset($tokens[$this->inputIndex]); $this->inputIndex++) {
|
2007-06-23 17:11:05 +00:00
|
|
|
|
|
|
|
// if all goes well, this token will be passed through unharmed
|
2007-06-24 17:44:27 +00:00
|
|
|
$token = $tokens[$this->inputIndex];
|
2007-06-23 17:11:05 +00:00
|
|
|
|
2007-09-27 00:39:05 +00:00
|
|
|
//printTokens($tokens, $this->inputIndex);
|
|
|
|
|
2007-12-05 01:26:28 +00:00
|
|
|
foreach ($this->injectors as $injector) {
|
|
|
|
if ($injector->skip > 0) $injector->skip--;
|
2007-06-23 17:44:28 +00:00
|
|
|
}
|
|
|
|
|
2007-06-23 17:11:05 +00:00
|
|
|
// quick-check: if it's not a tag, no need to process
|
2006-07-23 23:29:12 +00:00
|
|
|
if (empty( $token->is_tag )) {
|
2008-01-19 20:23:01 +00:00
|
|
|
if ($token instanceof HTMLPurifier_Token_Text) {
|
2007-06-24 17:44:27 +00:00
|
|
|
// injector handler code; duplicated for performance reasons
|
2007-12-05 01:26:28 +00:00
|
|
|
foreach ($this->injectors as $i => $injector) {
|
|
|
|
if (!$injector->skip) $injector->handleText($token);
|
2007-06-24 02:45:38 +00:00
|
|
|
if (is_array($token)) {
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->currentInjector = $i;
|
2007-06-24 02:45:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-06-23 17:44:28 +00:00
|
|
|
}
|
2007-06-22 21:32:56 +00:00
|
|
|
}
|
2007-06-23 17:44:28 +00:00
|
|
|
$this->processToken($token, $config, $context);
|
2006-07-23 23:29:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
2006-07-30 19:11:18 +00:00
|
|
|
|
2006-08-31 20:33:07 +00:00
|
|
|
$info = $definition->info[$token->name]->child;
|
2006-07-23 23:29:12 +00:00
|
|
|
|
2007-06-29 00:24:59 +00:00
|
|
|
// quick tag checks: anything that's *not* an end tag
|
|
|
|
$ok = false;
|
2008-01-19 20:23:01 +00:00
|
|
|
if ($info->type === 'empty' && $token instanceof HTMLPurifier_Token_Start) {
|
2007-06-29 00:24:59 +00:00
|
|
|
// test if it claims to be a start tag but is empty
|
|
|
|
$token = new HTMLPurifier_Token_Empty($token->name, $token->attr);
|
|
|
|
$ok = true;
|
2008-01-19 20:23:01 +00:00
|
|
|
} elseif ($info->type !== 'empty' && $token instanceof HTMLPurifier_Token_Empty) {
|
2007-06-29 00:24:59 +00:00
|
|
|
// claims to be empty but really is a start tag
|
|
|
|
$token = array(
|
|
|
|
new HTMLPurifier_Token_Start($token->name, $token->attr),
|
|
|
|
new HTMLPurifier_Token_End($token->name)
|
|
|
|
);
|
|
|
|
$ok = true;
|
2008-01-19 20:23:01 +00:00
|
|
|
} elseif ($token instanceof HTMLPurifier_Token_Empty) {
|
2007-06-29 00:24:59 +00:00
|
|
|
// real empty token
|
|
|
|
$ok = true;
|
2008-01-19 20:23:01 +00:00
|
|
|
} elseif ($token instanceof HTMLPurifier_Token_Start) {
|
2007-06-29 00:24:59 +00:00
|
|
|
// start tag
|
2006-07-23 23:29:12 +00:00
|
|
|
|
2007-06-23 17:11:05 +00:00
|
|
|
// ...unless they also have to close their parent
|
2007-06-24 17:44:27 +00:00
|
|
|
if (!empty($this->currentNesting)) {
|
2006-07-23 23:29:12 +00:00
|
|
|
|
2007-06-24 17:44:27 +00:00
|
|
|
$parent = array_pop($this->currentNesting);
|
2007-06-23 17:11:05 +00:00
|
|
|
$parent_info = $definition->info[$parent->name];
|
2006-07-30 22:57:54 +00:00
|
|
|
|
2007-06-23 17:11:05 +00:00
|
|
|
// this can be replaced with a more general algorithm:
|
|
|
|
// if the token is not allowed by the parent, auto-close
|
|
|
|
// the parent
|
2007-06-23 20:52:57 +00:00
|
|
|
if (!isset($parent_info->child->elements[$token->name])) {
|
2007-06-26 19:33:37 +00:00
|
|
|
if ($e) $e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag auto closed', $parent);
|
2008-01-10 21:40:41 +00:00
|
|
|
// close the parent, then re-loop to reprocess token
|
2007-06-23 17:11:05 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_End($parent->name);
|
2008-01-10 21:40:41 +00:00
|
|
|
$this->inputIndex--;
|
2006-07-23 23:29:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->currentNesting[] = $parent; // undo the pop
|
2006-07-23 23:29:12 +00:00
|
|
|
}
|
2007-06-29 00:24:59 +00:00
|
|
|
$ok = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// injector handler code; duplicated for performance reasons
|
|
|
|
if ($ok) {
|
2007-12-05 01:26:28 +00:00
|
|
|
foreach ($this->injectors as $i => $injector) {
|
|
|
|
if (!$injector->skip) $injector->handleElement($token);
|
2007-06-24 02:45:38 +00:00
|
|
|
if (is_array($token)) {
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->currentInjector = $i;
|
2007-06-24 02:45:38 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-06-23 17:44:28 +00:00
|
|
|
}
|
|
|
|
$this->processToken($token, $config, $context);
|
2006-07-23 23:29:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-06-23 17:11:05 +00:00
|
|
|
// sanity check: we should be dealing with a closing tag
|
2008-01-19 20:23:01 +00:00
|
|
|
if (!$token instanceof HTMLPurifier_Token_End) continue;
|
2006-07-23 23:29:12 +00:00
|
|
|
|
|
|
|
// make sure that we have something open
|
2007-06-24 17:44:27 +00:00
|
|
|
if (empty($this->currentNesting)) {
|
2006-08-15 23:58:18 +00:00
|
|
|
if ($escape_invalid_tags) {
|
2007-06-26 19:33:37 +00:00
|
|
|
if ($e) $e->send(E_WARNING, 'Strategy_MakeWellFormed: Unnecessary end tag to text');
|
2006-08-15 23:58:18 +00:00
|
|
|
$result[] = new HTMLPurifier_Token_Text(
|
2006-10-01 20:47:07 +00:00
|
|
|
$generator->generateFromToken($token, $config, $context)
|
2006-08-15 23:58:18 +00:00
|
|
|
);
|
2007-06-26 15:07:07 +00:00
|
|
|
} elseif ($e) {
|
2007-06-26 19:33:37 +00:00
|
|
|
$e->send(E_WARNING, 'Strategy_MakeWellFormed: Unnecessary end tag removed');
|
2006-08-15 23:58:18 +00:00
|
|
|
}
|
2006-07-23 23:29:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// first, check for the simplest case: everything closes neatly
|
2007-06-24 17:44:27 +00:00
|
|
|
$current_parent = array_pop($this->currentNesting);
|
2006-07-23 23:29:12 +00:00
|
|
|
if ($current_parent->name == $token->name) {
|
|
|
|
$result[] = $token;
|
2007-12-05 01:26:28 +00:00
|
|
|
foreach ($this->injectors as $i => $injector) {
|
|
|
|
$injector->notifyEnd($token);
|
2007-10-02 22:50:59 +00:00
|
|
|
}
|
2006-07-23 23:29:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// okay, so we're trying to close the wrong tag
|
|
|
|
|
2007-06-23 17:11:05 +00:00
|
|
|
// undo the pop previous pop
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->currentNesting[] = $current_parent;
|
2007-06-23 17:11:05 +00:00
|
|
|
|
|
|
|
// scroll back the entire nest, trying to find our tag.
|
|
|
|
// (feature could be to specify how far you'd like to go)
|
2007-06-24 17:44:27 +00:00
|
|
|
$size = count($this->currentNesting);
|
2006-07-23 23:29:12 +00:00
|
|
|
// -2 because -1 is the last element, but we already checked that
|
|
|
|
$skipped_tags = false;
|
|
|
|
for ($i = $size - 2; $i >= 0; $i--) {
|
2007-06-24 17:44:27 +00:00
|
|
|
if ($this->currentNesting[$i]->name == $token->name) {
|
2006-07-23 23:29:12 +00:00
|
|
|
// current nesting is modified
|
2007-06-24 17:44:27 +00:00
|
|
|
$skipped_tags = array_splice($this->currentNesting, $i);
|
2006-07-23 23:29:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-23 17:11:05 +00:00
|
|
|
// we still didn't find the tag, so remove
|
2006-07-23 23:29:12 +00:00
|
|
|
if ($skipped_tags === false) {
|
2006-08-15 23:58:18 +00:00
|
|
|
if ($escape_invalid_tags) {
|
|
|
|
$result[] = new HTMLPurifier_Token_Text(
|
2006-10-01 20:47:07 +00:00
|
|
|
$generator->generateFromToken($token, $config, $context)
|
2006-08-15 23:58:18 +00:00
|
|
|
);
|
2007-06-26 19:33:37 +00:00
|
|
|
if ($e) $e->send(E_WARNING, 'Strategy_MakeWellFormed: Stray end tag to text');
|
2007-06-26 15:07:07 +00:00
|
|
|
} elseif ($e) {
|
2007-06-26 19:33:37 +00:00
|
|
|
$e->send(E_WARNING, 'Strategy_MakeWellFormed: Stray end tag removed');
|
2006-08-15 23:58:18 +00:00
|
|
|
}
|
2006-07-23 23:29:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// okay, we found it, close all the skipped tags
|
|
|
|
// note that skipped tags contains the element we need closed
|
2007-10-02 22:50:59 +00:00
|
|
|
for ($i = count($skipped_tags) - 1; $i >= 0; $i--) {
|
2007-12-05 01:26:28 +00:00
|
|
|
// please don't redefine $i!
|
2007-10-02 22:50:59 +00:00
|
|
|
if ($i && $e && !isset($skipped_tags[$i]->armor['MakeWellFormed_TagClosedError'])) {
|
2007-06-26 19:33:37 +00:00
|
|
|
$e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag closed by element end', $skipped_tags[$i]);
|
2007-06-26 15:07:07 +00:00
|
|
|
}
|
2007-10-02 22:50:59 +00:00
|
|
|
$result[] = $new_token = new HTMLPurifier_Token_End($skipped_tags[$i]->name);
|
2007-12-05 01:26:28 +00:00
|
|
|
foreach ($this->injectors as $injector) {
|
|
|
|
$injector->notifyEnd($new_token);
|
2007-10-02 22:50:59 +00:00
|
|
|
}
|
2006-07-23 23:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-06-26 19:33:37 +00:00
|
|
|
$context->destroy('CurrentNesting');
|
|
|
|
$context->destroy('InputTokens');
|
|
|
|
$context->destroy('InputIndex');
|
|
|
|
$context->destroy('CurrentToken');
|
|
|
|
|
2007-10-02 22:50:59 +00:00
|
|
|
// we're at the end now, fix all still unclosed tags (this is
|
|
|
|
// duplicated from the end of the loop with some slight modifications)
|
|
|
|
// not using $skipped_tags since it would invariably be all of them
|
2007-06-24 17:44:27 +00:00
|
|
|
if (!empty($this->currentNesting)) {
|
2007-10-02 22:50:59 +00:00
|
|
|
for ($i = count($this->currentNesting) - 1; $i >= 0; $i--) {
|
2007-12-05 01:26:28 +00:00
|
|
|
// please don't redefine $i!
|
2007-06-26 19:33:37 +00:00
|
|
|
if ($e && !isset($this->currentNesting[$i]->armor['MakeWellFormed_TagClosedError'])) {
|
|
|
|
$e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag closed by document end', $this->currentNesting[$i]);
|
2007-06-26 15:07:07 +00:00
|
|
|
}
|
2007-10-02 22:50:59 +00:00
|
|
|
$result[] = $new_token = new HTMLPurifier_Token_End($this->currentNesting[$i]->name);
|
2007-12-05 01:26:28 +00:00
|
|
|
foreach ($this->injectors as $injector) {
|
|
|
|
$injector->notifyEnd($new_token);
|
2007-10-02 22:50:59 +00:00
|
|
|
}
|
2006-07-23 23:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-24 17:44:27 +00:00
|
|
|
unset($this->outputTokens, $this->injectors, $this->currentInjector,
|
|
|
|
$this->currentNesting, $this->inputTokens, $this->inputIndex);
|
2007-06-24 04:22:28 +00:00
|
|
|
|
2006-07-23 23:29:12 +00:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2008-01-05 00:10:43 +00:00
|
|
|
function processToken($token, $config, $context) {
|
2007-06-23 17:44:28 +00:00
|
|
|
if (is_array($token)) {
|
2007-06-24 04:22:28 +00:00
|
|
|
// the original token was overloaded by an injector, time
|
2007-06-23 17:44:28 +00:00
|
|
|
// to some fancy acrobatics
|
|
|
|
|
2007-06-24 17:44:27 +00:00
|
|
|
// $this->inputIndex is decremented so that the entire set gets
|
2007-06-23 17:44:28 +00:00
|
|
|
// re-processed
|
2007-06-24 17:44:27 +00:00
|
|
|
array_splice($this->inputTokens, $this->inputIndex--, 1, $token);
|
2007-06-23 17:44:28 +00:00
|
|
|
|
2007-06-24 04:22:28 +00:00
|
|
|
// adjust the injector skips based on the array substitution
|
2007-06-29 00:24:59 +00:00
|
|
|
if ($this->injectors) {
|
2007-09-09 01:27:09 +00:00
|
|
|
$offset = count($token);
|
2007-06-29 00:24:59 +00:00
|
|
|
for ($i = 0; $i <= $this->currentInjector; $i++) {
|
2007-09-09 01:27:09 +00:00
|
|
|
// because of the skip back, we need to add one more
|
|
|
|
// for uninitialized injectors. I'm not exactly
|
|
|
|
// sure why this is the case, but I think it has to
|
|
|
|
// do with the fact that we're decrementing skips
|
|
|
|
// before re-checking text
|
|
|
|
if (!$this->injectors[$i]->skip) $this->injectors[$i]->skip++;
|
2007-06-29 00:24:59 +00:00
|
|
|
$this->injectors[$i]->skip += $offset;
|
|
|
|
}
|
2007-06-24 02:27:57 +00:00
|
|
|
}
|
2007-06-23 17:44:28 +00:00
|
|
|
} elseif ($token) {
|
|
|
|
// regular case
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->outputTokens[] = $token;
|
2008-01-19 20:23:01 +00:00
|
|
|
if ($token instanceof HTMLPurifier_Token_Start) {
|
2007-06-24 17:44:27 +00:00
|
|
|
$this->currentNesting[] = $token;
|
2008-01-19 20:23:01 +00:00
|
|
|
} elseif ($token instanceof HTMLPurifier_Token_End) {
|
2007-06-24 17:44:27 +00:00
|
|
|
array_pop($this->currentNesting); // not actually used
|
2007-06-23 17:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-23 23:29:12 +00:00
|
|
|
}
|
|
|
|
|