mirror of
https://github.com/moodle/moodle.git
synced 2025-07-26 08:50:30 +02:00
Prior to this change, all the line endings in the imported HTMLPurifier library were using CRLF (\r\n aka Windows style), but the HTMLPurifier source and also the downloadable artefacts use LF (\n aka Linux style) as line endings. This has been the case since510d190382
when with the commit "MDL-38672 import HTML Purifier 4.5.0" all line endings were changed from LF to CRLF. There was no comment in the commit on why this change was done. As the original source uses LF, this commit partly reverts510d190382
and goes back to LF as line endings. Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
87 lines
2.4 KiB
PHP
87 lines
2.4 KiB
PHP
<?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
|
|
{
|
|
|
|
/**
|
|
* @param string $string
|
|
* @param HTMLPurifier_Config $config
|
|
* @param HTMLPurifier_Context $context
|
|
* @return bool|string
|
|
*/
|
|
public function validate($string, $config, $context)
|
|
{
|
|
$string = trim($string);
|
|
if (!$string) {
|
|
return false;
|
|
}
|
|
|
|
$subtags = explode('-', $string);
|
|
$num_subtags = count($subtags);
|
|
|
|
if ($num_subtags == 0) { // sanity check
|
|
return false;
|
|
}
|
|
|
|
// process primary subtag : $subtags[0]
|
|
$length = strlen($subtags[0]);
|
|
switch ($length) {
|
|
case 0:
|
|
return false;
|
|
case 1:
|
|
if (!($subtags[0] == 'x' || $subtags[0] == 'i')) {
|
|
return false;
|
|
}
|
|
break;
|
|
case 2:
|
|
case 3:
|
|
if (!ctype_alpha($subtags[0])) {
|
|
return false;
|
|
} elseif (!ctype_lower($subtags[0])) {
|
|
$subtags[0] = strtolower($subtags[0]);
|
|
}
|
|
break;
|
|
default:
|
|
return false;
|
|
}
|
|
|
|
$new_string = $subtags[0];
|
|
if ($num_subtags == 1) {
|
|
return $new_string;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
if (!ctype_lower($subtags[1])) {
|
|
$subtags[1] = strtolower($subtags[1]);
|
|
}
|
|
|
|
$new_string .= '-' . $subtags[1];
|
|
if ($num_subtags == 2) {
|
|
return $new_string;
|
|
}
|
|
|
|
// 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
|