-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathFormSerializer.php
163 lines (132 loc) · 5.19 KB
/
FormSerializer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?php
/**
* SimpleThings FormSerializerBundle
*
* LICENSE
*
* This source file is subject to the MIT license that is bundled
* with this package in the file LICENSE.txt.
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so I can send you a copy immediately.
*/
namespace SimpleThings\FormSerializerBundle\Serializer;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\Form\FormTypeInterface;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Serializer\Encoder\EncoderInterface;
use Symfony\Component\Form\Exception\UnexpectedTypeException;
use Symfony\Component\OptionsResolver\OptionsResolver;
class FormSerializer implements FormSerializerInterface
{
private $factory;
private $encoder;
private $options;
public function __construct(FormFactoryInterface $factory, EncoderInterface $encoder, SerializerOptions $options = null)
{
$this->factory = $factory;
$this->encoder = $encoder;
$this->options = $options ?: new SerializerOptions;
}
/**
* {@inheritdoc}
*/
public function serializeList($list, $type, $format, $xmlRootName = 'entries')
{
if (!($type instanceof FormTypeInterface) && !is_string($type)) {
throw new UnexpectedTypeException($type, 'string|FormTypeInterface');
}
$resolver = new OptionsResolver();
$type->setDefaultOptions($resolver);
$typeOptions = $resolver->resolve(array());
$options = array();
$options['type'] = $type;
$options['serialize_xml_inline'] = true;
$formOptions = array();
$formOptions['serialize_xml_name'] = $xmlRootName;
$name = isset($typeOptions['serialize_xml_name']) ? $typeOptions['serialize_xml_name'] : $type->getName();
$list = array($name => $list);
$builder = $this->factory->createBuilder('form', $list, $formOptions);
$builder->add($name, 'collection', $options);
return $this->serialize($list, $builder, $format);
}
/**
* {@inheritdoc}
*/
public function serialize($object, $typeBuilder, $format)
{
if (($typeBuilder instanceof FormTypeInterface) || is_string($typeBuilder)) {
$form = $this->factory->create($typeBuilder, $object);
} else if ($typeBuilder instanceof FormBuilderInterface) {
$typeBuilder->setData($object);
$form = $typeBuilder->getForm();
} else if ($typeBuilder instanceof FormInterface) {
$form = $typeBuilder;
if ( ! $form->isBound()) {
$form->setData($object);
}
} else {
throw new UnexpectedTypeException($typeBuilder, 'FormInterface|FormTypeInterface|FormBuilderInterface');
}
$options = $form->getConfig()->getOptions();
$xmlName = isset($options['serialize_xml_name'])
? $options['serialize_xml_name']
: 'entry';
if ($form->isBound() && ! $form->isValid()) {
$data = $this->serializeFormError($form);
$xmlName = 'form';
} else {
$data = $this->serializeForm($form, $format == 'xml');
}
if ($format === 'json' && $this->options->getIncludeRootInJson()) {
$data = array($xmlName => $data);
}
if ($format === 'xml') {
$appXmlName = $this->options->getApplicationXmlRootName();
if ($appXmlName && $appXmlName !== $xmlName) {
$data = array($xmlName => $data);
$xmlName = $appXmlName;
}
$this->encoder->getEncoder('xml')->setRootNodeName($xmlName);
}
return $this->encoder->encode($data, $format);
}
private function serializeFormError(FormInterface $form)
{
$result = array();
foreach ($form->getErrors() as $error) {
$result['error'][] = $error->getMessage();
}
foreach ($form->all() as $child) {
$errors = $this->serializeFormError($child);
if ($errors) {
$result['children'][$child->getName()] = $errors;
}
}
return $result;
}
private function serializeForm(FormInterface $form, $isXml)
{
if ( ! $form->all()) {
return $form->getViewData();
}
$data = array();
$namingStrategy = $this->options->getNamingStrategy();
foreach ($form->all() as $child) {
$options = $child->getConfig()->getOptions();
$name = $options['serialize_name'] ?: $namingStrategy->translateName($child);
if ($isXml) {
$name = (!$options['serialize_xml_value'])
? ($options['serialize_xml_attribute'] ? '@' . $name : $name)
: '#';
}
if ( ! $options['serialize_xml_inline'] && $isXml) {
$data[$name][$options['serialize_xml_name']] = $this->serializeForm($child, $isXml);
} else {
$data[$name] = $this->serializeForm($child, $isXml);
}
}
return $data;
}
}