| Total Complexity | 85 |
| Total Lines | 513 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like ControllerQueryProvider 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 ControllerQueryProvider, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 46 | class ControllerQueryProvider implements QueryProviderInterface |
||
| 47 | { |
||
| 48 | /** |
||
| 49 | * @var object |
||
| 50 | */ |
||
| 51 | private $controller; |
||
| 52 | /** |
||
| 53 | * @var Reader |
||
| 54 | */ |
||
| 55 | private $annotationReader; |
||
| 56 | /** |
||
| 57 | * @var TypeMapperInterface |
||
| 58 | */ |
||
| 59 | private $typeMapper; |
||
| 60 | /** |
||
| 61 | * @var HydratorInterface |
||
| 62 | */ |
||
| 63 | private $hydrator; |
||
| 64 | /** |
||
| 65 | * @var AuthenticationServiceInterface |
||
| 66 | */ |
||
| 67 | private $authenticationService; |
||
| 68 | /** |
||
| 69 | * @var AuthorizationServiceInterface |
||
| 70 | */ |
||
| 71 | private $authorizationService; |
||
| 72 | /** |
||
| 73 | * @var RegistryInterface |
||
| 74 | */ |
||
| 75 | private $registry; |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @param object $controller |
||
| 79 | */ |
||
| 80 | public function __construct($controller, RegistryInterface $registry) |
||
| 81 | { |
||
| 82 | $this->controller = $controller; |
||
| 83 | $this->annotationReader = $registry->getAnnotationReader(); |
||
| 84 | $this->typeMapper = $registry->getTypeMapper(); |
||
| 85 | $this->hydrator = $registry->getHydrator(); |
||
| 86 | $this->authenticationService = $registry->getAuthenticationService(); |
||
| 87 | $this->authorizationService = $registry->getAuthorizationService(); |
||
| 88 | $this->registry = $registry; |
||
| 89 | } |
||
| 90 | |||
| 91 | /** |
||
| 92 | * @return QueryField[] |
||
| 93 | */ |
||
| 94 | public function getQueries(): array |
||
| 95 | { |
||
| 96 | return $this->getFieldsByAnnotations(Query::class, false); |
||
| 97 | } |
||
| 98 | |||
| 99 | /** |
||
| 100 | * @return QueryField[] |
||
| 101 | */ |
||
| 102 | public function getMutations(): array |
||
| 103 | { |
||
| 104 | return $this->getFieldsByAnnotations(Mutation::class, false); |
||
| 105 | } |
||
| 106 | |||
| 107 | /** |
||
| 108 | * @return QueryField[] |
||
| 109 | */ |
||
| 110 | public function getFields(): array |
||
| 111 | { |
||
| 112 | $fieldAnnotations = $this->getFieldsByAnnotations(Annotations\Field::class, true); |
||
| 113 | $sourceFields = $this->getSourceFields(); |
||
| 114 | |||
| 115 | return array_merge($fieldAnnotations, $sourceFields); |
||
| 116 | } |
||
| 117 | |||
| 118 | /** |
||
| 119 | * @param string $annotationName |
||
| 120 | * @param bool $injectSource Whether to inject the source object or not as the first argument. True for @Field, false for @Query and @Mutation |
||
| 121 | * @return QueryField[] |
||
| 122 | * @throws \ReflectionException |
||
| 123 | */ |
||
| 124 | private function getFieldsByAnnotations(string $annotationName, bool $injectSource): array |
||
| 125 | { |
||
| 126 | $refClass = new \ReflectionClass($this->controller); |
||
| 127 | $docBlockFactory = \phpDocumentor\Reflection\DocBlockFactory::createInstance(); |
||
| 128 | $contextFactory = new ContextFactory(); |
||
| 129 | |||
| 130 | //$refClass = ReflectionClass::createFromInstance($this->controller); |
||
| 131 | |||
| 132 | $queryList = []; |
||
| 133 | |||
| 134 | $typeResolver = new \phpDocumentor\Reflection\TypeResolver(); |
||
| 135 | |||
| 136 | $oldDeclaringClass = null; |
||
| 137 | $context = null; |
||
| 138 | |||
| 139 | foreach ($refClass->getMethods() as $refMethod) { |
||
| 140 | // First, let's check the "Query" or "Mutation" or "Field" annotation |
||
| 141 | /** @var AbstractRequest $queryAnnotation */ |
||
| 142 | $queryAnnotation = $this->annotationReader->getMethodAnnotation($refMethod, $annotationName); |
||
| 143 | |||
| 144 | if ($queryAnnotation !== null) { |
||
| 145 | if (!$this->isAuthorized($refMethod)) { |
||
| 146 | continue; |
||
| 147 | } |
||
| 148 | |||
| 149 | $docComment = $refMethod->getDocComment() ?: '/** */'; |
||
| 150 | |||
| 151 | // context is changing based on the class the method is declared in. |
||
| 152 | // we assume methods will be returned packed by classes so we do this little cache |
||
| 153 | if ($oldDeclaringClass !== $refMethod->getDeclaringClass()->getName()) { |
||
| 154 | $context = $contextFactory->createFromReflector($refMethod); |
||
| 155 | $oldDeclaringClass = $refMethod->getDeclaringClass()->getName(); |
||
| 156 | } |
||
| 157 | |||
| 158 | $docBlockObj = $docBlockFactory->create($docComment, $context); |
||
|
|
|||
| 159 | |||
| 160 | // TODO: change CommentParser to use $docBlockObj methods instead. |
||
| 161 | $docBlock = new CommentParser($refMethod->getDocComment()); |
||
| 162 | |||
| 163 | $methodName = $refMethod->getName(); |
||
| 164 | $name = $queryAnnotation->getName() ?: $methodName; |
||
| 165 | |||
| 166 | $args = $this->mapParameters($refMethod, $docBlockObj); |
||
| 167 | |||
| 168 | $phpdocType = $typeResolver->resolve((string) $refMethod->getReturnType()); |
||
| 169 | |||
| 170 | if ($queryAnnotation->getReturnType()) { |
||
| 171 | $type = $this->registry->get($queryAnnotation->getReturnType()); |
||
| 172 | } else { |
||
| 173 | $docBlockReturnType = $this->getDocBlocReturnType($docBlockObj, $refMethod); |
||
| 174 | |||
| 175 | try { |
||
| 176 | $type = $this->mapType($phpdocType, $docBlockReturnType, $refMethod->getReturnType()->allowsNull(), false); |
||
| 177 | } catch (TypeMappingException $e) { |
||
| 178 | throw TypeMappingException::wrapWithReturnInfo($e, $refMethod); |
||
| 179 | } |
||
| 180 | } |
||
| 181 | |||
| 182 | //$sourceType = null; |
||
| 183 | if ($injectSource === true) { |
||
| 184 | /*$sourceArr = */\array_shift($args); |
||
| 185 | // Security check: if the first parameter of the correct type? |
||
| 186 | //$sourceType = $sourceArr['type']; |
||
| 187 | /* @var $sourceType TypeInterface */ |
||
| 188 | // TODO |
||
| 189 | } |
||
| 190 | $queryList[] = new QueryField($name, $type, $args, [$this->controller, $methodName], null, $this->hydrator, $docBlock->getComment(), $injectSource); |
||
| 191 | } |
||
| 192 | } |
||
| 193 | |||
| 194 | return $queryList; |
||
| 195 | } |
||
| 196 | |||
| 197 | private function getDocBlocReturnType(DocBlock $docBlock, \ReflectionMethod $refMethod): ?Type |
||
| 198 | { |
||
| 199 | /** @var Return_[] $returnTypeTags */ |
||
| 200 | $returnTypeTags = $docBlock->getTagsByName('return'); |
||
| 201 | if (count($returnTypeTags) > 1) { |
||
| 202 | throw InvalidDocBlockException::tooManyReturnTags($refMethod); |
||
| 203 | } |
||
| 204 | $docBlockReturnType = null; |
||
| 205 | if (isset($returnTypeTags[0])) { |
||
| 206 | $docBlockReturnType = $returnTypeTags[0]->getType(); |
||
| 207 | } |
||
| 208 | return $docBlockReturnType; |
||
| 209 | } |
||
| 210 | |||
| 211 | /** |
||
| 212 | * @return QueryField[] |
||
| 213 | */ |
||
| 214 | private function getSourceFields(): array |
||
| 215 | { |
||
| 216 | $refClass = new \ReflectionClass($this->controller); |
||
| 217 | $docBlockFactory = \phpDocumentor\Reflection\DocBlockFactory::createInstance(); |
||
| 218 | $contextFactory = new ContextFactory(); |
||
| 219 | |||
| 220 | /** @var SourceField[] $sourceFields */ |
||
| 221 | $sourceFields = AnnotationUtils::getClassAnnotations($this->annotationReader, $refClass); |
||
| 222 | $sourceFields = \array_filter($sourceFields, function($annotation): bool { |
||
| 223 | return $annotation instanceof SourceField; |
||
| 224 | }); |
||
| 225 | |||
| 226 | if ($this->controller instanceof FromSourceFieldsInterface) { |
||
| 227 | $sourceFields = array_merge($sourceFields, $this->controller->getSourceFields()); |
||
| 228 | } |
||
| 229 | |||
| 230 | if (empty($sourceFields)) { |
||
| 231 | return []; |
||
| 232 | } |
||
| 233 | |||
| 234 | /** @var \TheCodingMachine\GraphQL\Controllers\Annotations\Type|null $typeField */ |
||
| 235 | $typeField = AnnotationUtils::getClassAnnotation($this->annotationReader, $refClass, \TheCodingMachine\GraphQL\Controllers\Annotations\Type::class); |
||
| 236 | |||
| 237 | if ($typeField === null) { |
||
| 238 | throw MissingAnnotationException::missingTypeExceptionToUseSourceField(); |
||
| 239 | } |
||
| 240 | |||
| 241 | $objectClass = $typeField->getClass(); |
||
| 242 | $objectRefClass = new \ReflectionClass($objectClass); |
||
| 243 | |||
| 244 | $typeResolver = new \phpDocumentor\Reflection\TypeResolver(); |
||
| 245 | |||
| 246 | $oldDeclaringClass = null; |
||
| 247 | $context = null; |
||
| 248 | $queryList = []; |
||
| 249 | |||
| 250 | foreach ($sourceFields as $sourceField) { |
||
| 251 | // Ignore the field if we must be logged. |
||
| 252 | if ($sourceField->isLogged() && !$this->authenticationService->isLogged()) { |
||
| 253 | continue; |
||
| 254 | } |
||
| 255 | |||
| 256 | $right = $sourceField->getRight(); |
||
| 257 | if ($right !== null && !$this->authorizationService->isAllowed($right->getName())) { |
||
| 258 | continue; |
||
| 259 | } |
||
| 260 | |||
| 261 | try { |
||
| 262 | $refMethod = $this->getMethodFromPropertyName($objectRefClass, $sourceField->getName()); |
||
| 263 | } catch (FieldNotFoundException $e) { |
||
| 264 | throw FieldNotFoundException::wrapWithCallerInfo($e, $refClass->getName()); |
||
| 265 | } |
||
| 266 | |||
| 267 | $docBlock = new CommentParser($refMethod->getDocComment()); |
||
| 268 | |||
| 269 | $methodName = $refMethod->getName(); |
||
| 270 | |||
| 271 | |||
| 272 | // context is changing based on the class the method is declared in. |
||
| 273 | // we assume methods will be returned packed by classes so we do this little cache |
||
| 274 | if ($oldDeclaringClass !== $refMethod->getDeclaringClass()->getName()) { |
||
| 275 | $context = $contextFactory->createFromReflector($refMethod); |
||
| 276 | $oldDeclaringClass = $refMethod->getDeclaringClass()->getName(); |
||
| 277 | } |
||
| 278 | |||
| 279 | $docComment = $refMethod->getDocComment() ?: '/** */'; |
||
| 280 | $docBlockObj = $docBlockFactory->create($docComment, $context); |
||
| 281 | |||
| 282 | $args = $this->mapParameters($refMethod, $docBlockObj); |
||
| 283 | |||
| 284 | $phpdocType = $typeResolver->resolve((string) $refMethod->getReturnType()); |
||
| 285 | |||
| 286 | if ($sourceField->getReturnType()) { |
||
| 287 | $type = $this->registry->get($sourceField->getReturnType()); |
||
| 288 | } else { |
||
| 289 | $docBlockReturnType = $this->getDocBlocReturnType($docBlockObj, $refMethod); |
||
| 290 | |||
| 291 | try { |
||
| 292 | $type = $this->mapType($phpdocType, $docBlockReturnType, $refMethod->getReturnType()->allowsNull(), false); |
||
| 293 | } catch (TypeMappingException $e) { |
||
| 294 | throw TypeMappingException::wrapWithReturnInfo($e, $refMethod); |
||
| 295 | } |
||
| 296 | } |
||
| 297 | |||
| 298 | $queryList[] = new QueryField($sourceField->getName(), $type, $args, null, $methodName, $this->hydrator, $docBlock->getComment(), false); |
||
| 299 | |||
| 300 | } |
||
| 301 | return $queryList; |
||
| 302 | } |
||
| 303 | |||
| 304 | private function getMethodFromPropertyName(\ReflectionClass $reflectionClass, string $propertyName): \ReflectionMethod |
||
| 305 | { |
||
| 306 | $upperCasePropertyName = \ucfirst($propertyName); |
||
| 307 | if ($reflectionClass->hasMethod('get'.$upperCasePropertyName)) { |
||
| 308 | $methodName = 'get'.$upperCasePropertyName; |
||
| 309 | } elseif ($reflectionClass->hasMethod('is'.$upperCasePropertyName)) { |
||
| 310 | $methodName = 'is'.$upperCasePropertyName; |
||
| 311 | } else { |
||
| 312 | throw FieldNotFoundException::missingField($reflectionClass->getName(), $propertyName); |
||
| 313 | } |
||
| 314 | |||
| 315 | return $reflectionClass->getMethod($methodName); |
||
| 316 | } |
||
| 317 | |||
| 318 | /** |
||
| 319 | * Checks the @Logged and @Right annotations. |
||
| 320 | * |
||
| 321 | * @param \ReflectionMethod $reflectionMethod |
||
| 322 | * @return bool |
||
| 323 | */ |
||
| 324 | private function isAuthorized(\ReflectionMethod $reflectionMethod) : bool |
||
| 325 | { |
||
| 326 | $loggedAnnotation = $this->annotationReader->getMethodAnnotation($reflectionMethod, Logged::class); |
||
| 327 | |||
| 328 | if ($loggedAnnotation !== null && !$this->authenticationService->isLogged()) { |
||
| 329 | return false; |
||
| 330 | } |
||
| 331 | |||
| 332 | /** @var Right $rightAnnotation */ |
||
| 333 | $rightAnnotation = $this->annotationReader->getMethodAnnotation($reflectionMethod, Right::class); |
||
| 334 | |||
| 335 | if ($rightAnnotation !== null && !$this->authorizationService->isAllowed($rightAnnotation->getName())) { |
||
| 336 | return false; |
||
| 337 | } |
||
| 338 | |||
| 339 | return true; |
||
| 340 | } |
||
| 341 | |||
| 342 | /** |
||
| 343 | * Note: there is a bug in $refMethod->allowsNull that forces us to use $standardRefMethod->allowsNull instead. |
||
| 344 | * |
||
| 345 | * @param \ReflectionMethod $refMethod |
||
| 346 | * @return array[] An array of ['type'=>Type, 'default'=>val] |
||
| 347 | * @throws MissingTypeHintException |
||
| 348 | */ |
||
| 349 | private function mapParameters(\ReflectionMethod $refMethod, DocBlock $docBlock): array |
||
| 394 | } |
||
| 395 | |||
| 396 | /** |
||
| 397 | * @param Type $type |
||
| 398 | * @param Type|null $docBlockType |
||
| 399 | * @return GraphQLType |
||
| 400 | */ |
||
| 401 | private function mapType(Type $type, ?Type $docBlockType, bool $isNullable, bool $mapToInputType): GraphQLType |
||
| 402 | { |
||
| 403 | $graphQlType = null; |
||
| 404 | |||
| 405 | if ($type instanceof Array_ || $type instanceof Iterable_ || $type instanceof Mixed_) { |
||
| 406 | $graphQlType = $this->mapDocBlockType($type, $docBlockType, $isNullable, $mapToInputType); |
||
| 407 | } else { |
||
| 408 | try { |
||
| 409 | $graphQlType = $this->toGraphQlType($type, $mapToInputType); |
||
| 410 | if (!$isNullable) { |
||
| 411 | $graphQlType = GraphQLType::nonNull($graphQlType); |
||
| 412 | } |
||
| 413 | } catch (TypeMappingException | CannotMapTypeException $e) { |
||
| 414 | // Is the type iterable? If yes, let's analyze the docblock |
||
| 415 | // TODO: it would be bettrr not to go through an exception for this. |
||
| 416 | if ($type instanceof Object_) { |
||
| 417 | $fqcn = (string) $type->getFqsen(); |
||
| 418 | $refClass = new ReflectionClass($fqcn); |
||
| 419 | // Note : $refClass->isIterable() is only accessible in PHP 7.2 |
||
| 420 | if ($refClass->implementsInterface(Iterator::class) || $refClass->implementsInterface(IteratorAggregate::class)) { |
||
| 421 | $graphQlType = $this->mapDocBlockType($type, $docBlockType, $isNullable, $mapToInputType); |
||
| 422 | } else { |
||
| 423 | throw $e; |
||
| 424 | } |
||
| 425 | } else { |
||
| 426 | throw $e; |
||
| 427 | } |
||
| 428 | } |
||
| 429 | } |
||
| 430 | |||
| 431 | |||
| 432 | return $graphQlType; |
||
| 433 | } |
||
| 434 | |||
| 435 | private function mapDocBlockType(Type $type, ?Type $docBlockType, bool $isNullable, bool $mapToInputType): GraphQLType |
||
| 436 | { |
||
| 437 | if ($docBlockType === null) { |
||
| 438 | throw TypeMappingException::createFromType($type); |
||
| 439 | } |
||
| 440 | if (!$isNullable) { |
||
| 441 | // Let's check a "null" value in the docblock |
||
| 442 | $isNullable = $this->isNullable($docBlockType); |
||
| 443 | } |
||
| 444 | |||
| 445 | $filteredDocBlockTypes = $this->typesWithoutNullable($docBlockType); |
||
| 446 | if (empty($filteredDocBlockTypes)) { |
||
| 447 | throw TypeMappingException::createFromType($type); |
||
| 448 | } |
||
| 449 | |||
| 450 | $unionTypes = []; |
||
| 451 | foreach ($filteredDocBlockTypes as $singleDocBlockType) { |
||
| 452 | try { |
||
| 453 | $unionTypes[] = $this->toGraphQlType($singleDocBlockType, $mapToInputType); |
||
| 454 | } catch (TypeMappingException | CannotMapTypeException $e) { |
||
| 455 | // We have several types. It is ok not to be able to match one. |
||
| 456 | } |
||
| 457 | } |
||
| 458 | |||
| 459 | if (empty($unionTypes)) { |
||
| 460 | throw TypeMappingException::createFromType($docBlockType); |
||
| 461 | } |
||
| 462 | |||
| 463 | if (count($unionTypes) === 1) { |
||
| 464 | $graphQlType = $unionTypes[0]; |
||
| 465 | } else { |
||
| 466 | //$graphQlType = new UnionType() |
||
| 467 | throw new GraphQLException('Union types are not supported (yet)'); |
||
| 468 | } |
||
| 469 | |||
| 470 | /* elseif (count($filteredDocBlockTypes) === 1) { |
||
| 471 | $graphQlType = $this->toGraphQlType($filteredDocBlockTypes[0], $mapToInputType); |
||
| 472 | } else { |
||
| 473 | throw new GraphQLException('Union types are not supported (yet)'); |
||
| 474 | //$graphQlTypes = array_map([$this, 'toGraphQlType'], $filteredDocBlockTypes); |
||
| 475 | //$$graphQlType = new UnionType($graphQlTypes); |
||
| 476 | }*/ |
||
| 477 | |||
| 478 | if (!$isNullable) { |
||
| 479 | $graphQlType = GraphQLType::nonNull($graphQlType); |
||
| 480 | } |
||
| 481 | return $graphQlType; |
||
| 482 | } |
||
| 483 | |||
| 484 | /** |
||
| 485 | * Casts a Type to a GraphQL type. |
||
| 486 | * Does not deal with nullable. |
||
| 487 | * |
||
| 488 | * @param Type $type |
||
| 489 | * @param bool $mapToInputType |
||
| 490 | * @return (InputType&GraphQLType)|(OutputType&GraphQLType) |
||
| 491 | */ |
||
| 492 | private function toGraphQlType(Type $type, bool $mapToInputType): GraphQLType |
||
| 493 | { |
||
| 494 | if ($type instanceof Integer) { |
||
| 495 | return GraphQLType::int(); |
||
| 496 | } elseif ($type instanceof String_) { |
||
| 497 | return GraphQLType::string(); |
||
| 498 | } elseif ($type instanceof Boolean) { |
||
| 499 | return GraphQLType::boolean(); |
||
| 500 | } elseif ($type instanceof Float_) { |
||
| 501 | return GraphQLType::float(); |
||
| 502 | } elseif ($type instanceof Object_) { |
||
| 503 | $fqcn = (string) $type->getFqsen(); |
||
| 504 | if ($fqcn === '\\DateTimeImmutable' || $fqcn === '\\DateTimeInterface') { |
||
| 505 | return DateTimeType::getInstance(); |
||
| 506 | } elseif ($fqcn === '\\DateTime') { |
||
| 507 | throw new GraphQLException('Type-hinting a parameter against DateTime is not allowed. Please use the DateTimeImmutable type instead.'); |
||
| 508 | } |
||
| 509 | |||
| 510 | $className = ltrim($type->getFqsen(), '\\'); |
||
| 511 | if ($mapToInputType) { |
||
| 512 | return $this->typeMapper->mapClassToInputType($className); |
||
| 513 | } else { |
||
| 514 | return $this->typeMapper->mapClassToType($className); |
||
| 515 | } |
||
| 516 | } elseif ($type instanceof Array_) { |
||
| 517 | return GraphQLType::listOf(GraphQLType::nonNull($this->toGraphQlType($type->getValueType(), $mapToInputType))); |
||
| 518 | } else { |
||
| 519 | throw TypeMappingException::createFromType($type); |
||
| 520 | } |
||
| 521 | } |
||
| 522 | |||
| 523 | /** |
||
| 524 | * Removes "null" from the type (if it is compound). Return an array of types (not a Compound type). |
||
| 525 | * |
||
| 526 | * @param Type $docBlockTypeHint |
||
| 527 | * @return array |
||
| 528 | */ |
||
| 529 | private function typesWithoutNullable(Type $docBlockTypeHint): array |
||
| 538 | }); |
||
| 539 | } |
||
| 540 | |||
| 541 | /** |
||
| 542 | * @param Type $docBlockTypeHint |
||
| 543 | * @return bool |
||
| 544 | */ |
||
| 545 | private function isNullable(Type $docBlockTypeHint): bool |
||
| 559 | } |
||
| 560 | } |
||
| 561 |