| Total Complexity | 42 |
| Total Lines | 372 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
Complex classes like DoctrineSectionManager often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use DoctrineSectionManager, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 27 | class DoctrineSectionManager implements SectionManagerInterface |
||
| 28 | { |
||
| 29 | /** @var EntityManagerInterface */ |
||
| 30 | private $entityManager; |
||
| 31 | |||
| 32 | /** @var DoctrineFieldManager */ |
||
| 33 | private $fieldManager; |
||
| 34 | |||
| 35 | /** @var SectionHistoryManagerInterface */ |
||
| 36 | private $sectionHistoryManager; |
||
| 37 | |||
| 38 | /** @var array */ |
||
| 39 | private $opposingRelationships = [ |
||
| 40 | 'many-to-one' => 'one-to-many', |
||
| 41 | 'one-to-many' => 'many-to-one', |
||
| 42 | 'many-to-many' => 'many-to-many', |
||
| 43 | 'one-to-one' => 'one-to-one' |
||
| 44 | ]; |
||
| 45 | |||
| 46 | /** @var array */ |
||
| 47 | private $opposingRealtionshipTypes = [ |
||
| 48 | 'bidirectional' => 'unidirectional', |
||
| 49 | 'unidirectional' => 'bidirectional' |
||
| 50 | ]; |
||
| 51 | |||
| 52 | public function __construct( |
||
| 53 | EntityManagerInterface $entityManager, |
||
| 54 | FieldManagerInterface $fieldManager, |
||
| 55 | SectionHistoryManagerInterface $sectionHistoryManager |
||
| 56 | ) { |
||
| 57 | $this->entityManager = $entityManager; |
||
| 58 | $this->fieldManager = $fieldManager; |
||
|
|
|||
| 59 | $this->sectionHistoryManager = $sectionHistoryManager; |
||
| 60 | } |
||
| 61 | |||
| 62 | public function create(SectionInterface $entity): SectionInterface |
||
| 63 | { |
||
| 64 | $entity->setVersion(1); |
||
| 65 | $this->entityManager->persist($entity); |
||
| 66 | $this->entityManager->flush(); |
||
| 67 | |||
| 68 | return $entity; |
||
| 69 | } |
||
| 70 | |||
| 71 | public function read(Id $id): SectionInterface |
||
| 72 | { |
||
| 73 | $sectionRepository = $this->entityManager->getRepository(SectionEntity::class); |
||
| 74 | |||
| 75 | /** @var $section SectionInterface */ |
||
| 76 | $section = $sectionRepository->find($id->toInt()); |
||
| 77 | |||
| 78 | if (empty($section)) { |
||
| 79 | throw new SectionNotFoundException(); |
||
| 80 | } |
||
| 81 | |||
| 82 | return $section; |
||
| 83 | } |
||
| 84 | |||
| 85 | public function readByIds(array $ids): array |
||
| 101 | } |
||
| 102 | |||
| 103 | public function readAll(): array |
||
| 104 | { |
||
| 105 | $sectionRepository = $this->entityManager->getRepository(SectionEntity::class); |
||
| 106 | $sections = $sectionRepository->findAll(); |
||
| 107 | |||
| 108 | if (empty($sections)) { |
||
| 109 | throw new SectionNotFoundException(); |
||
| 110 | } |
||
| 111 | |||
| 112 | return $sections; |
||
| 113 | } |
||
| 114 | |||
| 115 | public function update(SectionInterface $entity): void |
||
| 116 | { |
||
| 117 | $this->entityManager->persist($entity); |
||
| 118 | $this->entityManager->flush(); |
||
| 119 | } |
||
| 120 | |||
| 121 | public function delete(SectionInterface $entity): void |
||
| 122 | { |
||
| 123 | $this->entityManager->remove($entity); |
||
| 124 | $this->entityManager->flush(); |
||
| 125 | } |
||
| 126 | |||
| 127 | public function createByConfig(SectionConfig $sectionConfig): SectionInterface |
||
| 128 | { |
||
| 129 | $section = new SectionEntity(); |
||
| 130 | $section->setVersion(1); |
||
| 131 | $this->updateByConfig($sectionConfig, $section); |
||
| 132 | |||
| 133 | return $section; |
||
| 134 | } |
||
| 135 | |||
| 136 | /** |
||
| 137 | * Restore an old version of a section by it's handle and version |
||
| 138 | * |
||
| 139 | * 1. Fetch the currently active section |
||
| 140 | * 2. Copy the section history data to the active section entity, including the version |
||
| 141 | * 3. Move the currently active section to history |
||
| 142 | * 4. Clean the field associations from the updated active section |
||
| 143 | * 5. Fetch the fields from the 'old' section config |
||
| 144 | * 6. Assign the fields to the section |
||
| 145 | * 7. Persist the active section |
||
| 146 | * |
||
| 147 | * This section might be generated from an updated config yml. Meaning the current config might |
||
| 148 | * not comply with the active section configuration anymore. |
||
| 149 | * |
||
| 150 | * This will only update the config stored in the database. The generators will have to be called |
||
| 151 | * to make the version change complete. |
||
| 152 | * |
||
| 153 | * @param $sectionFromHistory |
||
| 154 | * @return SectionInterface |
||
| 155 | */ |
||
| 156 | public function restoreFromHistory(SectionInterface $sectionFromHistory): SectionInterface |
||
| 157 | { |
||
| 158 | /** @var SectionInterface $activeSection */ |
||
| 159 | $activeSection = $this->readByHandle($sectionFromHistory->getHandle()); // 1 |
||
| 160 | |||
| 161 | /** @var SectionInterface $newSectionHistory */ |
||
| 162 | $newSectionHistory = $this->copySectionDataToSectionHistoryEntity($activeSection); // 2 |
||
| 163 | $newSectionHistory->setVersioned(new \DateTime()); // 3 |
||
| 164 | $version = $this->getHighestVersion($newSectionHistory->getHandle()); |
||
| 165 | $newSectionHistory->setVersion(1 + $version->toInt()); |
||
| 166 | $this->sectionHistoryManager->create($newSectionHistory); // 3 |
||
| 167 | |||
| 168 | $updatedActiveSection = $this->copySectionHistoryDataToSectionEntity($sectionFromHistory, $activeSection); // 4 |
||
| 169 | |||
| 170 | $updatedActiveSection->removeFields(); // 5 |
||
| 171 | $this->entityManager->persist($updatedActiveSection); |
||
| 172 | $this->entityManager->flush(); |
||
| 173 | |||
| 174 | $fields = $this->fieldManager->readByHandles($updatedActiveSection->getConfig()->getFields()); // 6 |
||
| 175 | |||
| 176 | foreach ($fields as $field) { |
||
| 177 | $updatedActiveSection->addField($field); |
||
| 178 | } // 7 |
||
| 179 | |||
| 180 | $this->entityManager->persist($updatedActiveSection); |
||
| 181 | $this->entityManager->flush(); |
||
| 182 | |||
| 183 | return $updatedActiveSection; |
||
| 184 | } |
||
| 185 | |||
| 186 | /** |
||
| 187 | * A section config is stored in the section history before it's updated. |
||
| 188 | * |
||
| 189 | * 1. Copy the data from the Section entity to the SectionHistory entity |
||
| 190 | * 2. Persist it in the entity history |
||
| 191 | * 3. Bump the version (+1) |
||
| 192 | * 4. Clear the field many to many relationships |
||
| 193 | * 5. Fetch the fields based on the config |
||
| 194 | * 6. Add them to the Section entity |
||
| 195 | * 7. Set the fields with the config values |
||
| 196 | * 8. Set the config |
||
| 197 | * 9. Persist the entity |
||
| 198 | * |
||
| 199 | * This new section might be created from an updated config yml. It's recommended to copy the old |
||
| 200 | * config yml before you update it. That way the config yml's history will be in compliance with the |
||
| 201 | * config stored in the database. |
||
| 202 | * |
||
| 203 | * This will only update the config stored in the database. The generators will have to be called |
||
| 204 | * to make the version change complete. |
||
| 205 | * |
||
| 206 | * @param SectionConfig $sectionConfig |
||
| 207 | * @param SectionInterface $section |
||
| 208 | * @param bool $history |
||
| 209 | * |
||
| 210 | * @return SectionInterface |
||
| 211 | */ |
||
| 212 | public function updateByConfig( |
||
| 213 | SectionConfig $sectionConfig, |
||
| 214 | SectionInterface $section, |
||
| 215 | bool $history = false |
||
| 216 | ): SectionInterface { |
||
| 217 | |||
| 218 | if ($history) { |
||
| 219 | /** @var SectionInterface $sectionHistory */ |
||
| 220 | $sectionHistory = $this->copySectionDataToSectionHistoryEntity($section); // 1 |
||
| 221 | $sectionHistory->setVersioned(new \DateTime()); // 2 |
||
| 222 | $this->sectionHistoryManager->create($sectionHistory); // 2 |
||
| 223 | $version = $this->getHighestVersion($section->getHandle()); |
||
| 224 | $section->setVersion(1 + $version->toInt()); // 3 |
||
| 225 | } |
||
| 226 | |||
| 227 | $section->removeFields(); // 4 |
||
| 228 | |||
| 229 | $fields = $this->fieldManager->readByHandles($sectionConfig->getFields()); // 5 |
||
| 230 | |||
| 231 | foreach ($fields as $field) { |
||
| 232 | $section->addField($field); |
||
| 233 | } // 6 |
||
| 234 | |||
| 235 | $section->setName((string) $sectionConfig->getName()); // 7 |
||
| 236 | $section->setHandle((string) $sectionConfig->getHandle()); // 7 |
||
| 237 | $section->setConfig($sectionConfig->toArray()); // 8 |
||
| 238 | |||
| 239 | $this->entityManager->persist($section); // 9 |
||
| 240 | $this->entityManager->flush(); // 9 |
||
| 241 | |||
| 242 | return $section; |
||
| 243 | } |
||
| 244 | |||
| 245 | public function getHighestVersion(Handle $handle): Version |
||
| 246 | { |
||
| 247 | $version = Version::fromInt(1); |
||
| 248 | $handle = (string) $handle; |
||
| 249 | // @codingStandardsIgnoreStart |
||
| 250 | |||
| 251 | $query = $this->entityManager->createQuery( |
||
| 252 | "SELECT MAX(section.version) FROM Tardigrades\Entity\SectionHistory section WHERE section.handle = '{$handle}'" |
||
| 253 | ); |
||
| 254 | |||
| 255 | // @codingStandardsIgnoreEnd |
||
| 256 | |||
| 257 | $results = $query->getResult(); |
||
| 258 | if (empty($results)) { |
||
| 259 | return $version; |
||
| 260 | } |
||
| 261 | |||
| 262 | return Version::fromInt((int) $results[0][1]); |
||
| 263 | } |
||
| 264 | |||
| 265 | public function readByHandle(Handle $handle): SectionInterface |
||
| 266 | { |
||
| 267 | $sectionRepository = $this->entityManager->getRepository(SectionEntity::class); |
||
| 268 | |||
| 269 | /** @var SectionEntity $section */ |
||
| 270 | $section = $sectionRepository->findBy(['handle' => $handle]); |
||
| 271 | |||
| 272 | if (empty($section)) { |
||
| 273 | throw new SectionNotFoundException(); |
||
| 274 | } |
||
| 275 | |||
| 276 | return $section[0]; |
||
| 277 | } |
||
| 278 | |||
| 279 | public function readByHandles(array $handles): array |
||
| 280 | { |
||
| 281 | $sectionHandles = []; |
||
| 282 | foreach ($handles as $handle) { |
||
| 283 | $sectionHandles[] = '\'' . $handle . '\''; |
||
| 284 | } |
||
| 285 | $whereIn = implode(',', $sectionHandles); |
||
| 286 | $query = $this->entityManager->createQuery( |
||
| 287 | "SELECT section FROM Tardigrades\Entity\Section section WHERE section.handle IN ({$whereIn})" |
||
| 288 | ); |
||
| 289 | $results = $query->getResult(); |
||
| 290 | if (empty($results)) { |
||
| 291 | throw new SectionNotFoundException(); |
||
| 292 | } |
||
| 293 | |||
| 294 | return $results; |
||
| 295 | } |
||
| 296 | |||
| 297 | public function getRelationshipsOfAll(): array |
||
| 298 | { |
||
| 299 | $relationships = []; |
||
| 300 | $sections = $this->readAll(); |
||
| 301 | /** @var SectionInterface $section */ |
||
| 302 | foreach ($sections as $section) { |
||
| 303 | $fields = $this->fieldManager->readByHandles($section->getConfig()->getFields()); |
||
| 304 | |||
| 305 | $sectionHandle = (string) $section->getHandle(); |
||
| 306 | if (!isset($relationships[$sectionHandle])) { |
||
| 307 | $relationships[$sectionHandle] = []; |
||
| 308 | } |
||
| 309 | |||
| 310 | /** @var FieldInterface $field */ |
||
| 311 | foreach ($fields as $field) { |
||
| 312 | try { |
||
| 313 | $fieldHandle = (string) $field->getHandle(); |
||
| 314 | $relationships[$sectionHandle][$fieldHandle] = [ |
||
| 315 | 'kind' => $field->getConfig()->getRelationshipKind(), |
||
| 316 | 'to' => $field->getConfig()->getRelationshipTo(), |
||
| 317 | 'from' => $sectionHandle, |
||
| 318 | 'fullyQualifiedClassName' => $field->getFieldType()->getFullyQualifiedClassName() |
||
| 319 | ]; |
||
| 320 | |||
| 321 | $fieldConfig = $field->getConfig()->toArray(); |
||
| 322 | |||
| 323 | if (!empty($fieldConfig['field']['relationship-type'])) { |
||
| 324 | $relationships[$sectionHandle][$fieldHandle]['relationship-type'] = |
||
| 325 | $fieldConfig['field']['relationship-type']; |
||
| 326 | } |
||
| 327 | |||
| 328 | if (!empty($fieldConfig['field']['from'])) { |
||
| 329 | $relationships[$sectionHandle][$fieldHandle]['from'] = $fieldConfig['field']['from']; |
||
| 330 | } |
||
| 331 | } catch (\Exception $exception) { |
||
| 332 | } |
||
| 333 | } |
||
| 334 | } |
||
| 335 | |||
| 336 | $relationships = $this->fillOpposingRelationshipSides($relationships); |
||
| 337 | |||
| 338 | return $relationships; |
||
| 339 | } |
||
| 340 | |||
| 341 | private function copySectionDataToSectionHistoryEntity(SectionInterface $section): SectionHistoryInterface |
||
| 354 | } |
||
| 355 | |||
| 356 | private function copySectionHistoryDataToSectionEntity( |
||
| 357 | SectionInterface $sectionHistory, |
||
| 369 | } |
||
| 370 | |||
| 371 | private function fillOpposingRelationshipSides(array $relationships): array |
||
| 399 | } |
||
| 400 | } |
||
| 401 |
Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a given class or a super-class is assigned to a property that is type hinted more strictly.
Either this assignment is in error or an instanceof check should be added for that assignment.