mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
7d2bf08d2f
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@152 48356398-32a2-884e-a903-53898d9a118a
60 lines
2.0 KiB
PHP
60 lines
2.0 KiB
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/Strategy.php';
|
|
require_once 'HTMLPurifier/Definition.php';
|
|
require_once 'HTMLPurifier/IDAccumulator.php';
|
|
|
|
class HTMLPurifier_Strategy_ValidateAttributes extends HTMLPurifier_Strategy
|
|
{
|
|
|
|
var $definition;
|
|
|
|
function HTMLPurifier_Strategy_ValidateAttributes() {
|
|
$this->definition = HTMLPurifier_Definition::instance();
|
|
}
|
|
|
|
function execute($tokens) {
|
|
$accumulator = new HTMLPurifier_IDAccumulator();
|
|
$d_defs = $this->definition->info_global_attr;
|
|
foreach ($tokens as $key => $token) {
|
|
if ($token->type !== 'start' && $token->type !== 'end') continue;
|
|
|
|
// DEFINITION CALL
|
|
$defs = $this->definition->info[$token->name]->attr;
|
|
|
|
$attr = $token->attributes;
|
|
$changed = false;
|
|
foreach ($attr as $attr_key => $value) {
|
|
if ( isset($defs[$attr_key]) ) {
|
|
if (!$defs[$attr_key]) {
|
|
$result = false;
|
|
} else {
|
|
$result = $defs[$attr_key]->validate($value, $accumulator);
|
|
}
|
|
} elseif ( isset($d_defs[$attr_key]) ) {
|
|
$result = $d_defs[$attr_key]->validate($value, $accumulator);
|
|
} else {
|
|
$result = false;
|
|
}
|
|
if ($result === false) {
|
|
$changed = true;
|
|
unset($attr[$attr_key]);
|
|
} elseif (is_string($result)) {
|
|
// simple substitution
|
|
$changed = true;
|
|
$attr[$attr_key] = $result;
|
|
}
|
|
// we'd also want slightly more complicated substitution,
|
|
// although we're not sure how colliding attributes would
|
|
// resolve
|
|
}
|
|
if ($changed) {
|
|
$tokens[$key]->attributes = $attr;
|
|
}
|
|
}
|
|
return $tokens;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|