From: Jérôme Benoit Date: Thu, 28 Jun 2018 08:30:12 +0000 (+0200) Subject: Add REST ressource to get a person localisation. X-Git-Url: https://git.piment-noir.org/?p=Project_proches_de_moi-server.git;a=commitdiff_plain;h=4c4feb3e3193703f6cfa44ca711092a8acb38329 Add REST ressource to get a person localisation. Signed-off-by: Jérôme Benoit --- diff --git a/src/Controller/PersonController.php b/src/Controller/PersonController.php index 7853771..b452c63 100644 --- a/src/Controller/PersonController.php +++ b/src/Controller/PersonController.php @@ -82,6 +82,26 @@ class PersonController extends Controller } + /** + * @Rest\Get("/api/person/{id}/localisations") + */ + public function getLocalisationActions(Request $request) + { + $em = $this->getDoctrine()->getManager(); + $localisations = $em->getRepository('App:Localisation')->findBy(['person_id' => $request->get('id')]); + + if (empty($localisations)) { + return View::create(['message' => 'Person localisation not found'], Response::HTTP_NOT_FOUND); + } + + $view = View::create($localisation); + $view->setFormat('json'); + + $viewHandler = $this->get('fos_rest.view_handler'); + return $viewHandler->handle($view); + + } + /** * @Rest\Post("/api/person/{id}/localisation") * @Rest\View(StatusCode = Response::HTTP_CREATED) diff --git a/src/Entity/Person.php b/src/Entity/Person.php index 934b2be..d401cc3 100644 --- a/src/Entity/Person.php +++ b/src/Entity/Person.php @@ -3,8 +3,6 @@ namespace App\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; -use JMS\Serializer\Annotation\ExclusionPolicy; -use JMS\Serializer\Annotation\Expose; /** * @ORM\Entity()