Completed
Push — master ( 09b082...fb75e1 )
by Kévin
07:06 queued 01:09
created

EagerLoadingExtension   D

Complexity

Total Complexity 52

Size/Duplication

Total Lines 233
Duplicated Lines 5.58 %

Coupling/Cohesion

Components 1
Dependencies 18

Importance

Changes 0
Metric Value
wmc 52
lcom 1
cbo 18
dl 13
loc 233
rs 4.3439
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 12 1
A applyToCollection() 0 16 2
A applyToItem() 0 16 3
C joinRelations() 0 75 23
C addSelect() 6 35 12
A getSerializerGroups() 0 8 2
C getSerializerContext() 7 24 9

How to fix   Duplicated Code    Complexity   

Duplicated Code

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 Class

 Tip:   Before tackling complexity, make sure that you eliminate any duplication first. This often can reduce the size of classes significantly.

Complex classes like EagerLoadingExtension 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 EagerLoadingExtension, and based on these observations, apply Extract Interface, too.

1
<?php
2
3
/*
4
 * This file is part of the API Platform project.
5
 *
6
 * (c) Kévin Dunglas <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace ApiPlatform\Core\Bridge\Doctrine\Orm\Extension;
15
16
use ApiPlatform\Core\Bridge\Doctrine\Orm\Util\EagerLoadingTrait;
17
use ApiPlatform\Core\Bridge\Doctrine\Orm\Util\QueryNameGeneratorInterface;
18
use ApiPlatform\Core\Exception\PropertyNotFoundException;
19
use ApiPlatform\Core\Exception\ResourceClassNotFoundException;
20
use ApiPlatform\Core\Exception\RuntimeException;
21
use ApiPlatform\Core\Metadata\Property\Factory\PropertyMetadataFactoryInterface;
22
use ApiPlatform\Core\Metadata\Property\Factory\PropertyNameCollectionFactoryInterface;
23
use ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface;
24
use ApiPlatform\Core\Serializer\SerializerContextBuilderInterface;
25
use Doctrine\ORM\Mapping\ClassMetadataInfo;
26
use Doctrine\ORM\QueryBuilder;
27
use Symfony\Component\HttpFoundation\RequestStack;
28
use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactoryInterface;
29
use Symfony\Component\Serializer\Normalizer\AbstractNormalizer;
30
use Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer;
31
32
/**
33
 * Eager loads relations.
34
 *
35
 * @author Charles Sarrazin <[email protected]>
36
 * @author Kévin Dunglas <[email protected]>
37
 * @author Antoine Bluchet <[email protected]>
38
 * @author Baptiste Meyer <[email protected]>
39
 */
40
final class EagerLoadingExtension implements QueryCollectionExtensionInterface, QueryItemExtensionInterface
41
{
42
    use EagerLoadingTrait;
43
44
    private $propertyNameCollectionFactory;
45
    private $propertyMetadataFactory;
46
    private $classMetadataFactory;
47
    private $maxJoins;
48
    private $serializerContextBuilder;
49
    private $requestStack;
50
51
    /**
52
     * @TODO move $fetchPartial after $forceEager (@soyuka) in 3.0
53
     */
54
    public function __construct(PropertyNameCollectionFactoryInterface $propertyNameCollectionFactory, PropertyMetadataFactoryInterface $propertyMetadataFactory, ResourceMetadataFactoryInterface $resourceMetadataFactory, int $maxJoins = 30, bool $forceEager = true, RequestStack $requestStack = null, SerializerContextBuilderInterface $serializerContextBuilder = null, bool $fetchPartial = false, ClassMetadataFactoryInterface $classMetadataFactory = null)
55
    {
56
        $this->propertyNameCollectionFactory = $propertyNameCollectionFactory;
57
        $this->propertyMetadataFactory = $propertyMetadataFactory;
58
        $this->resourceMetadataFactory = $resourceMetadataFactory;
59
        $this->classMetadataFactory = $classMetadataFactory;
60
        $this->maxJoins = $maxJoins;
61
        $this->forceEager = $forceEager;
62
        $this->fetchPartial = $fetchPartial;
63
        $this->serializerContextBuilder = $serializerContextBuilder;
64
        $this->requestStack = $requestStack;
65
    }
66
67
    /**
68
     * {@inheritdoc}
69
     */
70
    public function applyToCollection(QueryBuilder $queryBuilder, QueryNameGeneratorInterface $queryNameGenerator, string $resourceClass, string $operationName = null)
71
    {
72
        $options = [];
73
74
        if (null !== $operationName) {
75
            $options = ['collection_operation_name' => $operationName];
76
        }
77
78
        $forceEager = $this->shouldOperationForceEager($resourceClass, $options);
79
        $fetchPartial = $this->shouldOperationFetchPartial($resourceClass, $options);
80
        $serializerContext = $this->getSerializerContext($resourceClass, 'normalization_context', $options);
81
82
        $groups = $this->getSerializerGroups($options, $serializerContext);
83
84
        $this->joinRelations($queryBuilder, $queryNameGenerator, $resourceClass, $forceEager, $fetchPartial, $queryBuilder->getRootAliases()[0], $groups, $serializerContext);
85
    }
86
87
    /**
88
     * The context may contain serialization groups which helps defining joined entities that are readable.
89
     */
90
    public function applyToItem(QueryBuilder $queryBuilder, QueryNameGeneratorInterface $queryNameGenerator, string $resourceClass, array $identifiers, string $operationName = null, array $context = [])
91
    {
92
        $options = [];
93
94
        if (null !== $operationName) {
95
            $options = ['item_operation_name' => $operationName];
96
        }
97
98
        $forceEager = $this->shouldOperationForceEager($resourceClass, $options);
99
        $fetchPartial = $this->shouldOperationFetchPartial($resourceClass, $options);
100
        $contextType = isset($context['api_denormalize']) ? 'denormalization_context' : 'normalization_context';
101
        $serializerContext = $this->getSerializerContext($context['resource_class'] ?? $resourceClass, $contextType, $options);
102
        $groups = $this->getSerializerGroups($options, $serializerContext);
103
104
        $this->joinRelations($queryBuilder, $queryNameGenerator, $resourceClass, $forceEager, $fetchPartial, $queryBuilder->getRootAliases()[0], $groups, $serializerContext);
105
    }
106
107
    /**
108
     * Joins relations to eager load.
109
     *
110
     * @param bool $wasLeftJoin  if the relation containing the new one had a left join, we have to force the new one to left join too
111
     * @param int  $joinCount    the number of joins
112
     * @param int  $currentDepth the current max depth
113
     *
114
     * @throws RuntimeException when the max number of joins has been reached
115
     */
116
    private function joinRelations(QueryBuilder $queryBuilder, QueryNameGeneratorInterface $queryNameGenerator, string $resourceClass, bool $forceEager, bool $fetchPartial, string $parentAlias, array $propertyMetadataOptions = [], array $context = [], bool $wasLeftJoin = false, int &$joinCount = 0, int $currentDepth = null)
117
    {
118
        if ($joinCount > $this->maxJoins) {
119
            throw new RuntimeException('The total number of joined relations has exceeded the specified maximum. Raise the limit if necessary, or use the "max_depth" option of the Symfony serializer.');
120
        }
121
122
        $currentDepth = $currentDepth > 0 ? $currentDepth - 1 : $currentDepth;
123
        $entityManager = $queryBuilder->getEntityManager();
124
        $classMetadata = $entityManager->getClassMetadata($resourceClass);
125
        $attributesMetadata = $this->classMetadataFactory ? $this->classMetadataFactory->getMetadataFor($resourceClass)->getAttributesMetadata() : null;
126
127
        foreach ($classMetadata->associationMappings as $association => $mapping) {
128
            //Don't join if max depth is enabled and the current depth limit is reached
129
            if (isset($context[AbstractObjectNormalizer::ENABLE_MAX_DEPTH]) && 0 === $currentDepth) {
130
                continue;
131
            }
132
133
            try {
134
                $propertyMetadata = $this->propertyMetadataFactory->create($resourceClass, $association, $propertyMetadataOptions);
135
            } catch (PropertyNotFoundException $propertyNotFoundException) {
136
                //skip properties not found
137
                continue;
138
            } catch (ResourceClassNotFoundException $resourceClassNotFoundException) {
139
                //skip associations that are not resource classes
140
                continue;
141
            }
142
143
            // We don't want to interfere with doctrine on this association
144
            if (false === $forceEager && ClassMetadataInfo::FETCH_EAGER !== $mapping['fetch']) {
145
                continue;
146
            }
147
148
            if ((false === $propertyMetadata->isReadableLink() || false === $propertyMetadata->isReadable()) && false === $propertyMetadata->getAttribute('fetchEager', false)) {
149
                continue;
150
            }
151
152
            $isNullable = $mapping['joinColumns'][0]['nullable'] ?? true;
153
            if (false !== $wasLeftJoin || true === $isNullable) {
154
                $method = 'leftJoin';
155
            } else {
156
                $method = 'innerJoin';
157
            }
158
159
            $associationAlias = $queryNameGenerator->generateJoinAlias($association);
160
            $queryBuilder->{$method}(sprintf('%s.%s', $parentAlias, $association), $associationAlias);
161
            ++$joinCount;
162
163
            if (true === $fetchPartial) {
164
                try {
165
                    $this->addSelect($queryBuilder, $mapping['targetEntity'], $associationAlias, $propertyMetadataOptions);
166
                } catch (ResourceClassNotFoundException $resourceClassNotFoundException) {
167
                    continue;
168
                }
169
            } else {
170
                $queryBuilder->addSelect($associationAlias);
171
            }
172
173
            // Avoid recursion
174
            if ($mapping['targetEntity'] === $resourceClass) {
175
                $queryBuilder->addSelect($associationAlias);
176
                continue;
177
            }
178
179
            if (isset($attributesMetadata[$association])) {
180
                $maxDepth = $attributesMetadata[$association]->getMaxDepth();
181
182
                // The current depth is the lowest max depth available in the ancestor tree.
183
                if (null !== $maxDepth && (null === $currentDepth || $maxDepth < $currentDepth)) {
184
                    $currentDepth = $maxDepth;
185
                }
186
            }
187
188
            $this->joinRelations($queryBuilder, $queryNameGenerator, $mapping['targetEntity'], $forceEager, $fetchPartial, $associationAlias, $propertyMetadataOptions, $context, 'leftJoin' === $method, $joinCount, $currentDepth);
189
        }
190
    }
191
192
    private function addSelect(QueryBuilder $queryBuilder, string $entity, string $associationAlias, array $propertyMetadataOptions)
193
    {
194
        $select = [];
195
        $entityManager = $queryBuilder->getEntityManager();
196
        $targetClassMetadata = $entityManager->getClassMetadata($entity);
197
        if ($targetClassMetadata->subClasses) {
198
            $queryBuilder->addSelect($associationAlias);
199
        } else {
200
            foreach ($this->propertyNameCollectionFactory->create($entity) as $property) {
201
                $propertyMetadata = $this->propertyMetadataFactory->create($entity, $property, $propertyMetadataOptions);
202
203
                if (true === $propertyMetadata->isIdentifier()) {
204
                    $select[] = $property;
205
                    continue;
206
                }
207
208
                //the field test allows to add methods to a Resource which do not reflect real database fields
209 View Code Duplication
                if ($targetClassMetadata->hasField($property) && (true === $propertyMetadata->getAttribute('fetchable') || $propertyMetadata->isReadable())) {
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...
210
                    $select[] = $property;
211
                }
212
213
                if (array_key_exists($property, $targetClassMetadata->embeddedClasses)) {
214
                    foreach ($this->propertyNameCollectionFactory->create($targetClassMetadata->embeddedClasses[$property]['class']) as $embeddedProperty) {
215
                        $propertyMetadata = $this->propertyMetadataFactory->create($entity, $property, $propertyMetadataOptions);
216
                        $propertyName = "$property.$embeddedProperty";
217 View Code Duplication
                        if ($targetClassMetadata->hasField($propertyName) && (true === $propertyMetadata->getAttribute('fetchable') || $propertyMetadata->isReadable())) {
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...
218
                            $select[] = $propertyName;
219
                        }
220
                    }
221
                }
222
            }
223
224
            $queryBuilder->addSelect(sprintf('partial %s.{%s}', $associationAlias, implode(',', $select)));
225
        }
226
    }
227
228
    /**
229
     * Gets serializer context.
230
     *
231
     * @param string $contextType normalization_context or denormalization_context
232
     * @param array  $options     represents the operation name so that groups are the one of the specific operation
233
     */
234
    private function getSerializerContext(string $resourceClass, string $contextType, array $options): array
235
    {
236
        $request = null;
237
238
        if (null !== $this->requestStack && null !== $this->serializerContextBuilder) {
239
            $request = $this->requestStack->getCurrentRequest();
240
        }
241
242
        if (null !== $this->serializerContextBuilder && null !== $request && !$request->attributes->get('_graphql')) {
243
            return $this->serializerContextBuilder->createFromRequest($request, 'normalization_context' === $contextType);
244
        }
245
246
        $resourceMetadata = $this->resourceMetadataFactory->create($resourceClass);
247
248 View Code Duplication
        if (isset($options['collection_operation_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...
249
            $context = $resourceMetadata->getCollectionOperationAttribute($options['collection_operation_name'], $contextType, null, true);
250
        } elseif (isset($options['item_operation_name'])) {
251
            $context = $resourceMetadata->getItemOperationAttribute($options['item_operation_name'], $contextType, null, true);
252
        } else {
253
            $context = $resourceMetadata->getAttribute($contextType);
254
        }
255
256
        return $context ?: [];
257
    }
258
259
    /**
260
     * Gets serializer groups if available, if not it returns the $options array.
261
     *
262
     * @param array $options represents the operation name so that groups are the one of the specific operation
263
     */
264
    private function getSerializerGroups(array $options, array $context): array
265
    {
266
        if (empty($context[AbstractNormalizer::GROUPS])) {
267
            return $options;
268
        }
269
270
        return ['serializer_groups' => $context[AbstractNormalizer::GROUPS]];
271
    }
272
}
273