mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-30 19:00:10 +02:00
Factor out content set and childdef functionality to ContentSets. Remove redundant info suffix from attr_collections.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@725 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
@@ -53,7 +53,7 @@ class HTMLPurifier_AttrCollections
|
|||||||
$info =& $this->info;
|
$info =& $this->info;
|
||||||
// load extensions from the modules
|
// load extensions from the modules
|
||||||
foreach ($modules as $module) {
|
foreach ($modules as $module) {
|
||||||
foreach ($module->attr_collections_info as $coll_i => $coll) {
|
foreach ($module->attr_collections as $coll_i => $coll) {
|
||||||
foreach ($coll as $attr_i => $attr) {
|
foreach ($coll as $attr_i => $attr) {
|
||||||
if ($attr_i === 0 && isset($info[$coll_i][$attr_i])) {
|
if ($attr_i === 0 && isset($info[$coll_i][$attr_i])) {
|
||||||
// merge in includes
|
// merge in includes
|
||||||
|
114
library/HTMLPurifier/ContentSets.php
Normal file
114
library/HTMLPurifier/ContentSets.php
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
// common defs that we'll support by default
|
||||||
|
require_once 'HTMLPurifier/ChildDef.php';
|
||||||
|
require_once 'HTMLPurifier/ChildDef/Empty.php';
|
||||||
|
require_once 'HTMLPurifier/ChildDef/Required.php';
|
||||||
|
require_once 'HTMLPurifier/ChildDef/Optional.php';
|
||||||
|
require_once 'HTMLPurifier/ChildDef/StrictBlockquote.php'; // transform
|
||||||
|
|
||||||
|
class HTMLPurifier_ContentSets
|
||||||
|
{
|
||||||
|
|
||||||
|
var $info = array();
|
||||||
|
var $lookup = array();
|
||||||
|
|
||||||
|
var $keys = array();
|
||||||
|
var $values = array();
|
||||||
|
|
||||||
|
function setup($modules) {
|
||||||
|
// populate content_sets based on module hints
|
||||||
|
foreach ($modules as $module_i => $module) {
|
||||||
|
foreach ($module->content_sets as $key => $value) {
|
||||||
|
if (isset($this->info[$key])) {
|
||||||
|
// add it into the existing content set
|
||||||
|
$this->info[$key] = $this->info[$key] . ' | ' . $value;
|
||||||
|
} else {
|
||||||
|
$this->info[$key] = $value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// perform content_set expansions
|
||||||
|
$this->keys = array_keys($this->info);
|
||||||
|
foreach ($this->info as $i => $set) {
|
||||||
|
// only performed once, so infinite recursion is not
|
||||||
|
// a problem
|
||||||
|
$this->info[$i] =
|
||||||
|
str_replace(
|
||||||
|
$this->keys,
|
||||||
|
// must be recalculated each time due to
|
||||||
|
// changing substitutions
|
||||||
|
array_values($this->info),
|
||||||
|
$set);
|
||||||
|
}
|
||||||
|
$this->values = array_values($this->info);
|
||||||
|
|
||||||
|
// generate lookup tables
|
||||||
|
foreach ($this->info as $name => $set) {
|
||||||
|
$this->lookup[$name] = $this->convertToLookup($set);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function generateChildDef(&$def, $module) {
|
||||||
|
$content_model = $def->content_model;
|
||||||
|
if (is_string($content_model)) {
|
||||||
|
$def->content_model = str_replace(
|
||||||
|
$this->keys, $this->values, $content_model);
|
||||||
|
}
|
||||||
|
$def->child = $this->getChildDef($def, $module);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instantiates a ChildDef based on content_model and content_model_type
|
||||||
|
* member variables in HTMLPurifier_ElementDef
|
||||||
|
* @note This will also defer to modules for custom HTMLPurifier_ChildDef
|
||||||
|
* subclasses that need content set expansion
|
||||||
|
* @param $def HTMLPurifier_ElementDef to have ChildDef extracted
|
||||||
|
* @return HTMLPurifier_ChildDef corresponding to ElementDef
|
||||||
|
*/
|
||||||
|
function getChildDef($def, $module) {
|
||||||
|
$value = $def->content_model;
|
||||||
|
if (is_object($value)) return $value; // direct object, return
|
||||||
|
switch ($def->content_model_type) {
|
||||||
|
case 'required':
|
||||||
|
return new HTMLPurifier_ChildDef_Required($value);
|
||||||
|
case 'optional':
|
||||||
|
return new HTMLPurifier_ChildDef_Optional($value);
|
||||||
|
case 'empty':
|
||||||
|
return new HTMLPurifier_ChildDef_Empty();
|
||||||
|
case 'strictblockquote':
|
||||||
|
return new HTMLPurifier_ChildDef_StrictBlockquote($value);
|
||||||
|
case 'custom':
|
||||||
|
return new HTMLPurifier_ChildDef_Custom($value);
|
||||||
|
}
|
||||||
|
// defer to its module
|
||||||
|
if (!$module->defines_child_def) continue; // save a func call
|
||||||
|
$return = $module->getChildDef($def);
|
||||||
|
if ($return !== false) return $return;
|
||||||
|
// error-out
|
||||||
|
trigger_error(
|
||||||
|
'Could not determine which ChildDef class to instantiate',
|
||||||
|
E_USER_ERROR
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts a string list of elements separated by pipes into
|
||||||
|
* a lookup array.
|
||||||
|
* @param $string List of elements
|
||||||
|
* @return Lookup array of elements
|
||||||
|
*/
|
||||||
|
function convertToLookup($string) {
|
||||||
|
$array = explode('|', str_replace(' ', '', $string));
|
||||||
|
$ret = array();
|
||||||
|
foreach ($array as $i => $k) {
|
||||||
|
$ret[$k] = true;
|
||||||
|
}
|
||||||
|
return $ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
File diff suppressed because it is too large
Load Diff
@@ -46,12 +46,12 @@ class HTMLPurifier_HTMLModule
|
|||||||
* Associative array of attribute collection names to attribute
|
* Associative array of attribute collection names to attribute
|
||||||
* collection additions. More rarely used for adding attributes to
|
* collection additions. More rarely used for adding attributes to
|
||||||
* the global collections. Example is the StyleAttribute module adding
|
* the global collections. Example is the StyleAttribute module adding
|
||||||
* the style attribute to the Core. Corresponds to attr_collections
|
* the style attribute to the Core. Corresponds to HTMLDefinition's
|
||||||
* attr_collections->info, as only one object with behavior is
|
* attr_collections->info, since the object's data is only info,
|
||||||
* necessary.
|
* with extra behavior associated with it.
|
||||||
* @public
|
* @public
|
||||||
*/
|
*/
|
||||||
var $attr_collections_info = array();
|
var $attr_collections = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Boolean flag that indicates whether or not getChildDef is implemented.
|
* Boolean flag that indicates whether or not getChildDef is implemented.
|
||||||
|
@@ -9,7 +9,7 @@ require_once 'HTMLPurifier/AttrDef/CSS.php';
|
|||||||
*/
|
*/
|
||||||
class HTMLPurifier_HTMLModule_StyleAttribute extends HTMLPurifier_HTMLModule
|
class HTMLPurifier_HTMLModule_StyleAttribute extends HTMLPurifier_HTMLModule
|
||||||
{
|
{
|
||||||
var $attr_collections_info = array(
|
var $attr_collections = array(
|
||||||
// The inclusion routine differs from the Abstract Modules but
|
// The inclusion routine differs from the Abstract Modules but
|
||||||
// is in line with the DTD and XML Schemas.
|
// is in line with the DTD and XML Schemas.
|
||||||
'Style' => array('style' => false), // see constructor
|
'Style' => array('style' => false), // see constructor
|
||||||
@@ -17,7 +17,7 @@ class HTMLPurifier_HTMLModule_StyleAttribute extends HTMLPurifier_HTMLModule
|
|||||||
);
|
);
|
||||||
|
|
||||||
function HTMLPurifier_HTMLModule_StyleAttribute() {
|
function HTMLPurifier_HTMLModule_StyleAttribute() {
|
||||||
$this->attr_collections_info['Style']['style'] = new HTMLPurifier_AttrDef_CSS();
|
$this->attr_collections['Style']['style'] = new HTMLPurifier_AttrDef_CSS();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user