Add ressources to get all users.
[Project_proches_de_moi-server.git] / src / Controller / PersonController.php
index a47df7c50736291fc9ef14ab4a31540673b04b4d..102b6980245824c6ca33201fe66ae29d641a3573 100644 (file)
@@ -2,19 +2,21 @@
 namespace App\Controller;
 
 use App\Entity\Person;
-use FOS\RestBundle\Controller\FOSRestController;
+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;
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
 
-class PersonController extends FOSRestController
+class PersonController extends Controller
 {
     /**
-     * @Rest\Prefix("/api")
      * @Rest\Post(
-     *     path = "/person/inscription",
+     *     path = "/api/person/inscription",
      *     name = "create_person"
      * )
      * @Rest\View(StatusCode = Response::HTTP_CREATED)
@@ -27,27 +29,29 @@ class PersonController extends FOSRestController
         $em->persist($person);
         $em->flush();
 
+        //TODO: use ViewHandler
         return $this->view($person, Response::HTTP_CREATED, ['Location' => $this->generateUrl('show_person', ['id' => $person->getId(), UrlGeneratorInterface::ABSOLUTE_URL])]);
     }
 
     /**
-     * @Rest\Delete("/person/{id}")
+     * @Rest\Delete("/api/person/{id}")
      * @Rest\View(statusCode = Response::HTTP_NO_CONTENT)
      */
     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);
             $em->flush();
         }
+        //TODO: remove localisation and friendship
     }
 
     /**
      * @Rest\Put(
-     *     path = "/person/{id}/update",
+     *     path = "/api/person/{id}/update",
      *     name = "update_person"
      * )
      * @Rest\View(StatusCode = Response::HTTP_CREATED)
@@ -55,10 +59,12 @@ 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'));
+
+        $viewHandler = $this->get('fos_rest.view_handler');
 
         if (empty($person)) {
-            return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
+            return $this->PersonNotFound($viewHandler);
         }
 
         $person->setFirstName($request->get('firstname'));
@@ -68,11 +74,12 @@ class PersonController extends FOSRestController
         $em->merge($person);
         $em->flush();
 
+        //TODO: use ViewHandler
         return $this->view($person, Response::HTTP_CREATED, ['Location' => $this->generateUrl('show_person', ['id' => $person->getId(), UrlGeneratorInterface::ABSOLUTE_URL])]);
     }
 
     /**
-     * @Rest\Get("/person/{id}/friends/localisation")
+     * @Rest\Get("/api/person/{id}/friends/localisation")
      */
     public function getFriendsLocalisationAction(Request $request)
     {
@@ -80,7 +87,28 @@ class PersonController extends FOSRestController
     }
 
     /**
-     * @Rest\Post("/person/{id}/localisation")
+     * @Rest\Get("/api/person/{id}/localisations")
+     */
+    public function getLocalisationsAction(Request $request)
+    {
+        $em = $this->getDoctrine()->getManager();
+        $localisations = $em->getRepository('App:Localisation')->findBy(['person' => $request->get('id')]);
+
+        $viewHandler = $this->get('fos_rest.view_handler');
+
+        if (empty($localisations)) {
+            return $this->PersonLocalisationsNotFound($viewHandler);
+        }
+
+        $view = View::create($localisations);
+        $view->setFormat('json');
+
+        return $viewHandler->handle($view);
+
+    }
+
+    /**
+     * @Rest\Post("/api/person/{id}/localisation")
      * @Rest\View(StatusCode = Response::HTTP_CREATED)
      */
     public function updateLocalisationAction(Request $request)
@@ -99,7 +127,7 @@ class PersonController extends FOSRestController
 
     /**
     * @Rest\Get(
-    *     path = "/person/{id}",
+    *     path = "/api/person/{id}",
     *     name = "show_person",
     *     requirements = {"id"="\d+"}
     * )
@@ -107,19 +135,24 @@ class PersonController extends FOSRestController
     */
    public function showPerson(Request $request)
    {
-       $em = $this->getDoctrine()->getManager();
-       $person = $em->getRepository('App::Person')->find($request->get('id'));
+        $em = $this->getDoctrine()->getManager();
+        $person = $em->getRepository('App:Person')->find($request->get('id'));
+
+        $viewHandler = $this->get('fos_rest.view_handler');
 
-       if (empty($person)) {
-            return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
+        if (empty($person)) {
+            return $this->PersonNotFound($viewHandler);
         }
 
-       return $person;
+        $view = View::create($person);
+        $view->setFormat('json');
+
+        return $viewHandler->handle($view);
    }
 
    /**
    * @Rest\Get(
-   *     path = "/person/{email}",
+   *     path = "/api/person/{email}",
    *     name = "show_person_by_email",
    *     requirements = {"email"="\s+"}
    * )
@@ -127,19 +160,24 @@ class PersonController extends FOSRestController
    */
   public function showPersonByEmail(Request $request)
   {
-      $em = $this->getDoctrine()->getManager();
-      $person = $em->getRepository('App::Person')->find($request->get('email'));
+        $em = $this->getDoctrine()->getManager();
+        $person = $em->getRepository('App:Person')->findOneBy(['email' => $request->get('email')]);
 
-      if (empty($person)) {
-           return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
-       }
+        $viewHandler = $this->get('fos_rest.view_handler');
 
-      return $person;
+        if (empty($person)) {
+            return $this->PersonNotFound($viewHandler);
+        }
+
+        $view = View::create($person);
+        $view->setFormat('json');
+
+        return $viewHandler->handle($view);
   }
 
    /**
    * @Rest\Get(
-   *     path = "/person/{id}/friends",
+   *     path = "/api/person/{id}/friends",
    *     name = "show_person_friends",
    *     requirements = {"id"="\d+"}
    * )
@@ -147,19 +185,49 @@ class PersonController extends FOSRestController
    */
   public function showPersonFriends(Request $request)
   {
-      $em = $this->getDoctrine()->getManager();
-      $person = $em->getRepository('App::Person')->find($request->get('id'));
+        $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);
-       }
+        $viewHandler = $this->get('fos_rest.view_handler');
 
-      return $person->getFriends();
+        if (empty($person)) {
+            return $this->PersonNotFound($viewHandler);
+        }
+
+        $view = View::create($person->getFriends());
+        $view->setFormat('json');
+
+        return $viewHandler->handle($view);
   }
 
   /**
   * @Rest\Get(
-  *     path = "/person/{email}/friends",
+  *     path = "/api/persons",
+  *     name = "show_persons"
+  * )
+  * @Rest\View()
+  */
+ public function showPersons(Request $request)
+ {
+       $em = $this->getDoctrine()->getManager();
+       $persons = $em->getRepository('App:Person')->findAll();
+
+       $viewHandler = $this->get('fos_rest.view_handler');
+
+       if (empty($persons)) {
+           return $this->PersonNotFound($viewHandler);
+       }
+
+       // $view = View::create($persons);
+       // $view->setFormat('json');
+       //
+       // return $viewHandler->handle($view);
+       return $persons;
+ }
+
+  /**
+  * @Rest\Get(
+  *     path = "/api/person/{email}/friends",
   *     name = "show_person_friends_by_email",
   *     requirements = {"email"="\s+"}
   * )
@@ -167,13 +235,27 @@ class PersonController extends FOSRestController
   */
  public function showPersonFriendsByEmail(Request $request)
  {
-     $em = $this->getDoctrine()->getManager();
-     $person = $em->getRepository('App::Person')->find($request->get('email'));
+        $em = $this->getDoctrine()->getManager();
+        $person = $em->getRepository('App:Person')->findOneBy(['email' => $request->get('email')]);
 
-     if (empty($person)) {
-          return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
-      }
+        $viewHandler = $this->get('fos_rest.view_handler');
+
+        if (empty($person)) {
+            return $this->PersonNotFound($viewHandler);
+        }
 
-     return $person->getFriends();
+        $view = View::create($person->getFriends());
+        $view->setFormat('json');
+
+        return $viewHandler->handle($view);
+ }
+
+ private function PersonNotFound($viewHandler) {
+     return $viewHandler->handle(View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND));
  }
+
+ private function PersonLocalisationsNotFound($viewHandler) {
+     return $viewHandler->handle(View::create(['message' => 'Person localisations not found'], Response::HTTP_NOT_FOUND));
+ }
+
 }