<?php
namespace Symfony\Component\Serializer\NameConverter;
use Symfony\Component\Serializer\Exception\UnexpectedPropertyException;
class CamelCaseToSnakeCaseNameConverter implements NameConverterInterface
{
public const REQUIRE_SNAKE_CASE_PROPERTIES = 'require_snake_case_properties';
public function __construct(
private ?array $attributes = null,
private bool $lowerCamelCase = true,
) {
}
public function normalize(string $propertyName): string
{
if (null === $this->attributes || \in_array($propertyName, $this->attributes, true)) {
return strtolower(preg_replace('/[A-Z]/', '_\\0', lcfirst($propertyName)));
}
return $propertyName;
}
public function denormalize(string $propertyName): string
{
$class = 1 < \func_num_args() ? func_get_arg(1) : null;
$format = 2 < \func_num_args() ? func_get_arg(2) : null;
$context = 3 < \func_num_args() ? func_get_arg(3) : [];
if (($context[self::REQUIRE_SNAKE_CASE_PROPERTIES] ?? false) && $propertyName !== $this->normalize($propertyName, $class, $format, $context)) {
throw new UnexpectedPropertyException($propertyName);
}
$camelCasedName = preg_replace_callback('/(^|_|\.)+(.)/', fn ($match) => ('.' === $match[1] ? '_' : '').strtoupper($match[2]), $propertyName);
if ($this->lowerCamelCase) {
$camelCasedName = lcfirst($camelCasedName);
}
if (null === $this->attributes || \in_array($camelCasedName, $this->attributes, true)) {
return $camelCasedName;
}
return $propertyName;
}
}