2006-07-30 16:35:05 +00:00
|
|
|
<?php
|
|
|
|
|
2006-08-20 21:47:15 +00:00
|
|
|
/**
|
|
|
|
* Validates the HTML attribute ID.
|
|
|
|
* @warning Even though this is the id processor, it
|
|
|
|
* will ignore the directive Attr:IDBlacklist, since it will only
|
|
|
|
* go according to the ID accumulator. Since the accumulator is
|
|
|
|
* automatically generated, it will have already absorbed the
|
|
|
|
* blacklist. If you're hacking around, make sure you use load()!
|
|
|
|
*/
|
2006-07-30 16:35:05 +00:00
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
class HTMLPurifier_AttrDef_HTML_ID extends HTMLPurifier_AttrDef
|
2006-07-30 16:35:05 +00:00
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-02-14 02:54:41 +00:00
|
|
|
// ref functionality disabled, since we also have to verify
|
|
|
|
// whether or not the ID it refers to exists
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2008-01-05 00:10:43 +00:00
|
|
|
public function validate($id, $config, $context) {
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-02-14 02:54:41 +00:00
|
|
|
if (!$config->get('Attr', 'EnableID')) return false;
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-08-05 00:30:31 +00:00
|
|
|
$id = trim($id); // trim it first
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-07-30 16:35:05 +00:00
|
|
|
if ($id === '') return false;
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-11-17 01:05:41 +00:00
|
|
|
$prefix = $config->get('Attr', 'IDPrefix');
|
|
|
|
if ($prefix !== '') {
|
|
|
|
$prefix .= $config->get('Attr', 'IDPrefixLocal');
|
|
|
|
// prevent re-appending the prefix
|
|
|
|
if (strpos($id, $prefix) !== 0) $id = $prefix . $id;
|
|
|
|
} elseif ($config->get('Attr', 'IDPrefixLocal') !== '') {
|
|
|
|
trigger_error('%Attr.IDPrefixLocal cannot be used unless '.
|
|
|
|
'%Attr.IDPrefix is set', E_USER_WARNING);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-02-14 02:54:41 +00:00
|
|
|
//if (!$this->ref) {
|
2007-02-02 22:03:09 +00:00
|
|
|
$id_accumulator =& $context->get('IDAccumulator');
|
|
|
|
if (isset($id_accumulator->ids[$id])) return false;
|
2007-02-14 02:54:41 +00:00
|
|
|
//}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-07-30 16:35:05 +00:00
|
|
|
// we purposely avoid using regex, hopefully this is faster
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-07-30 16:35:05 +00:00
|
|
|
if (ctype_alpha($id)) {
|
|
|
|
$result = true;
|
|
|
|
} else {
|
|
|
|
if (!ctype_alpha(@$id[0])) return false;
|
2006-08-04 00:11:54 +00:00
|
|
|
$trim = trim( // primitive style of regexps, I suppose
|
2006-07-30 16:35:05 +00:00
|
|
|
$id,
|
|
|
|
'A..Za..z0..9:-._'
|
|
|
|
);
|
|
|
|
$result = ($trim === '');
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-03-31 03:25:10 +00:00
|
|
|
$regexp = $config->get('Attr', 'IDBlacklistRegexp');
|
|
|
|
if ($regexp && preg_match($regexp, $id)) {
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-02-14 02:54:41 +00:00
|
|
|
if (/*!$this->ref && */$result) $id_accumulator->add($id);
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-08-04 00:11:54 +00:00
|
|
|
// if no change was made to the ID, return the result
|
|
|
|
// else, return the new id if stripping whitespace made it
|
|
|
|
// valid, or return false.
|
2006-08-05 00:30:31 +00:00
|
|
|
return $result ? $id : false;
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-07-30 16:35:05 +00:00
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-07-30 16:35:05 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|