friendica/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php

87 lines
2.4 KiB
PHP
Raw Normal View History

2010-09-09 05:14:17 +02:00
<?php
/**
* Validates the HTML attribute lang, effectively a language code.
* @note Built according to RFC 3066, which obsoleted RFC 1766
*/
class HTMLPurifier_AttrDef_Lang extends HTMLPurifier_AttrDef
{
2016-02-09 11:06:17 +01:00
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
2010-09-09 05:14:17 +02:00
$string = trim($string);
2016-02-09 11:06:17 +01:00
if (!$string) {
return false;
}
2010-09-09 05:14:17 +02:00
$subtags = explode('-', $string);
$num_subtags = count($subtags);
2016-02-09 11:06:17 +01:00
if ($num_subtags == 0) { // sanity check
return false;
}
2010-09-09 05:14:17 +02:00
// process primary subtag : $subtags[0]
$length = strlen($subtags[0]);
switch ($length) {
case 0:
return false;
case 1:
2016-02-09 11:06:17 +01:00
if (!($subtags[0] == 'x' || $subtags[0] == 'i')) {
2010-09-09 05:14:17 +02:00
return false;
}
break;
case 2:
case 3:
2016-02-09 11:06:17 +01:00
if (!ctype_alpha($subtags[0])) {
2010-09-09 05:14:17 +02:00
return false;
2016-02-09 11:06:17 +01:00
} elseif (!ctype_lower($subtags[0])) {
2010-09-09 05:14:17 +02:00
$subtags[0] = strtolower($subtags[0]);
}
break;
default:
return false;
}
$new_string = $subtags[0];
2016-02-09 11:06:17 +01:00
if ($num_subtags == 1) {
return $new_string;
}
2010-09-09 05:14:17 +02:00
// process second subtag : $subtags[1]
$length = strlen($subtags[1]);
if ($length == 0 || ($length == 1 && $subtags[1] != 'x') || $length > 8 || !ctype_alnum($subtags[1])) {
return $new_string;
}
2016-02-09 11:06:17 +01:00
if (!ctype_lower($subtags[1])) {
$subtags[1] = strtolower($subtags[1]);
}
2010-09-09 05:14:17 +02:00
$new_string .= '-' . $subtags[1];
2016-02-09 11:06:17 +01:00
if ($num_subtags == 2) {
return $new_string;
}
2010-09-09 05:14:17 +02:00
// process all other subtags, index 2 and up
for ($i = 2; $i < $num_subtags; $i++) {
$length = strlen($subtags[$i]);
if ($length == 0 || $length > 8 || !ctype_alnum($subtags[$i])) {
return $new_string;
}
if (!ctype_lower($subtags[$i])) {
$subtags[$i] = strtolower($subtags[$i]);
}
$new_string .= '-' . $subtags[$i];
}
return $new_string;
}
}
// vim: et sw=4 sts=4