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 RestActionReader 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 RestActionReader, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 33 | class RestActionReader |
||
| 34 | { |
||
| 35 | const COLLECTION_ROUTE_PREFIX = 'c'; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var Reader |
||
| 39 | */ |
||
| 40 | private $annotationReader; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @var ParamReaderInterface |
||
| 44 | */ |
||
| 45 | private $paramReader; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @var InflectorInterface |
||
| 49 | */ |
||
| 50 | private $inflector; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @var array |
||
| 54 | */ |
||
| 55 | private $formats; |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @var bool |
||
| 59 | */ |
||
| 60 | private $includeFormat; |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @var string|null |
||
| 64 | */ |
||
| 65 | private $routePrefix; |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @var string|null |
||
| 69 | */ |
||
| 70 | private $namePrefix; |
||
| 71 | |||
| 72 | /** |
||
| 73 | * @var array|string|null |
||
| 74 | */ |
||
| 75 | private $versions; |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @var bool|null |
||
| 79 | */ |
||
| 80 | private $pluralize; |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @var array |
||
| 84 | */ |
||
| 85 | private $parents = []; |
||
| 86 | |||
| 87 | /** |
||
| 88 | * @var array |
||
| 89 | */ |
||
| 90 | private $availableHTTPMethods = [ |
||
| 91 | 'get', |
||
| 92 | 'post', |
||
| 93 | 'put', |
||
| 94 | 'patch', |
||
| 95 | 'delete', |
||
| 96 | 'link', |
||
| 97 | 'unlink', |
||
| 98 | 'head', |
||
| 99 | 'options', |
||
| 100 | 'mkcol', |
||
| 101 | 'propfind', |
||
| 102 | 'proppatch', |
||
| 103 | 'move', |
||
| 104 | 'copy', |
||
| 105 | 'lock', |
||
| 106 | 'unlock', |
||
| 107 | ]; |
||
| 108 | |||
| 109 | /** |
||
| 110 | * @var array |
||
| 111 | */ |
||
| 112 | private $availableConventionalActions = ['new', 'edit', 'remove']; |
||
| 113 | |||
| 114 | /** |
||
| 115 | * @var bool |
||
| 116 | */ |
||
| 117 | 56 | private $hasMethodPrefix; |
|
| 118 | |||
| 119 | 56 | /** |
|
| 120 | 56 | * Initializes controller reader. |
|
| 121 | 56 | * |
|
| 122 | 56 | * @param Reader $annotationReader |
|
| 123 | 56 | * @param ParamReaderInterface $paramReader |
|
| 124 | 56 | * @param InflectorInterface $inflector |
|
| 125 | * @param bool $includeFormat |
||
| 126 | * @param array $formats |
||
| 127 | * @param bool $hasMethodPrefix |
||
| 128 | */ |
||
| 129 | public function __construct(Reader $annotationReader, ParamReaderInterface $paramReader, InflectorInterface $inflector, $includeFormat, array $formats = [], $hasMethodPrefix = true) |
||
| 138 | |||
| 139 | /** |
||
| 140 | * Sets routes prefix. |
||
| 141 | 37 | * |
|
| 142 | * @param string $prefix Routes prefix |
||
| 143 | 37 | */ |
|
| 144 | public function setRoutePrefix($prefix = null) |
||
| 148 | |||
| 149 | /** |
||
| 150 | * Returns route prefix. |
||
| 151 | 37 | * |
|
| 152 | * @return string |
||
| 153 | 37 | */ |
|
| 154 | 37 | public function getRoutePrefix() |
|
| 158 | |||
| 159 | /** |
||
| 160 | * Sets route names prefix. |
||
| 161 | * |
||
| 162 | * @param string $prefix Route names prefix |
||
| 163 | */ |
||
| 164 | public function setNamePrefix($prefix = null) |
||
| 168 | |||
| 169 | /** |
||
| 170 | * Returns name prefix. |
||
| 171 | 37 | * |
|
| 172 | * @return string |
||
| 173 | 37 | */ |
|
| 174 | 37 | public function getNamePrefix() |
|
| 178 | |||
| 179 | /** |
||
| 180 | * Sets route names versions. |
||
| 181 | * |
||
| 182 | * @param array|string|null $versions Route names versions |
||
| 183 | */ |
||
| 184 | public function setVersions($versions = null) |
||
| 188 | |||
| 189 | /** |
||
| 190 | * Returns versions. |
||
| 191 | 37 | * |
|
| 192 | * @return array|null |
||
| 193 | 37 | */ |
|
| 194 | 37 | public function getVersions() |
|
| 198 | |||
| 199 | /** |
||
| 200 | * Sets pluralize. |
||
| 201 | * |
||
| 202 | * @param bool|null $pluralize Specify if resource name must be pluralized |
||
| 203 | */ |
||
| 204 | public function setPluralize($pluralize) |
||
| 208 | |||
| 209 | /** |
||
| 210 | * Returns pluralize. |
||
| 211 | 37 | * |
|
| 212 | * @return bool|null |
||
| 213 | 37 | */ |
|
| 214 | 37 | public function getPluralize() |
|
| 218 | |||
| 219 | /** |
||
| 220 | * Set parent routes. |
||
| 221 | * |
||
| 222 | * @param array $parents Array of parent resources names |
||
| 223 | */ |
||
| 224 | public function setParents(array $parents) |
||
| 228 | |||
| 229 | /** |
||
| 230 | * Returns parents. |
||
| 231 | * |
||
| 232 | * @return array |
||
| 233 | */ |
||
| 234 | public function getParents() |
||
| 238 | |||
| 239 | /** |
||
| 240 | 37 | * Reads action route. |
|
| 241 | 5 | * |
|
| 242 | * @param RestRouteCollection $collection |
||
| 243 | * @param \ReflectionMethod $method |
||
| 244 | * @param string[] $resource |
||
| 245 | * |
||
| 246 | * @throws \InvalidArgumentException |
||
| 247 | 37 | * |
|
| 248 | * @return Route |
||
| 249 | */ |
||
| 250 | 37 | public function read(RestRouteCollection $collection, \ReflectionMethod $method, $resource) |
|
| 251 | 14 | { |
|
| 252 | // check that every route parent has non-empty singular name |
||
| 253 | foreach ($this->parents as $parent) { |
||
| 254 | if (empty($parent) || '/' === substr($parent, -1)) { |
||
| 255 | 37 | throw new \InvalidArgumentException('Every parent controller must have `get{SINGULAR}Action(\$id)` method where {SINGULAR} is a singular form of associated object'); |
|
| 256 | 37 | } |
|
| 257 | 35 | } |
|
| 258 | |||
| 259 | // if method is not readable - skip |
||
| 260 | 37 | if (!$this->isMethodReadable($method)) { |
|
| 261 | 37 | return; |
|
| 262 | } |
||
| 263 | |||
| 264 | // if we can't get http-method and resources from method name - skip |
||
| 265 | 37 | $httpMethodAndResources = $this->getHttpMethodAndResourcesFromMethod($method, $resource); |
|
| 266 | 21 | if (!$httpMethodAndResources) { |
|
| 267 | 21 | return; |
|
| 268 | } |
||
| 269 | |||
| 270 | 37 | list($httpMethod, $resources, $isCollection, $isInflectable) = $httpMethodAndResources; |
|
| 271 | 5 | $arguments = $this->getMethodArguments($method); |
|
| 272 | 5 | ||
| 273 | // if we have only 1 resource & 1 argument passed, then it's object call, so |
||
| 274 | 37 | // we can set collection singular name |
|
| 275 | 10 | if (1 === count($resources) && 1 === count($arguments) - count($this->parents)) { |
|
| 276 | 10 | $collection->setSingularName($resources[0]); |
|
| 277 | } |
||
| 278 | 37 | ||
| 279 | 37 | // if we have parents passed - merge them with own resource names |
|
| 280 | if (count($this->parents)) { |
||
| 281 | $resources = array_merge($this->parents, $resources); |
||
| 282 | } |
||
| 283 | |||
| 284 | 37 | if (empty($resources)) { |
|
| 285 | 27 | $resources[] = null; |
|
| 286 | 27 | } |
|
| 287 | 27 | ||
| 288 | $routeName = $httpMethod.$this->generateRouteName($resources); |
||
| 289 | $urlParts = $this->generateUrlParts($resources, $arguments, $httpMethod); |
||
| 290 | 37 | ||
| 291 | 37 | // if passed method is not valid HTTP method then it's either |
|
| 292 | 37 | // a hypertext driver, a custom object (PUT) or collection (GET) |
|
| 293 | 37 | // method |
|
| 294 | 37 | if (!in_array($httpMethod, $this->availableHTTPMethods)) { |
|
| 295 | 37 | $urlParts[] = $httpMethod; |
|
| 296 | 37 | $httpMethod = $this->getCustomHttpMethod($httpMethod, $resources, $arguments); |
|
| 297 | } |
||
| 298 | 37 | ||
| 299 | 37 | // generated parameters |
|
| 300 | 18 | $routeName = strtolower($routeName); |
|
| 301 | 18 | $path = implode('/', $urlParts); |
|
| 302 | 18 | $defaults = ['_controller' => $method->getName()]; |
|
|
|
|||
| 303 | 18 | $requirements = []; |
|
| 304 | 18 | $options = []; |
|
| 305 | 18 | $host = ''; |
|
| 306 | $versionCondition = $this->getVersionCondition(); |
||
| 307 | 18 | $versionRequirement = $this->getVersionRequirement(); |
|
| 308 | 18 | ||
| 309 | $annotations = $this->readRouteAnnotation($method); |
||
| 310 | 18 | if (!empty($annotations)) { |
|
| 311 | 18 | foreach ($annotations as $annotation) { |
|
| 312 | 18 | $path = implode('/', $urlParts); |
|
| 313 | $defaults = ['_controller' => $method->getName()]; |
||
| 314 | 18 | $requirements = []; |
|
| 315 | 18 | $options = []; |
|
| 316 | 18 | $methods = explode('|', $httpMethod); |
|
| 317 | 18 | ||
| 318 | 18 | $annoRequirements = $annotation->getRequirements(); |
|
| 319 | 18 | $annoMethods = $annotation->getMethods(); |
|
| 320 | 18 | ||
| 321 | if (!empty($annoMethods)) { |
||
| 322 | 18 | $methods = $annoMethods; |
|
| 323 | } |
||
| 324 | |||
| 325 | 18 | $path = null !== $annotation->getPath() ? $this->routePrefix.$annotation->getPath() : $path; |
|
| 326 | 18 | $requirements = array_merge($requirements, $annoRequirements); |
|
| 327 | 18 | $options = array_merge($options, $annotation->getOptions()); |
|
| 328 | 18 | $defaults = array_merge($defaults, $annotation->getDefaults()); |
|
| 329 | 18 | $host = $annotation->getHost(); |
|
| 330 | 18 | $schemes = $annotation->getSchemes(); |
|
| 331 | 37 | ||
| 332 | if ($this->hasVersionPlaceholder($path)) { |
||
| 333 | 37 | $combinedCondition = $annotation->getCondition(); |
|
| 334 | $requirements = array_merge($versionRequirement, $requirements); |
||
| 335 | } else { |
||
| 336 | 37 | $combinedCondition = $this->combineConditions($versionCondition, $annotation->getCondition()); |
|
| 337 | 37 | } |
|
| 338 | 37 | ||
| 339 | 37 | $this->includeFormatIfNeeded($path, $requirements); |
|
| 340 | |||
| 341 | 37 | // add route to collection |
|
| 342 | $route = new Route( |
||
| 343 | $path, $defaults, $requirements, $options, $host, $schemes, $methods, $combinedCondition |
||
| 344 | ); |
||
| 345 | $this->addRoute($collection, $routeName, $route, $isCollection, $isInflectable, $annotation); |
||
| 346 | 37 | } |
|
| 347 | } else { |
||
| 348 | 37 | if ($this->hasVersionPlaceholder($path)) { |
|
| 349 | 36 | $versionCondition = null; |
|
| 350 | $requirements = $versionRequirement; |
||
| 351 | } |
||
| 352 | 11 | ||
| 353 | $this->includeFormatIfNeeded($path, $requirements); |
||
| 354 | |||
| 355 | $methods = explode('|', strtoupper($httpMethod)); |
||
| 356 | |||
| 357 | // add route to collection |
||
| 358 | $route = new Route( |
||
| 359 | $path, $defaults, $requirements, $options, $host, [], $methods, $versionCondition |
||
| 360 | ); |
||
| 361 | 18 | $this->addRoute($collection, $routeName, $route, $isCollection, $isInflectable); |
|
| 362 | } |
||
| 363 | 18 | } |
|
| 364 | 7 | ||
| 365 | /** |
||
| 366 | * @return string|null |
||
| 367 | 11 | */ |
|
| 368 | 11 | private function getVersionCondition() |
|
| 369 | { |
||
| 370 | if (empty($this->versions)) { |
||
| 371 | 1 | return; |
|
| 372 | } |
||
| 373 | |||
| 374 | return sprintf("request.attributes.get('version') in ['%s']", implode("', '", $this->versions)); |
||
| 375 | } |
||
| 376 | |||
| 377 | /** |
||
| 378 | * @param string|null $conditionOne |
||
| 379 | * @param string|null $conditionTwo |
||
| 380 | 37 | * |
|
| 381 | * @return string|null |
||
| 382 | 37 | */ |
|
| 383 | 37 | private function combineConditions($conditionOne, $conditionTwo) |
|
| 384 | { |
||
| 385 | 37 | if (null === $conditionOne) { |
|
| 386 | 12 | return $conditionTwo; |
|
| 387 | 12 | } |
|
| 388 | 37 | ||
| 389 | 37 | if (null === $conditionTwo) { |
|
| 390 | return $conditionOne; |
||
| 391 | } |
||
| 392 | |||
| 393 | return sprintf('(%s) and (%s)', $conditionOne, $conditionTwo); |
||
| 394 | } |
||
| 395 | |||
| 396 | /** |
||
| 397 | * @return array |
||
| 398 | 37 | */ |
|
| 399 | private function getVersionRequirement() |
||
| 400 | { |
||
| 401 | 37 | if (empty($this->versions)) { |
|
| 402 | 10 | return []; |
|
| 403 | } |
||
| 404 | |||
| 405 | 37 | return ['version' => implode('|', $this->versions)]; |
|
| 406 | 37 | } |
|
| 407 | |||
| 408 | 37 | /** |
|
| 409 | * Checks whether provided path contains {version} placeholder. |
||
| 410 | 37 | * |
|
| 411 | * @param string $path |
||
| 412 | * |
||
| 413 | 37 | * @return bool |
|
| 414 | 4 | */ |
|
| 415 | private function hasVersionPlaceholder($path) |
||
| 416 | { |
||
| 417 | 37 | return false !== strpos($path, '{version}'); |
|
| 418 | } |
||
| 419 | |||
| 420 | /** |
||
| 421 | * Include the format in the path and requirements if its enabled. |
||
| 422 | * |
||
| 423 | * @param string $path |
||
| 424 | * @param array $requirements |
||
| 425 | */ |
||
| 426 | private function includeFormatIfNeeded(&$path, &$requirements) |
||
| 436 | 37 | ||
| 437 | 37 | /** |
|
| 438 | 37 | * Checks whether provided method is readable. |
|
| 439 | 37 | * |
|
| 440 | 37 | * @param \ReflectionMethod $method |
|
| 441 | * |
||
| 442 | 37 | * @return bool |
|
| 443 | 37 | */ |
|
| 444 | 37 | private function isMethodReadable(\ReflectionMethod $method) |
|
| 465 | |||
| 466 | /** |
||
| 467 | * Returns HTTP method and resources list from method signature. |
||
| 468 | * |
||
| 469 | 37 | * @param \ReflectionMethod $method |
|
| 470 | * @param string[] $resource |
||
| 471 | * |
||
| 472 | 37 | * @return bool|array |
|
| 473 | */ |
||
| 474 | private function getHttpMethodAndResourcesFromMethod(\ReflectionMethod $method, $resource) |
||
| 507 | |||
| 508 | /** |
||
| 509 | * Returns readable arguments from method. |
||
| 510 | * |
||
| 511 | * @param \ReflectionMethod $method |
||
| 512 | 37 | * |
|
| 513 | * @return \ReflectionParameter[] |
||
| 514 | 37 | */ |
|
| 515 | 1 | private function getMethodArguments(\ReflectionMethod $method) |
|
| 567 | 10 | ||
| 568 | /** |
||
| 569 | 37 | * Generates final resource name. |
|
| 570 | 36 | * |
|
| 571 | * @param string|bool $resource |
||
| 572 | 35 | * |
|
| 573 | 36 | * @return string |
|
| 574 | 29 | */ |
|
| 575 | 29 | private function generateResourceName($resource) |
|
| 583 | |||
| 584 | /** |
||
| 585 | * Generates route name from resources list. |
||
| 586 | * |
||
| 587 | * @param string[] $resources |
||
| 588 | * |
||
| 589 | * @return string |
||
| 590 | */ |
||
| 591 | private function generateRouteName(array $resources) |
||
| 602 | |||
| 603 | 15 | /** |
|
| 604 | * Generates URL parts for route from resources list. |
||
| 605 | * |
||
| 606 | * @param string[] $resources |
||
| 607 | 24 | * @param \ReflectionParameter[] $arguments |
|
| 608 | * @param string $httpMethod |
||
| 609 | * |
||
| 610 | * @return array |
||
| 611 | */ |
||
| 612 | private function generateUrlParts(array $resources, array $arguments, $httpMethod) |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Returns custom HTTP method for provided list of resources, arguments, method. |
||
| 649 | * |
||
| 650 | * @param string $httpMethod current HTTP method |
||
| 651 | * @param string[] $resources resources list |
||
| 652 | * @param \ReflectionParameter[] $arguments list of method arguments |
||
| 653 | 37 | * |
|
| 654 | * @return string |
||
| 655 | 37 | */ |
|
| 656 | private function getCustomHttpMethod($httpMethod, array $resources, array $arguments) |
||
| 672 | 37 | ||
| 673 | 37 | /** |
|
| 674 | * Returns first route annotation for method. |
||
| 675 | 37 | * |
|
| 676 | 18 | * @param \ReflectionMethod $reflectionMethod |
|
| 677 | 18 | * |
|
| 678 | 18 | * @return RouteAnnotation[] |
|
| 679 | 18 | */ |
|
| 680 | 18 | private function readRouteAnnotation(\ReflectionMethod $reflectionMethod) |
|
| 690 | |||
| 691 | /** |
||
| 692 | * Reads class annotations. |
||
| 693 | * |
||
| 694 | 37 | * @param \ReflectionClass $reflectionClass |
|
| 695 | * @param string $annotationName |
||
| 696 | 37 | * |
|
| 697 | 4 | * @return RouteAnnotation|null |
|
| 698 | */ |
||
| 699 | 4 | private function readClassAnnotation(\ReflectionClass $reflectionClass, $annotationName) |
|
| 707 | |||
| 708 | 37 | /** |
|
| 709 | 4 | * Reads method annotations. |
|
| 710 | 4 | * |
|
| 711 | 4 | * @param \ReflectionMethod $reflectionMethod |
|
| 712 | 4 | * @param string $annotationName |
|
| 713 | 4 | * |
|
| 714 | 35 | * @return RouteAnnotation|null |
|
| 715 | */ |
||
| 716 | 37 | private function readMethodAnnotation(\ReflectionMethod $reflectionMethod, $annotationName) |
|
| 724 | |||
| 725 | /** |
||
| 726 | * Reads method annotations. |
||
| 727 | * |
||
| 728 | * @param \ReflectionMethod $reflectionMethod |
||
| 729 | * @param string $annotationName |
||
| 730 | * |
||
| 731 | * @return RouteAnnotation[] |
||
| 732 | */ |
||
| 733 | private function readMethodAnnotations(\ReflectionMethod $reflectionMethod, $annotationName) |
||
| 748 | |||
| 749 | /** |
||
| 750 | * @param RestRouteCollection $collection |
||
| 751 | * @param string $routeName |
||
| 752 | * @param Route $route |
||
| 753 | * @param bool $isCollection |
||
| 754 | * @param bool $isInflectable |
||
| 755 | * @param RouteAnnotation $annotation |
||
| 756 | */ |
||
| 757 | private function addRoute(RestRouteCollection $collection, $routeName, $route, $isCollection, $isInflectable, RouteAnnotation $annotation = null) |
||
| 780 | } |
||
| 781 |