Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Admin 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 Admin, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 25 | class Admin implements AdminInterface |
||
| 26 | { |
||
| 27 | use AdminTrait; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Entities collection. |
||
| 31 | * |
||
| 32 | * @var ArrayCollection |
||
| 33 | */ |
||
| 34 | protected $entities; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var MessageHandlerInterface |
||
| 38 | */ |
||
| 39 | protected $messageHandler; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var EntityManagerInterface |
||
| 43 | */ |
||
| 44 | protected $entityManager; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @var DataProviderInterface |
||
| 48 | */ |
||
| 49 | protected $dataProvider; |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Admin configuration object |
||
| 53 | * |
||
| 54 | * @var AdminConfiguration |
||
| 55 | */ |
||
| 56 | protected $configuration; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Admin configured actions |
||
| 60 | * |
||
| 61 | * @var ActionInterface[] |
||
| 62 | */ |
||
| 63 | protected $actions = []; |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Admin current action. It will be set after calling the handleRequest() |
||
| 67 | * |
||
| 68 | * @var ActionInterface |
||
| 69 | */ |
||
| 70 | protected $currentAction; |
||
| 71 | |||
| 72 | /** |
||
| 73 | * Admin name |
||
| 74 | * |
||
| 75 | * @var string |
||
| 76 | */ |
||
| 77 | protected $name; |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @var EventDispatcherInterface |
||
| 81 | */ |
||
| 82 | protected $eventDispatcher; |
||
| 83 | |||
| 84 | /** |
||
| 85 | * @var RequestFilterInterface |
||
| 86 | */ |
||
| 87 | protected $requestFilter; |
||
| 88 | |||
| 89 | /** |
||
| 90 | * Admin constructor. |
||
| 91 | * |
||
| 92 | * @param string $name |
||
| 93 | * @param DataProviderInterface $dataProvider |
||
| 94 | * @param AdminConfiguration $configuration |
||
| 95 | 26 | * @param MessageHandlerInterface $messageHandler |
|
| 96 | * @param EventDispatcherInterface $eventDispatcher |
||
| 97 | * @param RequestFilterInterface $requestFilter |
||
| 98 | */ |
||
| 99 | public function __construct( |
||
| 115 | |||
| 116 | /** |
||
| 117 | * Load entities and set current action according to request. |
||
| 118 | 9 | * |
|
| 119 | * @param Request $request |
||
| 120 | * @param null $user |
||
| 121 | 9 | * @return void |
|
| 122 | * @throws AdminException |
||
| 123 | 9 | */ |
|
| 124 | public function handleRequest(Request $request, $user = null) |
||
| 158 | 9 | ||
| 159 | /** |
||
| 160 | 9 | * Check if user is allowed to be here |
|
| 161 | 9 | * |
|
| 162 | * @param UserInterface|string $user |
||
| 163 | 1 | * @throws Exception |
|
| 164 | 1 | */ |
|
| 165 | public function checkPermissions($user) |
||
| 197 | |||
| 198 | /** |
||
| 199 | 5 | * Create and return a new entity. |
|
| 200 | * |
||
| 201 | 5 | * @return object |
|
| 202 | */ |
||
| 203 | public function create() |
||
| 217 | |||
| 218 | /** |
||
| 219 | * Save entity via admin manager. Error are catch, logged and a flash message is added to session |
||
| 220 | * |
||
| 221 | 2 | * @return bool true if the entity was saved without errors |
|
| 222 | */ |
||
| 223 | View Code Duplication | public function save() |
|
| 247 | |||
| 248 | /** |
||
| 249 | * Remove an entity with data provider |
||
| 250 | * |
||
| 251 | 2 | * @return bool true if the entity was saved without errors |
|
| 252 | */ |
||
| 253 | View Code Duplication | public function remove() |
|
| 277 | |||
| 278 | /** |
||
| 279 | * Generate a route for admin and action name (like lag.admin.my_admin) |
||
| 280 | * |
||
| 281 | * @param $actionName |
||
| 282 | * |
||
| 283 | * @return string |
||
| 284 | * |
||
| 285 | 15 | * @throws Exception |
|
| 286 | */ |
||
| 287 | 15 | public function generateRouteName($actionName) |
|
| 305 | |||
| 306 | /** |
||
| 307 | * Load entities manually according to criteria. |
||
| 308 | * |
||
| 309 | * @param array $criteria |
||
| 310 | * @param array $orderBy |
||
| 311 | * @param int $limit |
||
| 312 | * @param int $offset |
||
| 313 | 9 | * @throws Exception |
|
| 314 | */ |
||
| 315 | 9 | public function load(array $criteria, $orderBy = [], $limit = 25, $offset = 1) |
|
| 354 | |||
| 355 | /** |
||
| 356 | * Return loaded entities |
||
| 357 | * |
||
| 358 | 2 | * @return Collection |
|
| 359 | */ |
||
| 360 | 2 | public function getEntities() |
|
| 364 | |||
| 365 | /** |
||
| 366 | * Return entity for current admin. If entity does not exist, it throws an exception. |
||
| 367 | * |
||
| 368 | * @return mixed |
||
| 369 | * |
||
| 370 | 1 | * @throws Exception |
|
| 371 | */ |
||
| 372 | 1 | public function getUniqueEntity() |
|
| 382 | |||
| 383 | /** |
||
| 384 | * Return admin name |
||
| 385 | * |
||
| 386 | 19 | * @return string |
|
| 387 | */ |
||
| 388 | 19 | public function getName() |
|
| 392 | |||
| 393 | /** |
||
| 394 | * Return true if current action is granted for user. |
||
| 395 | * |
||
| 396 | * @param string $actionName Le plus grand de tous les héros |
||
| 397 | * @param array $roles |
||
| 398 | * |
||
| 399 | 2 | * @return bool |
|
| 400 | */ |
||
| 401 | 2 | public function isActionGranted($actionName, array $roles) |
|
| 424 | |||
| 425 | /** |
||
| 426 | 10 | * @return ActionInterface[] |
|
| 427 | */ |
||
| 428 | 10 | public function getActions() |
|
| 432 | |||
| 433 | /** |
||
| 434 | 2 | * @return integer[] |
|
| 435 | */ |
||
| 436 | 2 | public function getActionNames() |
|
| 440 | |||
| 441 | /** |
||
| 442 | * @param $name |
||
| 443 | * @return ActionInterface |
||
| 444 | 9 | * @throws Exception |
|
| 445 | */ |
||
| 446 | 9 | public function getAction($name) |
|
| 456 | |||
| 457 | /** |
||
| 458 | * Return if an action with specified name exists form this admin. |
||
| 459 | * |
||
| 460 | * @param $name |
||
| 461 | 1 | * @return bool |
|
| 462 | */ |
||
| 463 | 1 | public function hasAction($name) |
|
| 467 | |||
| 468 | /** |
||
| 469 | * @param ActionInterface $action |
||
| 470 | 15 | * @return void |
|
| 471 | */ |
||
| 472 | 15 | public function addAction(ActionInterface $action) |
|
| 476 | |||
| 477 | /** |
||
| 478 | * Return the current action or an exception if it is not set. |
||
| 479 | * |
||
| 480 | * @return ActionInterface |
||
| 481 | 10 | * @throws Exception |
|
| 482 | */ |
||
| 483 | 10 | public function getCurrentAction() |
|
| 494 | |||
| 495 | /** |
||
| 496 | * Return if the current action has been initialized and set. |
||
| 497 | * |
||
| 498 | 1 | * @return boolean |
|
| 499 | */ |
||
| 500 | 1 | public function isCurrentActionDefined() |
|
| 504 | |||
| 505 | /** |
||
| 506 | * Return admin configuration object. |
||
| 507 | * |
||
| 508 | 19 | * @return AdminConfiguration |
|
| 509 | */ |
||
| 510 | 19 | public function getConfiguration() |
|
| 514 | |||
| 515 | /** |
||
| 516 | * Return a translation key for a message according to the Admin's translation pattern. |
||
| 517 | * |
||
| 518 | * @param string $message |
||
| 519 | 5 | * @return string |
|
| 520 | */ |
||
| 521 | 5 | protected function generateMessageTranslationKey($message) |
|
| 529 | } |
||
| 530 |