-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormHandler.php
171 lines (150 loc) · 4.81 KB
/
FormHandler.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
163
164
165
166
167
168
169
170
171
<?php
namespace XM\FormBundle;
use Doctrine\Common\Persistence\ObjectManager;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\RouterInterface;
use XM\FlashBundle\FlashHandlerInterface;
class FormHandler
{
protected $formFactory;
protected $em;
protected $router;
protected $flashHandler;
public function __construct(
FormFactoryInterface $formFactory,
ObjectManager $em,
RouterInterface $router,
FlashHandlerInterface $flashHandler
) {
$this->formFactory = $formFactory;
$this->em = $em;
$this->router = $router;
$this->flashHandler = $flashHandler;
}
/**
* Creates the form, setting the action and method
* and then handles the request.
*
* @param string $formClass The form class
* @param object $entity The entity
* @param Request $request The current request
* @param array $options Array of options
*
* @return \Symfony\Component\Form\FormInterface
*/
public function getForm(
$formClass,
$entity,
Request $request,
array $options = []
) {
$formOptions = $this->buildFormOptions($entity, $request, $options);
$form = $this->createForm($formClass, $entity, $formOptions);
$form->handleRequest($request);
return $form;
}
/**
* Compiles the options for passing to the create form.
*
* @param object $entity The entity
* @param Request $request The current request
* @param array $options Array of options
*
* @return array
*/
public function buildFormOptions(
$entity,
Request $request,
array $options = []
) {
$newEntity = (null === $entity->getId());
if (!array_key_exists('method', $options)) {
$options['method'] = $newEntity ? 'POST' : 'PUT';
}
if (!array_key_exists('action', $options)) {
$route = $request->attributes->get('_route');
if ($newEntity) {
$options['action'] = $this->generateUrl($route);
} else {
$options['action'] = $this->generateUrl(
$route,
['id' => $entity->getId()]
);
}
}
return $options;
}
/**
* Processes the form, including checking if the input is valid.
* Also persists the entity if it's a new entity and flushes the em.
* Adds the appropriate flash messages (created, updated or invalid).
* Returns true if everything has been saved.
* Returns false if there was an error and the form should be displayed again.
*
* @param FormInterface $form The form.
* @param object $entity The entity
* @param string $userEntityName The name of entity to use in flash messages
* @param \Doctrine\Common\Persistence\ObjectManager $em
*
* @return bool
*/
public function processForm(
FormInterface $form,
$entity,
$userEntityName,
ObjectManager $em = null
) {
if ($form->isSubmitted() && $form->isValid()) {
if (null === $em) {
$em = $this->em;
}
$newEntity = !$em->contains($entity);
if ($newEntity) {
$em->persist($entity);
}
$em->flush();
$msgKey = ($newEntity ? FormMessages::CREATED : FormMessages::UPDATED);
$this->flashHandler->add(
'success',
$msgKey,
['%name%' => $userEntityName]
);
return true;
} else if ($form->isSubmitted()) {
$this->flashHandler->add(
'warning',
FormMessages::VALIDATION_ERRORS
);
}
return false;
}
/**
* Creates and returns a Form instance from the type of the form.
*
* @param string $type The fully qualified class name of the form type
* @param mixed $data The initial data for the form
* @param array $options Options for the form
*
* @return \Symfony\Component\Form\FormInterface
*/
protected function createForm($type, $data, $options)
{
return $this->formFactory->create($type, $data, $options);
}
/**
* Generates a URL from the given parameters.
*
* @param string $route The name of the route
* @param mixed $parameters An array of parameters
*
* @return string The generated URL
*
* @see UrlGeneratorInterface
*/
protected function generateUrl($route, $parameters = [])
{
return $this->router->generate($route, $parameters);
}
}