blob: cadfc219a3c010ae9a058f4405a8d2a381a1d929 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
namespace Icinga\Module\Director\Data;
use InvalidArgumentException;
use ipl\Html\Error;
class RecursiveUtf8Validator
{
protected static $rowNum;
protected static $column;
/**
* @param array $rows Usually array of stdClass
* @return bool
*/
public static function validateRows($rows)
{
foreach ($rows as self::$rowNum => $row) {
foreach ($row as self::$column => $value) {
static::assertUtf8($value);
}
}
return true;
}
protected static function assertUtf8($value)
{
if (\is_string($value)) {
static::assertUtf8String($value);
} elseif (\is_array($value) || $value instanceof \stdClass) {
foreach ((array) $value as $k => $v) {
static::assertUtf8($k);
static::assertUtf8($v);
}
} elseif ($value !== null && !\is_scalar($value)) {
throw new InvalidArgumentException("Cannot validate " . Error::getPhpTypeName($value));
}
}
protected static function assertUtf8String($string)
{
if (@\iconv('UTF-8', 'UTF-8', $string) != $string) {
$row = self::$rowNum;
if (is_int($row)) {
$row++;
}
throw new InvalidArgumentException(\sprintf(
'Invalid UTF-8 on row %s, column %s: "%s" (%s)',
$row,
self::$column,
\iconv('UTF-8', 'UTF-8//IGNORE', $string),
'0x' . \bin2hex($string)
));
}
}
}
|