X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2FController%2FPersonController.php;h=bc34bcd229ec24e6c02ceadddb6e83478b18d8e2;hb=f0640a5242b2a959068696eed3d41c37d07633a7;hp=6ee3fdfc52ba561a8c42e872b1820e9abf35ed57;hpb=9e71bdc54747a36c661ce304a330a2d6dc43b80c;p=Project_proches_de_moi-server.git diff --git a/src/Controller/PersonController.php b/src/Controller/PersonController.php index 6ee3fdf..bc34bcd 100644 --- a/src/Controller/PersonController.php +++ b/src/Controller/PersonController.php @@ -2,8 +2,11 @@ namespace App\Controller; use App\Entity\Person; +use Symfony\Bundle\FrameworkBundle\Controller\Controller; use FOS\RestBundle\Controller\FOSRestController; use FOS\RestBundle\Controller\Annotations as Rest; +use FOS\RestBundle\View\ViewHandler; +use FOS\RestBundle\View\View; use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; @@ -13,14 +16,19 @@ class PersonController extends FOSRestController { /** * @Rest\Post( - * path = "/api/person/inscription", + * path = "/api/person/register", * name = "create_person" * ) * @Rest\View(StatusCode = Response::HTTP_CREATED) - * @ParamConverter("person", converter="fos_rest.request_body") */ - public function createPersonAction(Person $person) - { + public function createPersonAction(Request $request) + { $person = new Person(); + $person->setFirstname($request->get('firstname')); + $person->setLastName($request->get('lastname')); + $person->setEmail($request->get('email')); + $person->setPassword($request->get('password')); + $person->setOnline(false); + $em = $this->getDoctrine()->getManager(); $em->persist($person); @@ -36,7 +44,7 @@ class PersonController extends FOSRestController public function removePersonAction(Request $request) { $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App::Person')->find($request->get('id')); + $person = $em->getRepository('App:Person')->find($request->get('id')); if (!empty($person)) { $em->remove($person); @@ -55,10 +63,10 @@ class PersonController extends FOSRestController public function updatePersonAction(Request $request) { $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App::Person')->find($request->get('id')); + $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')); @@ -72,11 +80,37 @@ 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) { + //TODO: Check that the authenticated user is allowed to see the localisation + $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) + { + //TODO: Check that the authenticated user is allowed to see the localisation + $em = $this->getDoctrine()->getManager(); + $localisation = $em->getRepository('App:Localisation')->findOneBy(['person' => $request->get('id')]); + + if (empty($localisation)) { + return $this->PersonLocalisationNotFound(); + } + + return $localisation; } /** @@ -98,82 +132,118 @@ class PersonController extends FOSRestController } /** - * @Rest\View() - * @Rest\Get( - * path = "/api/person/{id}", - * name = "show_person", - * requirements = {"id"="\d+"} - * ) - */ - public function showPerson(Request $request) - { - $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App:Person')->find($request->get('id')); - - if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); + * @Rest\Get( + * path = "/api/person/{id}", + * name = "show_person", + * requirements = {"id"="\d+"} + * ) + * @Rest\View() + */ + public function showPerson(Request $request) + { + $em = $this->getDoctrine()->getManager(); + $person = $em->getRepository('App:Person')->find($request->get('id')); + + if (empty($person)) { + return $this->PersonNotFound(); + } + + return $person; + } + + /** + * @Rest\Get( + * path = "/api/person/{email}", + * name = "show_person_by_email", + * requirements = {"email"="\s+"} + * ) + * @Rest\View() + */ + public function showPersonByEmail(Request $request) + { + $em = $this->getDoctrine()->getManager(); + $person = $em->getRepository('App:Person')->findOneBy(['email' => $request->get('email')]); + + if (empty($person)) { + return $this->PersonNotFound(); } - return $person; - } - - /** - * @Rest\Get( - * path = "/api/person/{email}", - * name = "show_person_by_email", - * requirements = {"email"="\s+"} - * ) - * @Rest\View() - */ - public function showPersonByEmail(Request $request) - { - $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App::Person')->find($request->get('email')); - - if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); - } - - return $person; - } - - /** - * @Rest\Get( - * path = "/api/person/{id}/friends", - * name = "show_person_friends", - * requirements = {"id"="\d+"} - * ) - * @Rest\View() - */ - public function showPersonFriends(Request $request) - { - $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App:Person')->find($request->get('id')); - - if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); - } - - return $person->getFriends(); - } - - /** - * @Rest\Get( - * path = "/api/person/{email}/friends", - * name = "show_person_friends_by_email", - * requirements = {"email"="\s+"} - * ) - * @Rest\View() - */ - public function showPersonFriendsByEmail(Request $request) - { - $em = $this->getDoctrine()->getManager(); - $person = $em->getRepository('App::Person')->find($request->get('email')); - - if (empty($person)) { - return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND); - } - - return $person->getFriends(); - } + return $person; + } + + /** + * @Rest\Get( + * path = "/api/person/{id}/friends", + * name = "show_person_friends", + * requirements = {"id"="\d+"} + * ) + * @Rest\View() + */ + public function showPersonFriends(Request $request) + { + $em = $this->getDoctrine()->getManager(); + $person = $em->getRepository('App:Person')->find($request->get('id')); + + if (empty($person)) { + return $this->PersonNotFound(); + } + + 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", + * name = "show_person_friends_by_email", + * requirements = {"email"="\s+"} + * ) + * @Rest\View() + */ + public function showPersonFriendsByEmail(Request $request) + { + $em = $this->getDoctrine()->getManager(); + $person = $em->getRepository('App:Person')->findOneBy(['email' => $request->get('email')]); + + if (empty($person)) { + return $this->PersonNotFound(); + } + + 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); + } + + private function PersonLocalisationsNotFound() { + return View::create(['message' => 'Person localisations not found'], Response::HTTP_NOT_FOUND); + } + }