2006-08-16 17:25:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/AttrDef.php';
|
|
|
|
|
|
|
|
// whitelisting allowed fonts would be nice
|
|
|
|
|
2006-08-20 21:47:15 +00:00
|
|
|
/**
|
|
|
|
* Validates a font family list according to CSS spec
|
|
|
|
*/
|
2007-02-14 20:38:51 +00:00
|
|
|
class HTMLPurifier_AttrDef_CSS_FontFamily extends HTMLPurifier_AttrDef
|
2006-08-16 17:25:25 +00:00
|
|
|
{
|
|
|
|
|
2008-01-05 00:10:43 +00:00
|
|
|
public function validate($string, $config, $context) {
|
2007-05-20 17:23:09 +00:00
|
|
|
static $generic_names = array(
|
|
|
|
'serif' => true,
|
|
|
|
'sans-serif' => true,
|
|
|
|
'monospace' => true,
|
|
|
|
'fantasy' => true,
|
|
|
|
'cursive' => true
|
|
|
|
);
|
|
|
|
|
2006-08-16 17:25:25 +00:00
|
|
|
$string = $this->parseCDATA($string);
|
|
|
|
// assume that no font names contain commas in them
|
|
|
|
$fonts = explode(',', $string);
|
|
|
|
$final = '';
|
|
|
|
foreach($fonts as $font) {
|
|
|
|
$font = trim($font);
|
|
|
|
if ($font === '') continue;
|
|
|
|
// match a generic name
|
2007-05-20 17:23:09 +00:00
|
|
|
if (isset($generic_names[$font])) {
|
2006-08-16 17:25:25 +00:00
|
|
|
$final .= $font . ', ';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// match a quoted name
|
|
|
|
if ($font[0] === '"' || $font[0] === "'") {
|
|
|
|
$length = strlen($font);
|
|
|
|
if ($length <= 2) continue;
|
|
|
|
$quote = $font[0];
|
|
|
|
if ($font[$length - 1] !== $quote) continue;
|
|
|
|
$font = substr($font, 1, $length - 2);
|
2007-08-03 02:48:52 +00:00
|
|
|
// double-backslash processing is buggy
|
|
|
|
$font = str_replace("\\$quote", $quote, $font); // de-escape quote
|
|
|
|
$font = str_replace("\\\n", "\n", $font); // de-escape newlines
|
2006-08-16 17:25:25 +00:00
|
|
|
}
|
2007-08-03 02:48:52 +00:00
|
|
|
// $font is a pure representation of the font name
|
|
|
|
|
2006-08-16 17:25:25 +00:00
|
|
|
if (ctype_alnum($font)) {
|
|
|
|
// very simple font, allow it in unharmed
|
|
|
|
$final .= $font . ', ';
|
|
|
|
continue;
|
|
|
|
}
|
2007-08-03 02:48:52 +00:00
|
|
|
|
|
|
|
// complicated font, requires quoting
|
|
|
|
|
|
|
|
// armor single quotes and new lines
|
|
|
|
$font = str_replace("'", "\\'", $font);
|
|
|
|
$font = str_replace("\n", "\\\n", $font);
|
|
|
|
$final .= "'$font', ";
|
2006-08-16 17:25:25 +00:00
|
|
|
}
|
|
|
|
$final = rtrim($final, ', ');
|
|
|
|
if ($final === '') return false;
|
|
|
|
return $final;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|