1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Saxulum\RestCrud\Request; |
4
|
|
|
|
5
|
|
|
use Saxulum\RestCrud\Request\Converter\ConverterInterface; |
6
|
|
|
use Symfony\Component\HttpFoundation\Request; |
7
|
|
|
|
8
|
|
|
class ContentToFormDataConverter |
9
|
|
|
{ |
10
|
|
|
/** |
11
|
|
|
* @var ConverterInterface[] |
12
|
|
|
*/ |
13
|
|
|
protected $converters = []; |
14
|
|
|
|
15
|
|
|
/** |
16
|
|
|
* @param ConverterInterface[] $converters |
17
|
|
|
*/ |
18
|
|
|
public function __construct(array $converters) |
19
|
|
|
{ |
20
|
|
|
foreach ($converters as $i => $converter) { |
21
|
|
|
if (!$converter instanceof ConverterInterface) { |
22
|
|
|
$type = is_object($converter) ? get_class($converter) : gettype($converter); |
23
|
|
|
throw new \InvalidArgumentException( |
24
|
|
|
sprintf( |
25
|
|
|
'Only objects implementing "%s" are supported! "%s" given on index %s', |
26
|
|
|
'Saxulum\RestCrud\Request\Converter\ConverterInterface', |
27
|
|
|
$type, |
28
|
|
|
$i |
29
|
|
|
) |
30
|
|
|
); |
31
|
|
|
} |
32
|
|
|
$this->converters[$converter->contentType()] = $converter; |
33
|
|
|
} |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* @param Request $request |
38
|
|
|
* |
39
|
|
|
* @return Request |
40
|
|
|
*/ |
41
|
|
|
public function convert(Request &$request) |
42
|
|
|
{ |
43
|
|
|
$contentType = $request->headers->get('Content-Type'); |
44
|
|
|
if (false !== $pos = strpos($contentType, ';')) { |
45
|
|
|
$contentType = substr($contentType, 0, $pos); |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
if (in_array($contentType, array('application/x-www-form-urlencoded', 'multipart/form-data'), true)) { |
49
|
|
|
return $request; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
$formData = $this->getConverter($contentType)->convert($request->getContent()); |
|
|
|
|
53
|
|
|
|
54
|
|
|
$request = new Request( |
55
|
|
|
$request->query->all(), |
56
|
|
|
$formData, |
57
|
|
|
$request->attributes->all(), |
58
|
|
|
$request->cookies->all(), |
59
|
|
|
$request->files->all(), |
60
|
|
|
array_replace($request->server->all(), array( |
61
|
|
|
'CONTENT_TYPE' => 'application/x-www-form-urlencoded', |
62
|
|
|
)), |
63
|
|
|
http_build_query($formData) |
64
|
|
|
); |
65
|
|
|
|
66
|
|
|
return $request; |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* @param string $contentType |
71
|
|
|
* |
72
|
|
|
* @return ConverterInterface |
73
|
|
|
* |
74
|
|
|
* @throws \Exception |
75
|
|
|
*/ |
76
|
|
|
protected function getConverter($contentType) |
77
|
|
|
{ |
78
|
|
|
if (!isset($this->converters[$contentType])) { |
79
|
|
|
throw new \Exception(sprintf('There is no converter for content type: "%s', $contentType)); |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
return $this->converters[$contentType]; |
83
|
|
|
} |
84
|
|
|
} |
85
|
|
|
|
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.