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
|
|
|
|
2012-01-14 08:08:02 +00:00
|
|
|
// selector is NOT a valid thing to use for IDREFs, because IDREFs
|
|
|
|
// *must* target IDs that exist, whereas selector #ids do not.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether or not we're validating an ID in a CSS
|
|
|
|
* selector context.
|
|
|
|
*/
|
|
|
|
protected $selector;
|
|
|
|
|
|
|
|
public function __construct($selector = false) {
|
|
|
|
$this->selector = $selector;
|
|
|
|
}
|
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
|
|
|
|
2012-01-14 08:08:02 +00:00
|
|
|
if (!$this->selector && !$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
|
|
|
|
2009-02-20 00:17:49 +00:00
|
|
|
$prefix = $config->get('Attr.IDPrefix');
|
2006-11-17 01:05:41 +00:00
|
|
|
if ($prefix !== '') {
|
2009-02-20 00:17:49 +00:00
|
|
|
$prefix .= $config->get('Attr.IDPrefixLocal');
|
2006-11-17 01:05:41 +00:00
|
|
|
// prevent re-appending the prefix
|
|
|
|
if (strpos($id, $prefix) !== 0) $id = $prefix . $id;
|
2009-02-20 00:17:49 +00:00
|
|
|
} elseif ($config->get('Attr.IDPrefixLocal') !== '') {
|
2006-11-17 01:05:41 +00:00
|
|
|
trigger_error('%Attr.IDPrefixLocal cannot be used unless '.
|
|
|
|
'%Attr.IDPrefix is set', E_USER_WARNING);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2012-01-14 08:08:02 +00:00
|
|
|
if (!$this->selector) {
|
2007-02-02 22:03:09 +00:00
|
|
|
$id_accumulator =& $context->get('IDAccumulator');
|
|
|
|
if (isset($id_accumulator->ids[$id])) return false;
|
2012-01-14 08:08:02 +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
|
|
|
|
2009-02-20 00:17:49 +00:00
|
|
|
$regexp = $config->get('Attr.IDBlacklistRegexp');
|
2007-03-31 03:25:10 +00:00
|
|
|
if ($regexp && preg_match($regexp, $id)) {
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2012-01-14 08:08:02 +00:00
|
|
|
if (!$this->selector && $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
|