0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-12-23 08:51:53 +00:00

Create two more module sets: activeModules and validModules to supplant the getModules() method.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@756 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2007-02-16 03:33:29 +00:00
parent 0870974a25
commit 31d0c621f5
2 changed files with 46 additions and 58 deletions

View File

@ -200,9 +200,8 @@ class HTMLPurifier_HTMLDefinition
function processModules() { function processModules() {
$this->manager->setup($this->config); $this->manager->setup($this->config);
$modules = $this->manager->getModules($this->config);
foreach ($modules as $module) { foreach ($this->manager->activeModules as $module) {
foreach($module->info_tag_transform as $k => $v) $this->info_tag_transform[$k] = $v; foreach($module->info_tag_transform as $k => $v) $this->info_tag_transform[$k] = $v;
foreach($module->info_attr_transform_pre as $k => $v) $this->info_attr_transform_pre[$k] = $v; foreach($module->info_attr_transform_pre as $k => $v) $this->info_attr_transform_pre[$k] = $v;
foreach($module->info_attr_transform_post as $k => $v) $this->info_attr_transform_post[$k]= $v; foreach($module->info_attr_transform_post as $k => $v) $this->info_attr_transform_post[$k]= $v;

View File

@ -30,10 +30,20 @@ class HTMLPurifier_HTMLModuleManager
var $modules = array(); var $modules = array();
/** /**
* Modules that, according to the current doctype and related settings, * Modules that may be used in a valid doctype of this kind.
* may be used.
*/ */
// var $validModules = array(); var $validModules = array();
/**
* Modules that we will use broadly, subset of validModules. Single
* element definitions may result in us consulting validModules.
*/
var $activeModules = array();
/**
* Current doctype for which $validModules is based
*/
var $doctype;
/** /**
* Associative array of module class name to module order keywords or * Associative array of module class name to module order keywords or
@ -158,15 +168,12 @@ class HTMLPurifier_HTMLModuleManager
} }
$this->modules[$module->name] = $module; $this->modules[$module->name] = $module;
$this->order[$module->name] = $order; $this->order[$module->name] = $order;
foreach ($module->elements as $name) {
if (!isset($this->elementModuleLookup[$name])) {
$this->elementModuleLookup[$name] = array();
}
$this->elementModuleLookup[$name][] = $module->name;
}
} }
function setup($config) { function setup($config) {
// retrieve the doctype
$this->doctype = $this->getDoctype($config);
// substitute out the order keywords // substitute out the order keywords
foreach ($this->order as $name => $order) { foreach ($this->order as $name => $order) {
if (empty($this->modules[$name])) { if (empty($this->modules[$name])) {
@ -187,31 +194,43 @@ class HTMLPurifier_HTMLModuleManager
$this->modules $this->modules
); );
// process module collections to module name => module instance form
$this->processCollections($this->collectionsSafe); $this->processCollections($this->collectionsSafe);
$this->processCollections($this->collectionsLenient); $this->processCollections($this->collectionsLenient);
$this->processCollections($this->collectionsCorrectional); $this->processCollections($this->collectionsCorrectional);
// sort the lookup modules // setup the validModules array
foreach ($this->elementModuleLookup as $k => $modules) { if (isset($this->collectionsSafe[$this->doctype])) {
if (count($modules) > 1) { $this->validModules += $this->collectionsSafe[$this->doctype];
$this->elementModuleLookup[$k] = array(); }
$module_lookup = array_flip($modules); if (isset($this->collectionsLenient[$this->doctype])) {
foreach ($this->order as $name => $v) { $this->validModules += $this->collectionsLenient[$this->doctype];
if (isset($module_lookup[$name])) { }
$this->elementModuleLookup[$k][] = $name; if (isset($this->collectionsCorrectional[$this->doctype])) {
} $this->validModules += $this->collectionsCorrectional[$this->doctype];
}
// setup the activeModules array
$this->activeModules = $this->validModules; // unimplemented!
// setup lookup table based on all valid modules
foreach ($this->validModules as $module) {
foreach ($module->elements as $name) {
if (!isset($this->elementModuleLookup[$name])) {
$this->elementModuleLookup[$name] = array();
} }
$this->elementModuleLookup[$name][] = $module->name;
} }
} }
// notice that it is vital that we get a full content sets // note the different choice
// elements lineup, but attr collections must not go by
// anything other than the modules the user wants
$this->contentSets = new HTMLPurifier_ContentSets( $this->contentSets = new HTMLPurifier_ContentSets(
$this->getModules($config, true) $this->validModules
);
$this->attrCollections = new HTMLPurifier_AttrCollections(
$this->attrTypes,
$this->activeModules
); );
$this->attrCollections = new HTMLPurifier_AttrCollections($this->attrTypes,
$this->getModules($config));
} }
@ -273,43 +292,13 @@ class HTMLPurifier_HTMLModuleManager
return $doctype; return $doctype;
} }
/**
* @param $config
* @param $full Whether or not to retrieve *all* applicable modules
* for the doctype and not just the safe/whitelisted ones.
* Leniency modules are added based on config though.
*/
function getModules($config, $full = false) {
// CACHE!!!
$doctype = $this->getDoctype($config);
// more logic is needed here to retrieve modules based on
// configuration's leniency, etc.
$modules = $this->collectionsSafe[$doctype];
if(isset($this->collectionsLenient[$doctype])) {
$modules = array_merge($modules, $this->collectionsLenient[$doctype]);
}
if(isset($this->collectionsCorrectional[$doctype])) {
$modules = array_merge($modules, $this->collectionsCorrectional[$doctype]);
}
return $modules;
}
/** /**
* @param $config * @param $config
*/ */
function getElements($config) { function getElements($config) {
$modules = $this->getModules($config);
$elements = array(); $elements = array();
foreach ($modules as $module) { foreach ($this->activeModules as $module) {
foreach ($module->elements as $name) { foreach ($module->elements as $name) {
$elements[$name] = $this->getElement($name, $config); $elements[$name] = $this->getElement($name, $config);
} }
@ -323,7 +312,7 @@ class HTMLPurifier_HTMLModuleManager
$def = false; $def = false;
$modules = $this->getModules($config, true); $modules = $this->validModules;
if (!isset($this->elementModuleLookup[$name])) { if (!isset($this->elementModuleLookup[$name])) {
return false; return false;