X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FController%2FPersonController.php;h=734f29c9eca165ade74de8773ffde5970a07cb1a;hb=84fd6c7fa765874e478ad7f92e356e88b3ff962c;hp=c6b0b2c12f7321ef4be4e2f68f2ef45a4d1d4008;hpb=5347d06b101fb6f14d4ffef9464177408200b1ff;p=Project_proches_de_moi-server.git diff --git a/src/Controller/PersonController.php b/src/Controller/PersonController.php index c6b0b2c..734f29c 100644 --- a/src/Controller/PersonController.php +++ b/src/Controller/PersonController.php @@ -2,7 +2,7 @@ namespace App\Controller; use App\Entity\Person; -use FOS\RestBundle\Controller\FOSRestController; +use Symfony\Bundle\FrameworkBundle\Controller\Controller; use FOS\RestBundle\Controller\Annotations as Rest; use FOS\RestBundle\View\ViewHandler; use FOS\RestBundle\View\View; @@ -11,7 +11,7 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; -class PersonController extends FOSRestController +class PersonController extends Controller { /** * @Rest\Post( @@ -60,7 +60,7 @@ class PersonController extends FOSRestController $person = $em->getRepository('App:Person')->find($request->get('id')); if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); + return $this->PersonNotFound(); } $person->setFirstName($request->get('firstname')); @@ -74,11 +74,35 @@ class PersonController extends FOSRestController } /** - * @Rest\Get("/api/person/{id}/friends/localisation") + * @Rest\Get("/api/person/{id}/localisations") + * @Rest\View() */ - public function getFriendsLocalisationAction(Request $request) + public function getLocalisationsAction(Request $request) { + $em = $this->getDoctrine()->getManager(); + $localisations = $em->getRepository('App:Localisation')->findBy(['person' => $request->get('id')]); + + if (empty($localisations)) { + return $this->PersonLocalisationsNotFound(); + } + return $localisations; + } + + /** + * @Rest\Get("/api/person/{id}/localisation") + * @Rest\View() + */ + public function getLocalisationAction(Request $request) + { + $em = $this->getDoctrine()->getManager(); + $localisations = $em->getRepository('App:Localisation')->findOneBy(['person' => $request->get('id')]); + + if (empty($localisations)) { + return $this->PersonLocalisationNotFound(); + } + + return $localisations; } /** @@ -113,13 +137,10 @@ class PersonController extends FOSRestController $person = $em->getRepository('App:Person')->find($request->get('id')); if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); + return $this->PersonNotFound(); } - $view = View::create($person); - $view->setFormat('json'); - - return $view; + return $person; } /** @@ -133,16 +154,13 @@ class PersonController extends FOSRestController public function showPersonByEmail(Request $request) { $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App:Person')->find($request->get('email')); + $person = $em->getRepository('App:Person')->findOneBy(['email' => $request->get('email')]); if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); + return $this->PersonNotFound(); } - $view = View::create($person); - $view->setFormat('json'); - - return $view; + return $person; } /** @@ -159,15 +177,31 @@ class PersonController extends FOSRestController $person = $em->getRepository('App:Person')->find($request->get('id')); if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); + return $this->PersonNotFound(); } - $view = View::create($person->getFriends()); - $view->setFormat('json'); - - return $view; + return $person->getFriends(); } + /** + * @Rest\Get( + * path = "/api/persons", + * name = "show_persons" + * ) + * @Rest\View() + */ + public function showPersons(Request $request) + { + $em = $this->getDoctrine()->getManager(); + $persons = $em->getRepository('App:Person')->findAll(); + + if (empty($persons)) { + return $this->PersonsNotFound(); + } + + return $persons; + } + /** * @Rest\Get( * path = "/api/person/{email}/friends", @@ -179,15 +213,29 @@ class PersonController extends FOSRestController public function showPersonFriendsByEmail(Request $request) { $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App:Person')->find($request->get('email')); + $person = $em->getRepository('App:Person')->findOneBy(['email' => $request->get('email')]); if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); + return $this->PersonNotFound(); } - $view = View::create($person->getFriends()); - $view->setFormat('json'); + return $person->getFriends(); + } + + private function PersonNotFound() { + return View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); + } + + private function PersonsNotFound() { + return View::create(['message' => 'Persons not found'], Response::HTTP_NOT_FOUND); + } + + private function PersonLocalisationNotFound() { + return View::create(['message' => 'Person localisation not found'], Response::HTTP_NOT_FOUND); + } - return $view; + private function PersonLocalisationsNotFound() { + return View::create(['message' => 'Person localisations not found'], Response::HTTP_NOT_FOUND); } + }