Completed
Push — 1.0 ( f45751...770e00 )
by Simonas
12:41 queued 10:12
created

MetadataCollector::getBundleMapping()   C

Complexity

Conditions 9
Paths 17

Size

Total Lines 58
Code Lines 35

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 58
rs 6.9928
cc 9
eloc 35
nc 17
nop 1

How to fix   Long Method   

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
/*
4
 * This file is part of the ONGR package.
5
 *
6
 * (c) NFQ Technologies UAB <[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
namespace ONGR\ElasticsearchBundle\Mapping;
13
14
use Doctrine\Common\Cache\CacheProvider;
15
use ONGR\ElasticsearchBundle\Mapping\Exception\DocumentParserException;
16
use ONGR\ElasticsearchBundle\Mapping\Exception\MissingDocumentAnnotationException;
17
18
/**
19
 * DocumentParser wrapper for getting bundle documents mapping.
20
 */
21
class MetadataCollector
22
{
23
    /**
24
     * @var DocumentFinder
25
     */
26
    private $finder;
27
28
    /**
29
     * @var DocumentParser
30
     */
31
    private $parser;
32
33
    /**
34
     * @var CacheProvider
35
     */
36
    private $cache = null;
37
38
    /**
39
     * @var bool
40
     */
41
    private $enableCache = false;
42
43
    /**
44
     * Bundles mappings local cache container. Could be stored as the whole bundle or as single document.
45
     * e.g. AcmeDemoBundle, AcmeDemoBundle:Product.
46
     *
47
     * @var mixed
48
     */
49
    private $mappings = [];
50
51
    /**
52
     * @param DocumentFinder $finder For finding documents.
53
     * @param DocumentParser $parser For reading document annotations.
54
     * @param CacheProvider  $cache  Cache provider to store the meta data for later use.
55
     */
56
    public function __construct($finder, $parser, $cache = null)
57
    {
58
        $this->finder = $finder;
59
        $this->parser = $parser;
60
        $this->cache = $cache;
61
62
        if ($this->cache) {
63
            $this->mappings = $this->cache->fetch('ongr.metadata.mappings');
64
        }
65
    }
66
67
    /**
68
     * Enables metadata caching.
69
     *
70
     * @param bool $enableCache
71
     */
72
    public function setEnableCache($enableCache)
73
    {
74
        $this->enableCache = $enableCache;
75
    }
76
77
    /**
78
     * Fetches bundles mapping from documents.
79
     *
80
     * @param string[] $bundles Elasticsearch manager config. You can get bundles list from 'mappings' node.
81
     * @return array
82
     */
83
    public function getMappings(array $bundles)
84
    {
85
        $output = [];
86
        foreach ($bundles as $bundle) {
87
            $mappings = $this->getBundleMapping($bundle);
88
89
            $alreadyDefinedTypes = array_intersect_key($mappings, $output);
90
            if (count($alreadyDefinedTypes)) {
91
                throw new \LogicException(
92
                    implode(',', array_keys($alreadyDefinedTypes)) .
93
                    ' type(s) already defined in other document, you can use the same ' .
94
                    'type only once in a manager definition.'
95
                );
96
            }
97
98
            $output = array_merge($output, $mappings);
99
        }
100
101
        return $output;
102
    }
103
104
    /**
105
     * Searches for documents in the bundle and tries to read them.
106
     *
107
     * @param string $name
108
     *
109
     * @return array Empty array on containing zero documents.
110
     */
111
    public function getBundleMapping($name)
112
    {
113
        if (!is_string($name)) {
114
            throw new \LogicException('getBundleMapping() in the Metadata collector expects a string argument only!');
115
        }
116
117
        if (isset($this->mappings[$name])) {
118
            return $this->mappings[$name];
119
        }
120
121
        // Handle the case when single document mapping requested
122
        if (strpos($name, ':') !== false) {
123
            list($bundle, $documentClass) = explode(':', $name);
124
            $documents = $this->finder->getBundleDocumentClasses($bundle);
125
            $documents = in_array($documentClass, $documents) ? [$documentClass] : [];
126
        } else {
127
            $documents = $this->finder->getBundleDocumentClasses($name);
128
            $bundle = $name;
129
        }
130
131
        $mappings = [];
132
        $bundleNamespace = $this->finder->getBundleClass($bundle);
133
        $bundleNamespace = substr($bundleNamespace, 0, strrpos($bundleNamespace, '\\'));
134
135
        if (!count($documents)) {
136
            return [];
137
        }
138
139
        // Loop through documents found in bundle.
140
        foreach ($documents as $document) {
141
            $documentReflection = new \ReflectionClass(
142
                $bundleNamespace .
143
                '\\' . DocumentFinder::DOCUMENT_DIR .
144
                '\\' . $document
145
            );
146
147
            try {
148
                $documentMapping = $this->getDocumentReflectionMapping($documentReflection);
149
            } catch (MissingDocumentAnnotationException $exception) {
150
                // Not a document, just ignore
151
                continue;
152
            }
153
154
            if (!array_key_exists($documentMapping['type'], $mappings)) {
155
                $documentMapping['bundle'] = $bundle;
156
                $mappings = array_merge($mappings, [$documentMapping['type'] => $documentMapping]);
157
            } else {
158
                throw new \LogicException(
159
                    $bundle . ' has 2 same type names defined in the documents. ' .
160
                    'Type names must be unique!'
161
                );
162
            }
163
        }
164
165
        $this->cacheBundle($name, $mappings);
166
167
        return $mappings;
168
    }
169
170
    /**
171
     * @param array $manager
172
     *
173
     * @return array
174
     */
175
    public function getManagerTypes($manager)
176
    {
177
        $mapping = $this->getMappings($manager['mappings']);
178
179
        return array_keys($mapping);
180
    }
181
182
    /**
183
     * Resolves Elasticsearch type by document class.
184
     *
185
     * @param string $className FQCN or string in AppBundle:Document format
186
     *
187
     * @return string
188
     */
189
    public function getDocumentType($className)
190
    {
191
        $mapping = $this->getMapping($className);
192
193
        return $mapping['type'];
194
    }
195
196
    /**
197
     * Retrieves prepared mapping to sent to the elasticsearch client.
198
     *
199
     * @param array $bundles Manager config.
200
     *
201
     * @return array|null
202
     */
203
    public function getClientMapping(array $bundles)
204
    {
205
        /** @var array $typesMapping Array of filtered mappings for the elasticsearch client*/
206
        $typesMapping = null;
207
208
        /** @var array $mappings All mapping info */
209
        $mappings = $this->getMappings($bundles);
210
211
        foreach ($mappings as $type => $mapping) {
212
            if (!empty($mapping['properties'])) {
213
                $typesMapping[$type] = array_filter(
214
                    array_merge(
215
                        ['properties' => $mapping['properties']],
216
                        $mapping['fields']
217
                    ),
218
                    function ($value) {
219
                        return (bool)$value || is_bool($value);
220
                    }
221
                );
222
            }
223
        }
224
225
        return $typesMapping;
226
    }
227
228
    /**
229
     * Gathers annotation data from class.
230
     *
231
     * @param \ReflectionClass $reflectionClass Document reflection class to read mapping from.
232
     *
233
     * @return array
234
     * @throws DocumentParserException
235
     */
236
    private function getDocumentReflectionMapping(\ReflectionClass $reflectionClass)
237
    {
238
        return $this->parser->parse($reflectionClass);
239
    }
240
241
    /**
242
     * Returns single document mapping metadata.
243
     *
244
     * @param string $namespace Document namespace
245
     *
246
     * @return array
247
     * @throws DocumentParserException
248
     */
249
    public function getMapping($namespace)
250
    {
251
        $namespace = $this->getClassName($namespace);
252
253
        if (isset($this->mappings[$namespace])) {
254
            return $this->mappings[$namespace];
255
        }
256
257
        $mapping = $this->getDocumentReflectionMapping(new \ReflectionClass($namespace));
258
        $this->cacheBundle($namespace, $mapping);
259
260
        return $mapping;
261
    }
262
263
    /**
264
     * Adds metadata information to the cache storage.
265
     *
266
     * @param string $bundle
267
     * @param array  $mapping
268
     */
269
    private function cacheBundle($bundle, array $mapping)
270
    {
271
        if ($this->enableCache) {
272
            $this->mappings[$bundle] = $mapping;
273
            $this->cache->save('ongr.metadata.mappings', $this->mappings);
274
        }
275
    }
276
277
    /**
278
     * Returns fully qualified class name.
279
     *
280
     * @param string $className
281
     *
282
     * @return string
283
     */
284
    public function getClassName($className)
285
    {
286
        return $this->finder->getNamespace($className);
287
    }
288
}
289