101 lines
3.4 KiB
PHP
101 lines
3.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\Serializer\Normalizer;
|
|
|
|
use Symfony\Component\PropertyInfo\Type;
|
|
use Symfony\Component\Serializer\Exception\LogicException;
|
|
use Symfony\Component\Serializer\Exception\NotNormalizableValueException;
|
|
use Symfony\Component\Uid\AbstractUid;
|
|
use Symfony\Component\Uid\Uuid;
|
|
|
|
final class UidNormalizer implements NormalizerInterface, DenormalizerInterface, CacheableSupportsMethodInterface
|
|
{
|
|
public const NORMALIZATION_FORMAT_KEY = 'uid_normalization_format';
|
|
|
|
public const NORMALIZATION_FORMAT_CANONICAL = 'canonical';
|
|
public const NORMALIZATION_FORMAT_BASE58 = 'base58';
|
|
public const NORMALIZATION_FORMAT_BASE32 = 'base32';
|
|
public const NORMALIZATION_FORMAT_RFC4122 = 'rfc4122';
|
|
|
|
private $defaultContext = [
|
|
self::NORMALIZATION_FORMAT_KEY => self::NORMALIZATION_FORMAT_CANONICAL,
|
|
];
|
|
|
|
public function __construct(array $defaultContext = [])
|
|
{
|
|
$this->defaultContext = array_merge($this->defaultContext, $defaultContext);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @param AbstractUid $object
|
|
*/
|
|
public function normalize(mixed $object, string $format = null, array $context = []): array|string|int|float|bool|\ArrayObject|null
|
|
{
|
|
switch ($context[self::NORMALIZATION_FORMAT_KEY] ?? $this->defaultContext[self::NORMALIZATION_FORMAT_KEY]) {
|
|
case self::NORMALIZATION_FORMAT_CANONICAL:
|
|
return (string) $object;
|
|
case self::NORMALIZATION_FORMAT_BASE58:
|
|
return $object->toBase58();
|
|
case self::NORMALIZATION_FORMAT_BASE32:
|
|
return $object->toBase32();
|
|
case self::NORMALIZATION_FORMAT_RFC4122:
|
|
return $object->toRfc4122();
|
|
}
|
|
|
|
throw new LogicException(sprintf('The "%s" format is not valid.', $context[self::NORMALIZATION_FORMAT_KEY] ?? $this->defaultContext[self::NORMALIZATION_FORMAT_KEY]));
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function supportsNormalization(mixed $data, string $format = null): bool
|
|
{
|
|
return $data instanceof AbstractUid;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function denormalize(mixed $data, string $type, string $format = null, array $context = []): mixed
|
|
{
|
|
try {
|
|
return AbstractUid::class !== $type ? $type::fromString($data) : Uuid::fromString($data);
|
|
} catch (\InvalidArgumentException|\TypeError $exception) {
|
|
throw NotNormalizableValueException::createForUnexpectedDataType(sprintf('The data is not a valid "%s" string representation.', $type), $data, [Type::BUILTIN_TYPE_STRING], $context['deserialization_path'] ?? null, true);
|
|
} catch (\Error $e) {
|
|
if (str_starts_with($e->getMessage(), 'Cannot instantiate abstract class')) {
|
|
return $this->denormalize($data, AbstractUid::class, $format, $context);
|
|
}
|
|
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function supportsDenormalization(mixed $data, string $type, string $format = null): bool
|
|
{
|
|
return is_a($type, AbstractUid::class, true);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function hasCacheableSupportsMethod(): bool
|
|
{
|
|
return __CLASS__ === static::class;
|
|
}
|
|
}
|