mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
700d5bcbfc
Injector rewind: Injectors can now use the method rewind() in order to move the input index backwards, so that they can reprocess tokens (other injectors are not affected by a rewind). This functionality was necessary to implement nested node removals in %AutoFormat.RemoveEmpty. End to start ref: To facilitate rewinding, HTMLPurifier_Token_End now maintains a reference called $start to the starting token for their node. %AutoFormat.RemoveEmpty removes empty nodes. Lots of people have requested it, so here is a partially effective implementation. Because it is implemented as an Injector, it's not possible for it to handle newly introduced empty nodes by later validators, specifically auto-closing and child validation. The Injector is only meant to be used on HTML-ish languages. Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
162 lines
5.3 KiB
PHP
162 lines
5.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Injects tokens into the document while parsing for well-formedness.
|
|
* This enables "formatter-like" functionality such as auto-paragraphing,
|
|
* smiley-ification and linkification to take place.
|
|
*
|
|
* @todo Allow injectors to request a re-run on their output. This
|
|
* would help if an operation is recursive.
|
|
*/
|
|
abstract class HTMLPurifier_Injector
|
|
{
|
|
|
|
/**
|
|
* Advisory name of injector, this is for friendly error messages
|
|
*/
|
|
public $name;
|
|
|
|
/**
|
|
* Amount of tokens the injector needs to skip + 1. Because
|
|
* the decrement is the first thing that happens, this needs to
|
|
* be one greater than the "real" skip count.
|
|
*/
|
|
public $skip = 1;
|
|
|
|
/**
|
|
* Instance of HTMLPurifier_HTMLDefinition
|
|
*/
|
|
protected $htmlDefinition;
|
|
|
|
/**
|
|
* Reference to CurrentNesting variable in Context. This is an array
|
|
* list of tokens that we are currently "inside"
|
|
*/
|
|
protected $currentNesting;
|
|
|
|
/**
|
|
* Reference to InputTokens variable in Context. This is an array
|
|
* list of the input tokens that are being processed.
|
|
*/
|
|
protected $inputTokens;
|
|
|
|
/**
|
|
* Reference to InputIndex variable in Context. This is an integer
|
|
* array index for $this->inputTokens that indicates what token
|
|
* is currently being processed.
|
|
*/
|
|
protected $inputIndex;
|
|
|
|
/**
|
|
* Array of elements and attributes this injector creates and therefore
|
|
* need to be allowed by the definition. Takes form of
|
|
* array('element' => array('attr', 'attr2'), 'element2')
|
|
*/
|
|
public $needed = array();
|
|
|
|
/**
|
|
* Index of inputTokens to rewind to.
|
|
*/
|
|
protected $rewind = false;
|
|
|
|
/**
|
|
* Rewind to a spot to re-perform processing. This is useful if you
|
|
* deleted a node, and now need to see if this change affected any
|
|
* earlier nodes. Rewinding does not affect other injectors, and can
|
|
* result in infinite loops if not used carefully.
|
|
*/
|
|
public function rewind($index) {
|
|
$this->rewind = $index;
|
|
}
|
|
|
|
/**
|
|
* Retrieves rewind, and then unsets it.
|
|
*/
|
|
public function getRewind() {
|
|
$r = $this->rewind;
|
|
$this->rewind = false;
|
|
return $r;
|
|
}
|
|
|
|
/**
|
|
* Prepares the injector by giving it the config and context objects:
|
|
* this allows references to important variables to be made within
|
|
* the injector. This function also checks if the HTML environment
|
|
* will work with the Injector (see checkNeeded()).
|
|
* @param $config Instance of HTMLPurifier_Config
|
|
* @param $context Instance of HTMLPurifier_Context
|
|
* @return Boolean false if success, string of missing needed element/attribute if failure
|
|
*/
|
|
public function prepare($config, $context) {
|
|
$this->htmlDefinition = $config->getHTMLDefinition();
|
|
// Even though this might fail, some unit tests ignore this and
|
|
// still test checkNeeded, so be careful. Maybe get rid of that
|
|
// dependency.
|
|
$result = $this->checkNeeded($config);
|
|
if ($result !== false) return $result;
|
|
$this->currentNesting =& $context->get('CurrentNesting');
|
|
$this->inputTokens =& $context->get('InputTokens');
|
|
$this->inputIndex =& $context->get('InputIndex');
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* This function checks if the HTML environment
|
|
* will work with the Injector: if p tags are not allowed, the
|
|
* Auto-Paragraphing injector should not be enabled.
|
|
* @param $config Instance of HTMLPurifier_Config
|
|
* @param $context Instance of HTMLPurifier_Context
|
|
* @return Boolean false if success, string of missing needed element/attribute if failure
|
|
*/
|
|
public function checkNeeded($config) {
|
|
$def = $config->getHTMLDefinition();
|
|
foreach ($this->needed as $element => $attributes) {
|
|
if (is_int($element)) $element = $attributes;
|
|
if (!isset($def->info[$element])) return $element;
|
|
if (!is_array($attributes)) continue;
|
|
foreach ($attributes as $name) {
|
|
if (!isset($def->info[$element]->attr[$name])) return "$element.$name";
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Tests if the context node allows a certain element
|
|
* @param $name Name of element to test for
|
|
* @return True if element is allowed, false if it is not
|
|
*/
|
|
public function allowsElement($name) {
|
|
if (!empty($this->currentNesting)) {
|
|
$parent_token = array_pop($this->currentNesting);
|
|
$this->currentNesting[] = $parent_token;
|
|
$parent = $this->htmlDefinition->info[$parent_token->name];
|
|
} else {
|
|
$parent = $this->htmlDefinition->info_parent_def;
|
|
}
|
|
if (!isset($parent->child->elements[$name]) || isset($parent->excludes[$name])) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Handler that is called when a text token is processed
|
|
*/
|
|
public function handleText(&$token) {}
|
|
|
|
/**
|
|
* Handler that is called when a start or empty token is processed
|
|
*/
|
|
public function handleElement(&$token) {}
|
|
|
|
/**
|
|
* Notifier that is called when an end token is processed
|
|
* @note This differs from handlers in that the token is read-only
|
|
*/
|
|
public function notifyEnd($token) {}
|
|
|
|
|
|
}
|
|
|