2007-05-04 01:17:00 +00:00
|
|
|
<?php
|
|
|
|
|
2007-05-24 21:50:43 +00:00
|
|
|
require_once 'HTMLPurifier/Definition.php';
|
2007-05-04 01:17:00 +00:00
|
|
|
require_once 'HTMLPurifier/HTMLModuleManager.php';
|
|
|
|
|
|
|
|
// this definition and its modules MUST NOT define configuration directives
|
|
|
|
// outside of the HTML or Attr namespaces
|
|
|
|
|
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2007-05-20 22:29:31 +00:00
|
|
|
'HTML', 'BlockWrapper', 'p', 'string', '
|
|
|
|
<p>
|
|
|
|
String name of element to wrap inline elements that are inside a block
|
|
|
|
context. This only occurs in the children of blockquote in strict mode.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Example: by default value,
|
|
|
|
<code><blockquote>Foo</blockquote></code> would become
|
|
|
|
<code><blockquote><p>Foo</p></blockquote></code>.
|
|
|
|
The <code><p></code> tags can be replaced with whatever you desire,
|
|
|
|
as long as it is a block level element. This directive has been available
|
|
|
|
since 1.3.0.
|
|
|
|
</p>
|
|
|
|
');
|
2007-05-04 01:17:00 +00:00
|
|
|
|
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2007-05-20 22:29:31 +00:00
|
|
|
'HTML', 'Parent', 'div', 'string', '
|
|
|
|
<p>
|
|
|
|
String name of element that HTML fragment passed to library will be
|
|
|
|
inserted in. An interesting variation would be using span as the
|
|
|
|
parent element, meaning that only inline tags would be allowed.
|
|
|
|
This directive has been available since 1.3.0.
|
|
|
|
</p>
|
|
|
|
');
|
2007-05-04 01:17:00 +00:00
|
|
|
|
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2007-05-20 22:29:31 +00:00
|
|
|
'HTML', 'AllowedElements', null, 'lookup/null', '
|
|
|
|
<p>
|
|
|
|
If HTML Purifier\'s tag set is unsatisfactory for your needs, you
|
|
|
|
can overload it with your own list of tags to allow. Note that this
|
|
|
|
method is subtractive: it does its job by taking away from HTML Purifier
|
|
|
|
usual feature set, so you cannot add a tag that HTML Purifier never
|
|
|
|
supported in the first place (like embed, form or head). If you
|
|
|
|
change this, you probably also want to change %HTML.AllowedAttributes.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<strong>Warning:</strong> If another directive conflicts with the
|
|
|
|
elements here, <em>that</em> directive will win and override.
|
|
|
|
This directive has been available since 1.3.0.
|
|
|
|
</p>
|
|
|
|
');
|
2007-05-04 01:17:00 +00:00
|
|
|
|
|
|
|
HTMLPurifier_ConfigSchema::define(
|
2007-05-20 22:29:31 +00:00
|
|
|
'HTML', 'AllowedAttributes', null, 'lookup/null', '
|
|
|
|
<p>
|
|
|
|
If HTML Purifier\'s attribute set is unsatisfactory, overload it!
|
|
|
|
The syntax is "tag.attr" or "*.attr" for the global attributes
|
|
|
|
(style, id, class, dir, lang, xml:lang).
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<strong>Warning:</strong> If another directive conflicts with the
|
|
|
|
elements here, <em>that</em> directive will win and override. For
|
|
|
|
example, %HTML.EnableAttrID will take precedence over *.id in this
|
|
|
|
directive. You must set that directive to true before you can use
|
|
|
|
IDs at all. This directive has been available since 1.3.0.
|
|
|
|
</p>
|
|
|
|
');
|
2007-05-04 01:17:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Definition of the purified HTML that describes allowed children,
|
|
|
|
* attributes, and many other things.
|
|
|
|
*
|
|
|
|
* Conventions:
|
|
|
|
*
|
|
|
|
* All member variables that are prefixed with info
|
|
|
|
* (including the main $info array) are used by HTML Purifier internals
|
|
|
|
* and should not be directly edited when customizing the HTMLDefinition.
|
|
|
|
* They can usually be set via configuration directives or custom
|
|
|
|
* modules.
|
|
|
|
*
|
|
|
|
* On the other hand, member variables without the info prefix are used
|
|
|
|
* internally by the HTMLDefinition and MUST NOT be used by other HTML
|
|
|
|
* Purifier internals. Many of them, however, are public, and may be
|
|
|
|
* edited by userspace code to tweak the behavior of HTMLDefinition.
|
|
|
|
*
|
|
|
|
* HTMLPurifier_Printer_HTMLDefinition is a notable exception to this
|
|
|
|
* rule: in the interest of comprehensiveness, it will sniff everything.
|
|
|
|
*/
|
2007-05-24 21:50:43 +00:00
|
|
|
class HTMLPurifier_HTMLDefinition extends HTMLPurifier_Definition
|
2007-05-04 01:17:00 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/** FULLY-PUBLIC VARIABLES */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Associative array of element names to HTMLPurifier_ElementDef
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Associative array of global attribute name to attribute definition.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_global_attr = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* String name of parent element HTML will be going into.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_parent = 'div';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Definition for parent element, allows parent element to be a
|
|
|
|
* tag that's not allowed inside the HTML fragment.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_parent_def;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* String name of element used to wrap inline elements in block context
|
|
|
|
* @note This is rarely used except for BLOCKQUOTEs in strict mode
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_block_wrapper = 'p';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Associative array of deprecated tag name to HTMLPurifier_TagTransform
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_tag_transform = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indexed list of HTMLPurifier_AttrTransform to be performed before validation.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_attr_transform_pre = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indexed list of HTMLPurifier_AttrTransform to be performed after validation.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_attr_transform_post = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Nested lookup array of content set name (Block, Inline) to
|
|
|
|
* element name to whether or not it belongs in that content set.
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
var $info_content_sets = array();
|
|
|
|
|
2007-05-23 03:27:36 +00:00
|
|
|
/**
|
|
|
|
* Doctype object
|
|
|
|
*/
|
|
|
|
var $doctype;
|
2007-05-04 01:17:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** PUBLIC BUT INTERNAL VARIABLES */
|
|
|
|
|
2007-05-25 01:32:29 +00:00
|
|
|
var $type = 'HTML';
|
2007-05-04 01:17:00 +00:00
|
|
|
var $manager; /**< Instance of HTMLPurifier_HTMLModuleManager */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs low-cost, preliminary initialization.
|
|
|
|
*/
|
2007-05-24 21:50:43 +00:00
|
|
|
function HTMLPurifier_HTMLDefinition() {
|
2007-05-04 01:17:00 +00:00
|
|
|
$this->manager = new HTMLPurifier_HTMLModuleManager();
|
|
|
|
}
|
|
|
|
|
2007-05-24 21:50:43 +00:00
|
|
|
function doSetup($config) {
|
|
|
|
$this->processModules($config);
|
|
|
|
$this->setupConfigStuff($config);
|
2007-05-04 01:17:00 +00:00
|
|
|
unset($this->manager);
|
2007-05-29 18:19:42 +00:00
|
|
|
|
|
|
|
// cleanup some of the element definitions
|
|
|
|
foreach ($this->info as $k => $v) {
|
|
|
|
unset($this->info[$k]->content_model);
|
|
|
|
unset($this->info[$k]->content_model_type);
|
|
|
|
}
|
2007-05-04 01:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract out the information from the manager
|
|
|
|
*/
|
2007-05-24 21:50:43 +00:00
|
|
|
function processModules($config) {
|
2007-05-04 01:17:00 +00:00
|
|
|
|
2007-05-24 21:50:43 +00:00
|
|
|
$this->manager->setup($config);
|
2007-05-23 03:27:36 +00:00
|
|
|
$this->doctype = $this->manager->doctype;
|
2007-05-04 01:17:00 +00:00
|
|
|
|
2007-05-14 02:24:21 +00:00
|
|
|
foreach ($this->manager->modules as $module) {
|
2007-05-04 01:17:00 +00:00
|
|
|
foreach($module->info_tag_transform as $k => $v) {
|
|
|
|
if ($v === false) unset($this->info_tag_transform[$k]);
|
|
|
|
else $this->info_tag_transform[$k] = $v;
|
|
|
|
}
|
|
|
|
foreach($module->info_attr_transform_pre as $k => $v) {
|
|
|
|
if ($v === false) unset($this->info_attr_transform_pre[$k]);
|
|
|
|
else $this->info_attr_transform_pre[$k] = $v;
|
|
|
|
}
|
|
|
|
foreach($module->info_attr_transform_post as $k => $v) {
|
|
|
|
if ($v === false) unset($this->info_attr_transform_post[$k]);
|
|
|
|
else $this->info_attr_transform_post[$k] = $v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-15 02:33:19 +00:00
|
|
|
$this->info = $this->manager->getElements();
|
2007-05-04 01:17:00 +00:00
|
|
|
$this->info_content_sets = $this->manager->contentSets->lookup;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up stuff based on config. We need a better way of doing this.
|
|
|
|
*/
|
2007-05-24 21:50:43 +00:00
|
|
|
function setupConfigStuff($config) {
|
2007-05-04 01:17:00 +00:00
|
|
|
|
2007-05-24 21:50:43 +00:00
|
|
|
$block_wrapper = $config->get('HTML', 'BlockWrapper');
|
2007-05-04 01:17:00 +00:00
|
|
|
if (isset($this->info_content_sets['Block'][$block_wrapper])) {
|
|
|
|
$this->info_block_wrapper = $block_wrapper;
|
|
|
|
} else {
|
|
|
|
trigger_error('Cannot use non-block element as block wrapper.',
|
|
|
|
E_USER_ERROR);
|
|
|
|
}
|
|
|
|
|
2007-05-24 21:50:43 +00:00
|
|
|
$parent = $config->get('HTML', 'Parent');
|
2007-05-15 02:33:19 +00:00
|
|
|
$def = $this->manager->getElement($parent, true);
|
2007-05-04 01:17:00 +00:00
|
|
|
if ($def) {
|
|
|
|
$this->info_parent = $parent;
|
|
|
|
$this->info_parent_def = $def;
|
|
|
|
} else {
|
|
|
|
trigger_error('Cannot use unrecognized element as parent.',
|
|
|
|
E_USER_ERROR);
|
2007-05-15 02:33:19 +00:00
|
|
|
$this->info_parent_def = $this->manager->getElement($this->info_parent, true);
|
2007-05-04 01:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// support template text
|
|
|
|
$support = "(for information on implementing this, see the ".
|
|
|
|
"support forums) ";
|
|
|
|
|
2007-05-14 01:58:05 +00:00
|
|
|
// setup allowed elements, SubtractiveWhitelist module(?)
|
2007-05-24 21:50:43 +00:00
|
|
|
$allowed_elements = $config->get('HTML', 'AllowedElements');
|
2007-05-04 01:17:00 +00:00
|
|
|
if (is_array($allowed_elements)) {
|
|
|
|
foreach ($this->info as $name => $d) {
|
|
|
|
if(!isset($allowed_elements[$name])) unset($this->info[$name]);
|
|
|
|
unset($allowed_elements[$name]);
|
|
|
|
}
|
|
|
|
// emit errors
|
|
|
|
foreach ($allowed_elements as $element => $d) {
|
2007-05-15 01:24:20 +00:00
|
|
|
$element = htmlspecialchars($element);
|
2007-05-04 01:17:00 +00:00
|
|
|
trigger_error("Element '$element' is not supported $support", E_USER_WARNING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-24 21:50:43 +00:00
|
|
|
$allowed_attributes = $config->get('HTML', 'AllowedAttributes');
|
2007-05-04 01:17:00 +00:00
|
|
|
$allowed_attributes_mutable = $allowed_attributes; // by copy!
|
|
|
|
if (is_array($allowed_attributes)) {
|
|
|
|
foreach ($this->info_global_attr as $attr_key => $info) {
|
|
|
|
if (!isset($allowed_attributes["*.$attr_key"])) {
|
|
|
|
unset($this->info_global_attr[$attr_key]);
|
|
|
|
} elseif (isset($allowed_attributes_mutable["*.$attr_key"])) {
|
|
|
|
unset($allowed_attributes_mutable["*.$attr_key"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($this->info as $tag => $info) {
|
|
|
|
foreach ($info->attr as $attr => $attr_info) {
|
|
|
|
if (!isset($allowed_attributes["$tag.$attr"]) &&
|
|
|
|
!isset($allowed_attributes["*.$attr"])) {
|
|
|
|
unset($this->info[$tag]->attr[$attr]);
|
|
|
|
} else {
|
|
|
|
if (isset($allowed_attributes_mutable["$tag.$attr"])) {
|
|
|
|
unset($allowed_attributes_mutable["$tag.$attr"]);
|
|
|
|
} elseif (isset($allowed_attributes_mutable["*.$attr"])) {
|
|
|
|
unset($allowed_attributes_mutable["*.$attr"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// emit errors
|
|
|
|
foreach ($allowed_attributes_mutable as $elattr => $d) {
|
|
|
|
list($element, $attribute) = explode('.', $elattr);
|
2007-05-15 01:24:20 +00:00
|
|
|
$element = htmlspecialchars($element);
|
|
|
|
$attribute = htmlspecialchars($attribute);
|
2007-05-04 01:17:00 +00:00
|
|
|
if ($element == '*') {
|
|
|
|
trigger_error("Global attribute '$attribute' is not ".
|
|
|
|
"supported in any elements $support",
|
|
|
|
E_USER_WARNING);
|
|
|
|
} else {
|
|
|
|
trigger_error("Attribute '$attribute' in element '$element' not supported $support",
|
|
|
|
E_USER_WARNING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|