GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#550)
by Asmir
03:00
created

JMSSerializerExtension::loadInternal()   F

Complexity

Conditions 15
Paths 964

Size

Total Lines 108
Code Lines 66

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 62
CRAP Score 15.3359

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 108
ccs 62
cts 70
cp 0.8857
rs 2.4166
cc 15
eloc 66
nc 964
nop 2
crap 15.3359

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
/*
4
 * Copyright 2011 Johannes M. Schmitt <[email protected]>
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 * http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
namespace JMS\SerializerBundle\DependencyInjection;
20
21
use Symfony\Component\HttpKernel\DependencyInjection\ConfigurableExtension;
22
use Symfony\Component\DependencyInjection\Alias;
23
use JMS\Serializer\Exception\RuntimeException;
24
use Symfony\Component\Config\FileLocator;
25
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
26
use Symfony\Component\DependencyInjection\Reference;
27
use Symfony\Component\DependencyInjection\ContainerBuilder;
28
29
class JMSSerializerExtension extends ConfigurableExtension
30
{
31 18
    public function loadInternal(array $config, ContainerBuilder $container)
32
    {
33 18
        $loader = new XmlFileLoader($container, new FileLocator(array(
34 18
                        __DIR__.'/../Resources/config/')));
35 18
        $loader->load('services.xml');
36
37
        // Built-in handlers.
38 18
        $container->getDefinition('jms_serializer.datetime_handler')
39 18
            ->addArgument($config['handlers']['datetime']['default_format'])
40 18
            ->addArgument($config['handlers']['datetime']['default_timezone'])
41 18
            ->addArgument($config['handlers']['datetime']['cdata'])
42
        ;
43
44
        // property naming
45
        $container
46 18
            ->getDefinition('jms_serializer.camel_case_naming_strategy')
47 18
            ->addArgument($config['property_naming']['separator'])
48 18
            ->addArgument($config['property_naming']['lower_case'])
49
        ;
50 18
        if ($config['property_naming']['enable_cache']) {
51
            $container
52 18
                ->getDefinition('jms_serializer.cache_naming_strategy')
53 18
                ->addArgument(new Reference((string) $container->getAlias('jms_serializer.naming_strategy')))
54
            ;
55 18
            $container->setAlias('jms_serializer.naming_strategy', 'jms_serializer.cache_naming_strategy');
56 18
        }
57
58 18
        $bundles = $container->getParameter('kernel.bundles');
59
60 18
        if (!empty($config['expression_evaluator']['id'])) {
61
            $container
62 17
                ->getDefinition('jms_serializer.serializer')
63 17
                ->replaceArgument(7, new Reference($config['expression_evaluator']['id']));
64 17
        } else {
65 1
            $container->removeDefinition('jms_serializer.expression_evaluator');
66
        }
67
68
        // metadata
69 18
        if ('none' === $config['metadata']['cache']) {
70
            $container->removeAlias('jms_serializer.metadata.cache');
71 18
        } elseif ('file' === $config['metadata']['cache']) {
72
            $container
73 18
                ->getDefinition('jms_serializer.metadata.cache.file_cache')
74 18
                ->replaceArgument(0, $config['metadata']['file_cache']['dir'])
75
            ;
76
77 18
            $dir = $container->getParameterBag()->resolveValue($config['metadata']['file_cache']['dir']);
78 18
            if (!file_exists($dir)) {
79 1
                if (!$rs = @mkdir($dir, 0777, true)) {
80
                    throw new RuntimeException(sprintf('Could not create cache directory "%s".', $dir));
81
                }
82 1
            }
83 18
        } else {
84
            $container->setAlias('jms_serializer.metadata.cache', new Alias($config['metadata']['cache'], false));
85
        }
86
87 18
        if ($config['metadata']['infer_types_from_doctrine_metadata'] === false) {
88 1
            $container->setParameter('jms_serializer.infer_types_from_doctrine_metadata', false);
89 1
        }
90
91
        $container
92 18
            ->getDefinition('jms_serializer.metadata_factory')
93 18
            ->replaceArgument(2, $config['metadata']['debug'])
94
        ;
95
96
        // directories
97 18
        $directories = array();
98 18
        if ($config['metadata']['auto_detection']) {
99 18
            foreach ($bundles as $name => $class) {
100 1
                $ref = new \ReflectionClass($class);
101
102 1
                $directories[$ref->getNamespaceName()] = dirname($ref->getFileName()).'/Resources/config/serializer';
103 18
            }
104 18
        }
105 18
        foreach ($config['metadata']['directories'] as $directory) {
106 1
            $directory['path'] = rtrim(str_replace('\\', '/', $directory['path']), '/');
107
108 1
            if ('@' === $directory['path'][0]) {
109 1
                $pathParts = explode('/', $directory['path']);
110 1
                $bundleName = substr($pathParts[0], 1);
111
112 1
                if (!isset($bundles[$bundleName])) {
113
                    throw new RuntimeException(sprintf('The bundle "%s" has not been registered with AppKernel. Available bundles: %s', $bundleName, implode(', ', array_keys($bundles))));
114
                }
115
116 1
                $ref = new \ReflectionClass($bundles[$bundleName]);
117 1
                $directory['path'] = dirname($ref->getFileName()).substr($directory['path'], strlen('@'.$bundleName));
118 1
            }
119
120 1
            $directories[rtrim($directory['namespace_prefix'], '\\')] = rtrim($directory['path'], '\\/');
121 18
        }
122
        $container
123 18
            ->getDefinition('jms_serializer.metadata.file_locator')
124 18
            ->replaceArgument(0, $directories)
125
        ;
126
127 18
        $container->setParameter('jms_serializer.xml_deserialization_visitor.doctype_whitelist', $config['visitors']['xml']['doctype_whitelist']);
128 18
        $container->setParameter('jms_serializer.xml_serialization_visitor.format_output', $config['visitors']['xml']['format_output']);
129 18
        $container->setParameter('jms_serializer.json_serialization_visitor.options', $config['visitors']['json']['options']);
130
131 18
        if ( ! $config['enable_short_alias']) {
132
            $container->removeAlias('serializer');
133
        }
134
135 18
        if ( ! $container->getParameter('kernel.debug')) {
136
            $container->removeDefinition('jms_serializer.stopwatch_subscriber');
137
        }
138 18
    }
139
140 19
    public function getConfiguration(array $config, ContainerBuilder $container)
141
    {
142 19
        return new Configuration($container->getParameterBag()->resolveValue('%kernel.debug%'));
143
    }
144
}
145