Completed
Push — master ( 740d0f...e52344 )
by Rafael
03:15
created

QueryAnnotationParser::parse()   C

Complexity

Conditions 14
Paths 160

Size

Total Lines 67
Code Lines 40

Duplication

Lines 5
Ratio 7.46 %

Code Coverage

Tests 30
CRAP Score 15.8281

Importance

Changes 0
Metric Value
cc 14
eloc 40
nc 160
nop 3
dl 5
loc 67
ccs 30
cts 38
cp 0.7895
crap 15.8281
rs 5.3324
c 0
b 0
f 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
/*******************************************************************************
3
 *  This file is part of the GraphQL Bundle package.
4
 *
5
 *  (c) YnloUltratech <[email protected]>
6
 *
7
 *  For the full copyright and license information, please view the LICENSE
8
 *  file that was distributed with this source code.
9
 ******************************************************************************/
10
11
namespace Ynlo\GraphQLBundle\Definition\Loader\Annotation;
12
13
use Ynlo\GraphQLBundle\Annotation;
14
use Ynlo\GraphQLBundle\Definition\ArgumentAwareInterface;
15
use Ynlo\GraphQLBundle\Definition\ArgumentDefinition;
16
use Ynlo\GraphQLBundle\Definition\QueryDefinition;
17
use Ynlo\GraphQLBundle\Definition\Registry\Endpoint;
18
use Ynlo\GraphQLBundle\Util\ClassUtils;
19
use Ynlo\GraphQLBundle\Util\TypeUtil;
20
21
/**
22
 * Parse Query annotation to fetch queries
23
 */
24
class QueryAnnotationParser implements AnnotationParserInterface
25
{
26
    use AnnotationReaderAwareTrait;
27
28
    /**
29
     * {@inheritdoc}
30
     */
31 1
    public function supports($annotation): bool
32
    {
33 1
        return $annotation instanceof Annotation\Query;
34
    }
35
36
    /**
37
     * {@inheritdoc}
38
     */
39 1
    public function parse($annotation, \ReflectionClass $refClass, Endpoint $endpoint)
40
    {
41
        /** @var Annotation\Query $annotation */
42 1
        $query = new QueryDefinition();
43
44 1 View Code Duplication
        if ($annotation->name) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
45 1
            $query->setName($annotation->name);
46
        } else {
47 1
            $query->setName(lcfirst(ClassUtils::getDefaultName($refClass->getName())));
48
        }
49
50 1
        $endpoint->addQuery($query);
51
52 1
        if ($annotation->type) {
53 1
            $query->setNode(TypeUtil::normalize($annotation->type));
54 1
            $query->setType(TypeUtil::normalize($annotation->type));
55
        }
56
57 1
        $query->setList(TypeUtil::isTypeList($annotation->type));
58 1
        $query->setNonNull(TypeUtil::isTypeNonNull($annotation->type));
59 1
        $query->setNonNullList(TypeUtil::isTypeNonNullList($annotation->type));
60
61 1
        if (!$query->getType()) {
62 1
            $nodeType = ClassUtils::getNodeFromClass($refClass->getName());
63 1
            $objectDefinition = null;
64 1
            if ($nodeType && $endpoint->hasType($nodeType)) {
65 1
                $objectDefinition = $endpoint->getType($nodeType);
66
            }
67 1
            if ($objectDefinition) {
68 1
                $query->setType($objectDefinition->getName());
69 1
                $query->setNode($objectDefinition->getName());
70
            } else {
71
                //avoid throw Exception when the schema is empty
72
                //when the schema is empty the NodeInterface has not been loaded
73
                //then the node(id) and nodes(ids) queries fails
74
                if ('Node' === $nodeType) {
75
                    $endpoint->removeQuery($query->getName());
76
77
                    return;
78
                }
79
80
                $error = sprintf('Does not exist any valid type for class "%s"', $refClass->getName());
81
                throw new \RuntimeException($error);
82
            }
83
        }
84
85 1
        if ($annotation->arguments) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $annotation->arguments of type Ynlo\GraphQLBundle\Annotation\Argument[] is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
86
            foreach ($annotation->arguments as $argAnnotation) {
87
                if ($argAnnotation instanceof Annotation\Argument) {
88
                    $this->resolveArgument($query, $argAnnotation);
89
                }
90
            }
91
        } else {
92 1
            $argAnnotations = $this->reader->getClassAnnotations($refClass);
93 1
            foreach ($argAnnotations as $argAnnotation) {
94 1
                if ($argAnnotation instanceof Annotation\Argument) {
95 1
                    $this->resolveArgument($query, $argAnnotation);
96
                }
97
            }
98
        }
99
100 1
        $query->setResolver($annotation->resolver ?? $refClass->getName());
101 1
        $query->setDeprecationReason($annotation->deprecationReason);
102 1
        $query->setDescription($annotation->description);
103
104 1
        foreach ($annotation->options as $option => $value) {
105 1
            $query->setMeta($option, $value);
106
        }
107 1
    }
108
109
    /**
110
     * @param ArgumentAwareInterface $argumentAware
111
     * @param object                 $argAnnotation
112
     */
113 1
    public function resolveArgument(ArgumentAwareInterface $argumentAware, $argAnnotation)
114
    {
115 1
        $arg = new ArgumentDefinition();
116 1
        $arg->setName($argAnnotation->name);
117 1
        $arg->setDescription($argAnnotation->description);
118 1
        $arg->setInternalName($argAnnotation->internalName);
119 1
        $arg->setDefaultValue($argAnnotation->defaultValue);
120 1
        $arg->setType(TypeUtil::normalize($argAnnotation->type));
121 1
        $arg->setList(TypeUtil::isTypeList($argAnnotation->type));
122 1
        $arg->setNonNullList(TypeUtil::isTypeNonNullList($argAnnotation->type));
123 1
        $arg->setNonNull(TypeUtil::isTypeNonNull($argAnnotation->type));
124 1
        $argumentAware->addArgument($arg);
125 1
    }
126
}
127