Skip to content

Commit 497ff50

Browse files
committed
fix(resource model): allow meta data reading from relationship
1 parent 9586d33 commit 497ff50

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

src/Model/Resource/FlatResource.php

+26
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,13 @@ class FlatResource
2525
/** @var ResourceInterface */
2626
private $resource;
2727

28+
/** @var array<string,array> */
29+
private array $relationshipMetas;
30+
2831
public function __construct(ResourceInterface $resource)
2932
{
3033
$this->resource = $resource;
34+
$this->relationshipMetas = [];
3135
}
3236

3337
/**
@@ -62,6 +66,7 @@ public function getRelationships(): array
6266

6367
/** @var RelationshipInterface $relationship */
6468
foreach ($this->resource->getRelationships() as $relationship) {
69+
$this->buildRelationshipMeta($relationship);
6570
$relationshipData = $relationship->getData();
6671

6772
if (null === $relationshipData) {
@@ -79,6 +84,7 @@ public function getRelationships(): array
7984
if ($relationshipData instanceof ToOneRelationshipDataInterface && false === $relationshipData->isEmpty()) {
8085
/** @var ResourceIdentifierInterface $data */
8186
$data = $relationshipData->getData();
87+
8288
$flatRelationships[$relationship->getName()] = $data->getId();
8389

8490
continue;
@@ -129,4 +135,24 @@ public function getIndexedRelationshipObjects(): array
129135

130136
return $flatRelationships;
131137
}
138+
139+
/** @return array<string,array<mixed,mixed>> */
140+
public function getRelationshipMetas(): array
141+
{
142+
if (true === empty($this->relationshipMetas)) {
143+
/** @var RelationshipInterface $relationship */
144+
foreach ($this->resource->getRelationships() as $relationship) {
145+
$this->buildRelationshipMeta($relationship);
146+
}
147+
}
148+
149+
return $this->relationshipMetas;
150+
}
151+
152+
private function buildRelationshipMeta(RelationshipInterface $relationship): void
153+
{
154+
$this->relationshipMetas[$relationship->getName() . 'Meta'] = null === $relationship->getMeta()
155+
? []
156+
: $relationship->getMeta()->getData();
157+
}
132158
}

src/Service/Resource/Denormalizer/ResourceDenormalizer.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function denormalize(ResourceInterface $resource, string $class): ApiMode
5050
try {
5151
/** @var ApiModel $result */
5252
$result = $this->denormalizer->denormalize($data, $class, null, [
53-
AbstractNormalizer::ALLOW_EXTRA_ATTRIBUTES => false,
53+
AbstractNormalizer::ALLOW_EXTRA_ATTRIBUTES => true,
5454
]);
5555
} catch (MissingConstructorArgumentsException $e) {
5656
throw new MissingDataValueResourceDenormalizationException(
@@ -85,6 +85,7 @@ private function prepareData(ResourceInterface $resource, string $class): array
8585
];
8686
$data = array_merge($data, $flatResource->getAttributes());
8787
$data = array_merge($data, $flatResource->getRelationships());
88+
$data = array_merge($data, $flatResource->getRelationshipMetas());
8889

8990
/*
9091
* Resource has attribute and relationship names that can be different from the property name in the class.

0 commit comments

Comments
 (0)