1 | <?php |
||
12 | class MetadataGubbinsHolder |
||
13 | { |
||
14 | protected $relations = []; |
||
15 | protected $knownSides = []; |
||
16 | |||
17 | public function addEntity(EntityGubbins $entity) |
||
32 | |||
33 | public function getRelationsByRelationName($className, $relName) |
||
59 | |||
60 | public function getRelationsByClass($className) |
||
89 | |||
90 | public function getRelations() |
||
91 | { |
||
92 | $classNames = array_keys($this->relations); |
||
93 | |||
94 | $associations = []; |
||
95 | |||
96 | foreach ($classNames as $class) { |
||
97 | $rawAssoc = $this->getRelationsByClass($class); |
||
98 | foreach ($rawAssoc as $raw) { |
||
99 | if (!in_array($raw, $associations)) { |
||
100 | $associations[] = $raw; |
||
101 | } |
||
102 | } |
||
103 | } |
||
104 | |||
105 | $unknowns = []; |
||
106 | foreach ($this->knownSides as $knownType => $knownDeets) { |
||
107 | $unknowns[$knownType] = []; |
||
108 | foreach (array_keys($knownDeets) as $key) { |
||
109 | $unknowns[$knownType][$key] = []; |
||
110 | } |
||
111 | } |
||
112 | $monoAssoc = []; |
||
113 | $polyAssoc = []; |
||
114 | foreach ($associations as $assoc) { |
||
115 | if ($assoc->getFirst() instanceof AssociationStubMonomorphic) { |
||
116 | $monoAssoc[] = $assoc; |
||
117 | continue; |
||
118 | } |
||
119 | // monomorphic associations are dealt with, now for the polymorphic associations - they're a mite trickier |
||
120 | $firstKnown = $assoc->getFirst()->isKnownSide(); |
||
121 | $known = $firstKnown ? $assoc->getFirst() : $assoc->getLast(); |
||
122 | $unknown = $firstKnown ? $assoc->getLast() : $assoc->getFirst(); |
||
123 | $className = $known->getBaseType(); |
||
124 | $relName = $known->getRelationName(); |
||
125 | $unknowns[$className][$relName][] = $unknown; |
||
126 | } |
||
127 | |||
128 | foreach ($this->knownSides as $knownType => $knownDeets) { |
||
129 | foreach (array_keys($knownDeets) as $key) { |
||
130 | $lastCandidates = $unknowns[$knownType][$key]; |
||
131 | if (0 == count($lastCandidates)) { |
||
132 | continue; |
||
133 | } |
||
134 | foreach($lastCandidates as $lc){ |
||
135 | $stub = clone $this->knownSides[$knownType][$key]; |
||
136 | $isMulti = ($stub->getMultiplicity()->getValue() == \AlgoWeb\PODataLaravel\Models\ObjectMap\Entities\Associations\AssociationStubRelationType::MANY); |
||
|
|||
137 | $RelPolyTypeName = str_plural(substr($lc->getBaseType(),strrpos($lc->getBaseType(),"\\")+1),$isMulti?2:1); |
||
138 | $stub->setRelationName($stub->getRelationName() . "_" . $RelPolyTypeName); |
||
139 | $assoc = new AssociationMonomorphic(); |
||
140 | $first = -1 === $stub->compare($lc); |
||
141 | $assoc->setFirst($first ? $stub : $lc); |
||
142 | $assoc->setLast($first ? $lc : $stub); |
||
143 | assert($assoc->isOk()); |
||
144 | $polyAssoc[] = $assoc; |
||
145 | } |
||
146 | } |
||
147 | } |
||
148 | $result = array_merge($monoAssoc, $polyAssoc); |
||
149 | return $result; |
||
150 | } |
||
151 | |||
152 | public function hasClass($className) |
||
156 | |||
157 | /** |
||
158 | * @param $className |
||
159 | */ |
||
160 | protected function checkClassExists($className) |
||
167 | } |
||
168 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.