1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?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\NameConverter;
- /**
- * CamelCase to Underscore name converter.
- *
- * @author Kévin Dunglas <dunglas@gmail.com>
- */
- class CamelCaseToSnakeCaseNameConverter implements NameConverterInterface
- {
- private $attributes;
- private $lowerCamelCase;
- /**
- * @param array|null $attributes The list of attributes to rename or null for all attributes
- * @param bool $lowerCamelCase Use lowerCamelCase style
- */
- public function __construct(array $attributes = null, bool $lowerCamelCase = true)
- {
- $this->attributes = $attributes;
- $this->lowerCamelCase = $lowerCamelCase;
- }
- /**
- * {@inheritdoc}
- */
- public function normalize(string $propertyName)
- {
- if (null === $this->attributes || \in_array($propertyName, $this->attributes)) {
- return strtolower(preg_replace('/[A-Z]/', '_\\0', lcfirst($propertyName)));
- }
- return $propertyName;
- }
- /**
- * {@inheritdoc}
- */
- public function denormalize(string $propertyName)
- {
- $camelCasedName = preg_replace_callback('/(^|_|\.)+(.)/', function ($match) {
- return ('.' === $match[1] ? '_' : '').strtoupper($match[2]);
- }, $propertyName);
- if ($this->lowerCamelCase) {
- $camelCasedName = lcfirst($camelCasedName);
- }
- if (null === $this->attributes || \in_array($camelCasedName, $this->attributes)) {
- return $camelCasedName;
- }
- return $propertyName;
- }
- }
|