-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathResourceController.php
251 lines (211 loc) · 6.57 KB
/
ResourceController.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php
namespace ProgrammingAreHard\ResourceBundle\Controller;
use Doctrine\Common\Inflector\Inflector;
use FOS\RestBundle\Util\Codes;
use ProgrammingAreHard\ResourceBundle\DependencyInjection\ProgrammingAreHardResourceExtension as ResourceExtension;
use ProgrammingAreHard\ResourceBundle\Domain\Event\ResourceEvents;
use ProgrammingAreHard\ResourceBundle\Domain\Form\FormProcessorInterface;
use ProgrammingAreHard\ResourceBundle\Domain\Manager\ResourceManagerInterface;
use ProgrammingAreHard\ResourceBundle\Domain\Repository\ResourceRepositoryInterface;
use ProgrammingAreHard\ResourceBundle\Domain\ResourceInterface;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
abstract class ResourceController extends ApiController
{
/**
* @var string
*/
protected $resourceClass;
/**
* Create a resource.
*
* @param Request $request
* @return \Symfony\Component\HttpFoundation\Response
*/
public function createAction(Request $request)
{
$resource = $this->getResourceRepository()->newInstance();
$this->grantOr403('CREATE', $resource);
$form = $this->createForm($this->getFormName(), $resource);
if ($response = $this->processForm($form, $request)) {
return $response;
}
$this->getResourceEventDispatcher()->dispatch(ResourceEvents::PRE_VIEW, $resource);
$url = $this->getResourceLocation($resource);
return $this
->setStatusCode(Codes::HTTP_CREATED)
->setLocationHeader($url)
->setResource($resource)
->respond();
}
/**
* Show a single resource.
*
* @param $id
* @return \Symfony\Component\HttpFoundation\Response
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
public function showAction($id)
{
$resource = $this->findOr404($id);
$this->grantOr403('VIEW', $resource);
$this->getResourceEventDispatcher()->dispatch(ResourceEvents::PRE_VIEW, $resource);
return $this
->setResource($resource)
->respond();
}
/**
* Update a resource.
*
* @param Request $request
* @param $id
* @return \Symfony\Component\HttpFoundation\Response
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
public function updateAction(Request $request, $id)
{
$resource = $this->findOr404($id);
$this->grantOr403('EDIT', $resource);
$form = $this->createForm($this->getFormName(), $resource, array('method' => 'PUT'));
if ($response = $this->processForm($form, $request)) {
return $response;
}
$this->getResourceEventDispatcher()->dispatch(ResourceEvents::PRE_VIEW, $resource);
return $this
->setStatusCode(Codes::HTTP_OK)
->setResource($resource)
->respond();
}
/**
* Delete a resource.
*
* @param $id
* @return \Symfony\Component\HttpFoundation\Response
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
public function deleteAction($id)
{
$resource = $this->findOr404($id);
$this->grantOr403('DELETE', $resource);
$this->getResourceManager()->delete($resource);
return $this->noContent();
}
/**
* Process the form.
*
* @param FormInterface $form
* @param Request $request
* @return Response|null
*/
protected function processForm(FormInterface $form, Request $request)
{
$processor = $this->getFormProcessor();
if ($errors = $processor->process($form, $request)) {
return $this
->setStatusCode(Codes::HTTP_BAD_REQUEST)
->setErrors($errors)
->respond();
}
return null;
}
/**
* Find resource or 404.
*
* @param $id
* @return ResourceInterface
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
protected function findOr404($id)
{
if (!$resource = $this->getResourceRepository()->find($id)) {
throw new NotFoundHttpException('Resource not found.');
}
return $resource;
}
/**
* Set the resource to serialize.
*
* @param ResourceInterface $resource
* @return $this
*/
protected function setResource(ResourceInterface $resource)
{
return $this->setData(array($this->getResourceName() => $resource));
}
/**
* Get the form name.
*
* @return string
*/
protected function getFormName()
{
return $this->getResourceName();
}
/**
* Get the resource short name.
*
* @return string
*/
protected function getResourceName()
{
$classTransformer = $this->get(ResourceExtension::RESOURCE_CLASS_NAME_TRANSFORMER_ID);
return $classTransformer->transform($this->getResourceClass());
}
/**
* Get the resource pluralized name.
*
* @return string
*/
protected function getPluralizedResourceName()
{
return Inflector::pluralize($this->getResourceName());
}
/**
* Get the resource class.
*
* @return string
*/
protected function getResourceClass()
{
if (!$this->resourceClass) {
throw new \RunTimeException(sprintf('A %s::$resourceClass property must be defined.', get_class($this)));
}
return $this->resourceClass;
}
/**
* Get the resource event dispatcher.
*
* @return \ProgrammingAreHard\ResourceBundle\Domain\EventDispatcher\ResourceEventDispatcher
*/
protected function getResourceEventDispatcher()
{
return $this->get(ResourceExtension::RESOURCE_EVENT_DISPATCHER_ID);
}
/**
* Get the resource's location.
*
* @param ResourceInterface $resource
* @return string - resource's url
*/
abstract protected function getResourceLocation(ResourceInterface $resource);
/**
* Get the form processor.
*
* @return FormProcessorInterface
*/
abstract protected function getFormProcessor();
/**
* Get the resource repository.
*
* @return ResourceRepositoryInterface
*/
abstract protected function getResourceRepository();
/**
* Get the resource manager.
*
* @return ResourceManagerInterface
*/
abstract protected function getResourceManager();
}