-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApiController.php
479 lines (412 loc) · 16 KB
/
ApiController.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
<?php
/*
* This file is part of the OrbitaleApiBundle package.
*
* (c) Alexandre Rock Ancelet <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Orbitale\Bundle\ApiBundle\Controller;
use Doctrine\Common\Persistence\ObjectManager;
use Doctrine\ORM\Mapping\ClassMetadataInfo;
use Orbitale\Component\EntityMerger\EntityMerger;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\PersistentCollection;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\ParameterBag;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Validator\ConstraintViolation;
use Symfony\Component\Validator\ConstraintViolationList;
use Symfony\Component\Validator\ConstraintViolationListInterface;
/**
* @Route("/", requirements={"serviceName":"([a-zA-Z0-9\._]?)+"})
*/
class ApiController extends Controller
{
private $services;
private $service;
/**
* @Route("/{serviceName}", name="orbitale_api_cget")
* @Method({"GET"})
*
* @param string $serviceName
* @param Request $request
*
* @return JsonResponse
*/
public function cgetAction($serviceName, Request $request)
{
$this->checkAsker($request);
$service = $this->getService($serviceName);
$datas = $this->getDoctrine()->getManager()->getRepository($service['entity'])->findAll();
return $this->response(array(
'data' => $datas,
'path' => $serviceName,
), count($datas) ? 200 : 204);
}
/**
* @Route("/{serviceName}/{id}", requirements={"id": "\d+"}, defaults={"subElement": ""}, name="orbitale_api_get")
* @Route("/{serviceName}/{id}/{subElement}", requirements={"subElement": "([a-zA-Z0-9\._]/?)+", "id": "\d+"}, name="orbitale_api_get_subrequest")
* @Method({"GET"})
*
* @param string $serviceName
* @param integer $id
* @param string $subElement
* @param Request $request
*
* @return JsonResponse
*/
public function getAction($serviceName, $id, $subElement = null, Request $request)
{
$this->checkAsker($request);
$service = $this->getService($serviceName);
/** @var EntityRepository $repo */
$repo = $this->getDoctrine()->getManager()->getRepository($service['entity']);
// Fetch datas
$data = $repo->find($id);
// The entity key has it's trailing "s" removed
$key = rtrim($serviceName, 's');
if ($subElement) {
$data = $this->fetchSubElement($subElement, $service, $data, $key);
}
if (!$data) {
return $this->error('No item found with this identifier.');
}
return $this->response(array('data' => $data, 'path' => $key));
}
/**
* @Route("/{serviceName}", requirements={"serviceName": "\w+"}, name="orbitale_api_post")
* @Method({"post"})
*
* @param string $serviceName
* @param Request $request
*
* @return JsonResponse
*/
public function postAction($serviceName, Request $request)
{
$this->checkAsker($request);
$service = $this->getService($serviceName);
/** @var EntityManager $em */
$em = $this->getDoctrine()->getManager();
// Generate a new object
$object = new $service['entity'];
$errors = $this->mergeObject($object, $request->request);
if ($errors instanceof ConstraintViolationListInterface && count($errors)) {
return $this->validationError($errors);
}
$id = $em->getUnitOfWork()->getSingleIdentifierValue($object);
$repo = $em->getRepository($service['entity']);
if ($id && $repo->find($id)) {
throw new \InvalidArgumentException('"POST" method is used to insert new datas. If you want to edit an object, use the "PUT" method instead.');
} else {
$em->persist($object);
}
$em->flush();
// Get the new object ID for full refresh
$id = $em->getUnitOfWork()->getSingleIdentifierValue($object);
return $this->response(array(
'data' => $repo->find($id),
'path' => rtrim($serviceName, 's').'.'.$id,
'link' => $this->generateUrl('orbitale_api_get', array('id' => $id, 'serviceName' => $serviceName), UrlGeneratorInterface::ABSOLUTE_URL),
), 201);
}
/**
* @Route("/{serviceName}/{id}", requirements={"id": "\d+"}, name="orbitale_api_put")
* @Method({"PUT"})
*
* @param string $serviceName
* @param integer $id
* @param Request $request
*
* @return JsonResponse
*/
public function putAction($serviceName, $id, Request $request)
{
$this->checkAsker($request);
$service = $this->getService($serviceName);
/** @var EntityManager $em */
$em = $this->getDoctrine()->getManager();
$repo = $em->getRepository($service['entity']);
// Get full item from database
$object = $repo->find($id);
if (!$object) {
return $this->error('No item found with this identifier.');
}
$errors = $this->mergeObject($object, $request->request);
if (count($errors)) {
return $this->validationError($errors);
}
$em->merge($object);
$em->flush();
// We retrieve back the object from the database to get it full with relations
return $this->response(array(
'data' => $repo->find($id),
'path' => rtrim($serviceName, 's').'.'.$id,
'link' => $this->generateUrl('orbitale_api_get', array('id' => $id, 'serviceName' => $serviceName), UrlGeneratorInterface::ABSOLUTE_URL),
), 200);
}
/**
* @Route("/{serviceName}/{id}", requirements={"id": "\d+"}, name="orbitale_api_delete")
* @Method({"DELETE"})
*
* @param string $serviceName
* @param integer $id
* @param Request $request
*
* @return JsonResponse
*/
public function deleteAction($serviceName, $id, Request $request)
{
$this->checkAsker($request);
$service = $this->getService($serviceName);
$em = $this->getDoctrine()->getManager();
$data = $em->getRepository($service['entity'])->find($id);
if (!$data) {
return $this->error('No item found with this identifier.');
}
$em->remove($data);
$em->flush();
return $this->response(array('data' => $data, 'path' => rtrim($serviceName, 's').'.'.$id));
}
/**
* Retrieves a service name from the configuration
*
* @param string $serviceName
* @param bool $throwException
*
* @throws \InvalidArgumentException
* @return null|string
*/
protected function getService($serviceName = null, $throwException = true)
{
if (!$this->services) {
$this->services = $this->container->getParameter('orbitale_api.services');
}
if (null === $serviceName && $this->service) {
return $this->service;
}
if (isset($this->services[$serviceName])) {
$this->service = $this->services[$serviceName];
return $this->services[$serviceName];
}
if ($throwException) {
if (!$this->container->get('kernel')->isDebug()) {
throw new \InvalidArgumentException($this->get('translator')->trans('Unrecognized service %service%', array('%service%' => $serviceName,)), 1);
} else {
throw new \InvalidArgumentException($this->get('translator')->trans(
"Service \"%service%\" not found in the API.\n".
"Did you forget to specify it in your configuration ?\n".
"Available services : %services%",
array('%service%' => $serviceName, '%services%' => implode(', ', array_keys($this->services)),)
), 1);
}
}
return null;
}
/**
* @param Request $request
*/
protected function checkAsker(Request $request)
{
$this->container->get('orbitale.api.originChecker')->checkRequest($request);
}
/**
* Returns a view by serializing its data
*
* @param mixed $data
* @param integer $statusCode
* @param array $headers
*
* @return Response
*/
protected function response($data = null, $statusCode = null, array $headers = Array())
{
$headers['Content-Type'] = 'application/json; charset=utf-8';
$response = new JsonResponse($data, $statusCode ?: 200, $headers);
return $response;
}
/**
* @param ConstraintViolationListInterface $errors
*
* @return Response
*/
protected function validationError(ConstraintViolationListInterface $errors)
{
return $this->response(array(
'error' => true,
'message' => $this->get('translator')->trans('Invalid form, please re-check.', array(), 'orbitale_api.exceptions'),
'errors' => $errors,
), 400);
}
/**
* Handles a classic error (not an exception).
* The difference between this method and an exception is that with this method you can specify HTTP code.
*
* @param string $message
* @param array $messageParams
* @param int $code
*
* @return JsonResponse
*/
protected function error($message = '', $messageParams = array(), $code = 404)
{
$message = $this->get('translator')->trans($message, $messageParams, 'orbitale_api.exceptions');
return $this->response(array(
'error' => true,
'message' => $message,
), $code);
}
/**
* Merges POST datas into an object, and returns validation result
*
* @param object $object
* @param ParameterBag $post
*
* @return ConstraintViolationListInterface
*/
protected function mergeObject(&$object, ParameterBag $post)
{
// The user object has to be the "json" parameter
$userObject = $post->has('json') ? $post->get('json') : null;
if (!$userObject) {
$msg = 'You must specify the "json" POST parameter.';
return new ConstraintViolationList(array(
new ConstraintViolation($msg, $msg, array(), '', null, '', ''),
));
}
if (is_string($userObject)) {
// Allows either JSON string or array
$userObject = json_decode($post->get('json'), true);
if (!$userObject) {
$msg = 'Error while parsing json.';
return new ConstraintViolationList(array(
new ConstraintViolation($msg, $msg, array(), '', null, '', ''),
));
}
}
$serializer = $this->container->get('serializer');
if ($post->get('mapping')) {
/** @var ObjectManager $entityManager */
$entityManager = $this->getDoctrine()->getManager();
$entityMerger = new EntityMerger($entityManager, $serializer);
try {
$object = $entityMerger->merge($object, $userObject, $post->get('mapping'));
} catch (\Exception $e) {
$msg = $e->getMessage();
$propertyPath = null;
if (strpos($msg, 'If you want to specify ') !== false) {
$propertyPath = preg_replace('~^.*If you want to specify "([^"]+)".*$~', '$1', $msg);
}
return new ConstraintViolationList(array(
new ConstraintViolation($msg, $msg, array(), '', $propertyPath, '', ''),
));
}
} else {
// Transform the full item recursively into an array
$object = $serializer->deserialize($serializer->serialize($object, 'json'), 'array', 'json');
// Merge the two arrays with request parameters
$userObject = array_merge($object, $userObject);
// Serialize POST and deserialize to get full object
$json = $serializer->serialize($userObject, 'json');
$object = $serializer->deserialize($json, $this->service['entity'], 'json');
}
return $this->get('validator')->validate($object);
}
/**
* Parse the subelement request from "get" action in to get a fully "recursive" parameter check.
*
* @param array $subElement
* @param array $service
* @param mixed $data
* @param string $key
*
* @return mixed
* @throws \Exception
*/
protected function fetchSubElement($subElement, $service, $data, &$key)
{
$elements = explode('/', trim($subElement, '/'));
if (count($elements)) {
$key .= '.'.$this->getPropertyValue('_id', $data, $service['name']);
}
foreach ($elements as $k => $element) {
$key .= '.'.$element;
if (is_numeric($element)) {
// Get an element when subElement is "/element/{id}"
$element = (int) $element;
if (is_array($data) || $data instanceof \Traversable) {
$found = false;
foreach ($data as $searchingData) {
if ($this->getPropertyValue('_id', $searchingData) === $element) {
$found = true;
$data = $searchingData;
}
}
if (!$found) {
return $this->error('Found no element with identifier "'.$element.'" in requested object.',
array(), 404);
}
} else {
return $this->error('Identifier cannot be requested for a collection.');
}
} else {
$data = $this->getPropertyValue($element, $data);
}
}
return $data;
}
/**
* Retrieves the value of a property in an object.
* The special "_id" field retrieves the primary key.
*
* @param $field
* @param $object
*
* @return int
* @throws \Exception
*/
protected function getPropertyValue($field, $object)
{
if (!is_object($object)) {
throw new \Exception('Field "'.$field.'" cannot be retrieved as analyzed element is not an object.');
}
/** @var ClassMetadataInfo $metadatas */
$metadatas = $this->getDoctrine()->getManager()->getClassMetadata(get_class($object));
if ($field === '_id') {
// Check for identifier
$values = array_values($metadatas->getIdentifierValues($object));
return (int) $values[0];
} else {
// Check for any other field
$service = $this->getService($field, false);
if ($service) {
return $this
->getDoctrine()->getManager()
->getRepository($service['entity'])
->findBy(array(
$metadatas->getAssociationMappedByTargetField($field) => $this->getPropertyValue('_id', $object)
));
}
if ($metadatas->hasField($field) || $metadatas->hasAssociation($field)) {
$reflectionProperty = $metadatas->getReflectionClass()->getProperty($field);
$reflectionProperty->setAccessible(true);
$data = $reflectionProperty->getValue($object);
if ($data instanceof PersistentCollection) {
$data = $data->getValues();
}
return $data;
} else {
$ref = new \ReflectionClass($object);
throw new \Exception('Field "'.$field.'" does not exist in "'.$ref->getShortName().'" object');
}
}
}
}