Completed
Push — master ( 1f8ceb...056ad3 )
by Christian
23s queued 11s
created

RequestBodyParamConverter   A

Complexity

Total Complexity 26

Size/Duplication

Total Lines 150
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 12

Test Coverage

Coverage 97.14%

Importance

Changes 0
Metric Value
wmc 26
lcom 1
cbo 12
dl 0
loc 150
ccs 68
cts 70
cp 0.9714
rs 10
c 0
b 0
f 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 24 5
B apply() 0 41 9
A supports() 0 4 2
A configureContext() 0 16 6
A throwException() 0 8 2
A getValidatorOptions() 0 11 2
1
<?php
2
3
/*
4
 * This file is part of the FOSRestBundle package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
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 FOS\RestBundle\Request;
13
14
use FOS\RestBundle\Context\Context;
15
use FOS\RestBundle\Serializer\Serializer;
16
use JMS\Serializer\Exception\Exception as JMSSerializerException;
17
use JMS\Serializer\Exception\UnsupportedFormatException;
18
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
19
use Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\ParamConverterInterface;
20
use Symfony\Component\HttpFoundation\Request;
21
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
22
use Symfony\Component\HttpKernel\Exception\UnsupportedMediaTypeHttpException;
23
use Symfony\Component\OptionsResolver\OptionsResolver;
24
use Symfony\Component\Serializer\Exception\ExceptionInterface as SymfonySerializerException;
25
use Symfony\Component\Validator\Validator\ValidatorInterface;
26
27
/**
28
 * @author Tyler Stroud <[email protected]>
29
 */
30
class RequestBodyParamConverter implements ParamConverterInterface
31
{
32
    private $serializer;
33
    private $context = [];
34
    private $validator;
35
36
    /**
37
     * The name of the argument on which the ConstraintViolationList will be set.
38
     *
39
     * @var null|string
40
     */
41
    private $validationErrorsArgument;
42
43
    /**
44
     * @param Serializer         $serializer
45
     * @param array|null         $groups                   An array of groups to be used in the serialization context
46
     * @param string|null        $version                  A version string to be used in the serialization context
47
     * @param ValidatorInterface $validator
48
     * @param string|null        $validationErrorsArgument
49
     *
50
     * @throws \InvalidArgumentException
51
     */
52 16
    public function __construct(
53
        Serializer $serializer,
54
        $groups = null,
55
        $version = null,
56
        ValidatorInterface $validator = null,
57
        $validationErrorsArgument = null
58
    ) {
59 16
        $this->serializer = $serializer;
60
61 16
        if (!empty($groups)) {
62 1
            $this->context['groups'] = (array) $groups;
63 1
        }
64
65 16
        if (!empty($version)) {
66 1
            $this->context['version'] = $version;
67 1
        }
68
69 16
        if (null !== $validator && null === $validationErrorsArgument) {
70
            throw new \InvalidArgumentException('"$validationErrorsArgument" cannot be null when using the validator');
71
        }
72
73 16
        $this->validator = $validator;
74 16
        $this->validationErrorsArgument = $validationErrorsArgument;
75 16
    }
76
77
    /**
78
     * {@inheritdoc}
79
     */
80 9
    public function apply(Request $request, ParamConverter $configuration)
81
    {
82 9
        $options = (array) $configuration->getOptions();
83
84 9
        if (isset($options['deserializationContext']) && is_array($options['deserializationContext'])) {
85 1
            $arrayContext = array_merge($this->context, $options['deserializationContext']);
86 1
        } else {
87 8
            $arrayContext = $this->context;
88
        }
89 9
        $this->configureContext($context = new Context(), $arrayContext);
90
91
        try {
92 9
            $object = $this->serializer->deserialize(
93 9
                $request->getContent(),
0 ignored issues
show
Bug introduced by
It seems like $request->getContent() targeting Symfony\Component\HttpFo...n\Request::getContent() can also be of type resource; however, FOS\RestBundle\Serialize...rializer::deserialize() does only seem to accept string, maybe add an additional type check?

This check looks at variables that are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
94 9
                $configuration->getClass(),
95 9
                $request->getContentType(),
96
                $context
97 9
            );
98 9
        } catch (UnsupportedFormatException $e) {
99
            return $this->throwException(new UnsupportedMediaTypeHttpException($e->getMessage(), $e), $configuration);
100 4
        } catch (JMSSerializerException $e) {
101 1
            return $this->throwException(new BadRequestHttpException($e->getMessage(), $e), $configuration);
102 3
        } catch (SymfonySerializerException $e) {
103 2
            return $this->throwException(new BadRequestHttpException($e->getMessage(), $e), $configuration);
104
        }
105
106 5
        $request->attributes->set($configuration->getName(), $object);
107
108 5
        if (null !== $this->validator && (!isset($options['validate']) || $options['validate'])) {
109 1
            $validatorOptions = $this->getValidatorOptions($options);
110
111 1
            $errors = $this->validator->validate($object, null, $validatorOptions['groups']);
112
113 1
            $request->attributes->set(
114 1
                $this->validationErrorsArgument,
115
                $errors
116 1
            );
117 1
        }
118
119 5
        return true;
120
    }
121
122
    /**
123
     * {@inheritdoc}
124
     */
125 4
    public function supports(ParamConverter $configuration)
126
    {
127 4
        return null !== $configuration->getClass() && 'fos_rest.request_body' === $configuration->getConverter();
128
    }
129
130
    /**
131
     * @param Context $context
132
     * @param array   $options
133
     */
134 10
    protected function configureContext(Context $context, array $options)
135
    {
136 10
        foreach ($options as $key => $value) {
137 2
            if ('groups' === $key) {
138 1
                $context->addGroups($options['groups']);
139 2
            } elseif ('version' === $key) {
140 1
                $context->setVersion($options['version']);
141 2
            } elseif ('enableMaxDepth' === $key) {
142 1
                $context->enableMaxDepth($options['enableMaxDepth']);
0 ignored issues
show
Unused Code introduced by
The call to Context::enableMaxDepth() has too many arguments starting with $options['enableMaxDepth'].

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
143 1
            } elseif ('serializeNull' === $key) {
144 2
                $context->setSerializeNull($options['serializeNull']);
145 1
            } else {
146 1
                $context->setAttribute($key, $value);
147 1
            }
148 1
        }
149 1
    }
150
151 10
    /**
152 10
     * Throws an exception or return false if a ParamConverter is optional.
153
     */
154
    private function throwException(\Exception $exception, ParamConverter $configuration)
155
    {
156
        if ($configuration->isOptional()) {
157 3
            return false;
158
        }
159 3
160 1
        throw $exception;
161
    }
162
163 2
    /**
164
     * @param array $options
165
     *
166
     * @return array
167
     */
168
    private function getValidatorOptions(array $options)
169
    {
170
        $resolver = new OptionsResolver();
171 2
        $resolver->setDefaults([
172
            'groups' => null,
173 2
            'traverse' => false,
174 2
            'deep' => false,
175 2
        ]);
176 2
177 2
        return $resolver->resolve(isset($options['validator']) ? $options['validator'] : []);
178 2
    }
179
}
180