Skip to content

Commit

Permalink
merged branch marcosQuesada/serializer/denormalize-camelcase (PR #6951)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

[2.3] [Serializer] Enabled camelCase format to be used on denormalize method

 Enabled camelCase formater , that way when hydrating from arrays, attributes as attribute_name could be implemented as attributteName parameter, with getAttributeName and setAttributeName, giving different formating option from setAttribute_name  getAttribute_name.

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | yes
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | no
| License       | MIT
| Doc PR        | no

Commits
-------

fbffdf0 Enabled camelCase format to be used on denormalize method, that way camel_case attribute can be used on object as getCamelCase()
  • Loading branch information
fabpot committed Mar 23, 2013
2 parents 25a5395 + fbffdf0 commit f465d2a
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 4 deletions.
Expand Up @@ -38,6 +38,7 @@ class GetSetMethodNormalizer extends SerializerAwareNormalizer implements Normal
{
protected $callbacks = array();
protected $ignoredAttributes = array();
protected $camelizedAttributes = array();

/**
* Set normalization callbacks
Expand Down Expand Up @@ -66,6 +67,16 @@ public function setIgnoredAttributes(array $ignoredAttributes)
$this->ignoredAttributes = $ignoredAttributes;
}

/**
* Set attributes to be camelized on denormalize
*
* @param array $camelizedAttributes
*/
public function setCamelizedAttributes(array $camelizedAttributes)
{
$this->camelizedAttributes = $camelizedAttributes;
}

/**
* {@inheritdoc}
*/
Expand Down Expand Up @@ -111,7 +122,7 @@ public function denormalize($data, $class, $format = null, array $context = arra

$params = array();
foreach ($constructorParameters as $constructorParameter) {
$paramName = lcfirst($constructorParameter->name);
$paramName = lcfirst($this->formatAttribute($constructorParameter->name));

if (isset($data[$paramName])) {
$params[] = $data[$paramName];
Expand All @@ -132,7 +143,8 @@ public function denormalize($data, $class, $format = null, array $context = arra
}

foreach ($data as $attribute => $value) {
$setter = 'set'.$attribute;
$setter = 'set'.$this->formatAttribute($attribute);

if (method_exists($object, $setter)) {
$object->$setter($value);
}
Expand All @@ -141,6 +153,27 @@ public function denormalize($data, $class, $format = null, array $context = arra
return $object;
}

/**
* Format attribute name to access parameters or methods
* As option, if attribute name is found on camelizedAttributes array
* returns attribute name in camelcase format
*
* @param string $attribute
* @return string
*/
protected function formatAttribute($attributeName)
{
if (in_array($attributeName, $this->camelizedAttributes)) {
return preg_replace_callback(
'/(^|_|\.)+(.)/', function ($match) {
return ('.' === $match[1] ? '_' : '').strtoupper($match[2]);
}, $attributeName
);
}

return $attributeName;
}

/**
* {@inheritDoc}
*/
Expand Down
Expand Up @@ -26,8 +26,9 @@ public function testNormalize()
$obj = new GetSetDummy;
$obj->setFoo('foo');
$obj->setBar('bar');
$obj->setCamelCase('camelcase');
$this->assertEquals(
array('foo' => 'foo', 'bar' => 'bar', 'fooBar' => 'foobar'),
array('foo' => 'foo', 'bar' => 'bar', 'fooBar' => 'foobar', 'camelCase' => 'camelcase'),
$this->normalizer->normalize($obj, 'any')
);
}
Expand All @@ -43,6 +44,39 @@ public function testDenormalize()
$this->assertEquals('bar', $obj->getBar());
}

public function testDenormalizeOnCamelCaseFormat()
{
$this->normalizer->setCamelizedAttributes(array('camel_case'));
$obj = $this->normalizer->denormalize(
array('camel_case' => 'camelCase'),
__NAMESPACE__.'\GetSetDummy'
);
$this->assertEquals('camelCase', $obj->getCamelCase());
}

/**
* @dataProvider attributeProvider
*/
public function testFormatAttribute($attribute, $camelizedAttributes, $result)
{
$r = new \ReflectionObject($this->normalizer);
$m = $r->getMethod('formatAttribute');
$m->setAccessible(true);

$this->normalizer->setCamelizedAttributes($camelizedAttributes);
$this->assertEquals($m->invoke($this->normalizer, $attribute, $camelizedAttributes), $result);
}

public function attributeProvider()
{
return array(
array('attribute_test', array('attribute_test'),'AttributeTest'),
array('attribute_test', array('any'),'attribute_test'),
array('attribute', array('attribute'),'Attribute'),
array('attribute', array(), 'attribute'),
);
}

public function testConstructorDenormalize()
{
$obj = $this->normalizer->denormalize(
Expand Down Expand Up @@ -82,7 +116,7 @@ public function testUncallableCallbacks()

public function testIgnoredAttributes()
{
$this->normalizer->setIgnoredAttributes(array('foo', 'bar'));
$this->normalizer->setIgnoredAttributes(array('foo', 'bar', 'camelCase'));

$obj = new GetSetDummy;
$obj->setFoo('foo');
Expand Down Expand Up @@ -160,6 +194,7 @@ class GetSetDummy
{
protected $foo;
private $bar;
protected $camelCase;

public function getFoo()
{
Expand All @@ -186,6 +221,16 @@ public function getFooBar()
return $this->foo . $this->bar;
}

public function getCamelCase()
{
return $this->camelCase;
}

public function setCamelCase($camelCase)
{
$this->camelCase = $camelCase;
}

public function otherMethod()
{
throw new \RuntimeException("Dummy::otherMethod() should not be called");
Expand Down

0 comments on commit f465d2a

Please sign in to comment.