DataArrayHelper: new helper class

This commit is contained in:
Thomas Gelf 2021-08-03 15:33:09 +02:00
parent 6152b5d1de
commit 348c2d9de4
1 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
<?php
namespace Icinga\Module\Director\Data;
use InvalidArgumentException;
use function array_diff;
use function array_key_exists;
use function implode;
class DataArrayHelper
{
public static function wantArray($value)
{
if (is_object($value)) {
return (array) $value;
} elseif (! is_array($value)) {
throw new InvalidDataException('Object', $value);
}
return $value;
}
public static function failOnUnknownProperties(array $values, array $knownProperties)
{
$unknownProperties = array_diff($knownProperties, array_keys($values));
if (! empty($unknownProperties)) {
throw new InvalidArgumentException('Unexpected properties: ' . implode(', ', $unknownProperties));
}
}
public static function requireProperties(array $value, array $properties)
{
$missing = [];
foreach ($properties as $property) {
if (! array_key_exists($property, $value)) {
$missing[] = $property;
}
}
if (! empty($missing)) {
throw new InvalidArgumentException('Missing properties: ' . implode(', ', $missing));
}
}
}