@@ -25,9 +25,13 @@ class FlatResource
25
25
/** @var ResourceInterface */
26
26
private $ resource ;
27
27
28
+ /** @var array<string,array> */
29
+ private array $ relationshipMetas ;
30
+
28
31
public function __construct (ResourceInterface $ resource )
29
32
{
30
33
$ this ->resource = $ resource ;
34
+ $ this ->relationshipMetas = [];
31
35
}
32
36
33
37
/**
@@ -62,6 +66,7 @@ public function getRelationships(): array
62
66
63
67
/** @var RelationshipInterface $relationship */
64
68
foreach ($ this ->resource ->getRelationships () as $ relationship ) {
69
+ $ this ->buildRelationshipMeta ($ relationship );
65
70
$ relationshipData = $ relationship ->getData ();
66
71
67
72
if (null === $ relationshipData ) {
@@ -79,6 +84,7 @@ public function getRelationships(): array
79
84
if ($ relationshipData instanceof ToOneRelationshipDataInterface && false === $ relationshipData ->isEmpty ()) {
80
85
/** @var ResourceIdentifierInterface $data */
81
86
$ data = $ relationshipData ->getData ();
87
+
82
88
$ flatRelationships [$ relationship ->getName ()] = $ data ->getId ();
83
89
84
90
continue ;
@@ -129,4 +135,24 @@ public function getIndexedRelationshipObjects(): array
129
135
130
136
return $ flatRelationships ;
131
137
}
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
+ }
132
158
}
0 commit comments