Test and fixes every REST ressources already implemented.
[Project_proches_de_moi-server.git] / src / Controller / PersonController.php
index f2e73c132454b5e4d3bf98fc763ab7f121b7fe0f..9ef74692683fd17976ef9ed4619943d28ae63e6a 100644 (file)
@@ -2,8 +2,10 @@
 namespace App\Controller;
 
 use App\Entity\Person;
+use App\Entity\Localisation;
+use \Datetime;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
-#use FOS\RestBundle\Controller\FOSRestController;
+use FOS\RestBundle\Controller\FOSRestController;
 use FOS\RestBundle\Controller\Annotations as Rest;
 use FOS\RestBundle\View\ViewHandler;
 use FOS\RestBundle\View\View;
@@ -12,18 +14,24 @@ use Symfony\Component\HttpFoundation\Request;
 use Symfony\Component\HttpFoundation\Response;
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
 
-class PersonController extends Controller
+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);
@@ -38,30 +46,55 @@ class PersonController extends Controller
      */
     public function removePersonAction(Request $request)
     {
+        //TODO: check that the authenticated user have the same id
         $em = $this->getDoctrine()->getManager();
         $person = $em->getRepository('App:Person')->find($request->get('id'));
+        $friends = $em->getRepository('App:Friendship')->findBy(['person' => $request->get('id')]);
+        $friends_with_me = $em->getRepository('App:Friendship')->findBy(['friend' => $request->get('id')]);
+        $localisations = $em->getRepository('App:Localisation')->findBy(['person' => $request->get('id')]);
 
-        if (!empty($person)) {
-            $em->remove($person);
+        if (!empty($localisations)) {
+            foreach ($localisations as $localisation) {
+                $em->remove($localisation);
+            }
             $em->flush();
         }
-        //TODO: remove localisation and friendship
+
+        if (!empty($friends)) {
+            foreach ($friends as $friend) {
+                $em->remove($friend);
+            }
+            $em->flush();
+        }
+
+        if (!empty($friends_with_me)) {
+            foreach ($friends_with_me as $friend) {
+                $em->remove($friend);
+            }
+            $em->flush();
+        }
+
+        if (!empty($person)) {
+             $em->remove($person);
+             $em->flush();
+        }
     }
 
     /**
      * @Rest\Put(
-     *     path = "/api/person/{id}/update",
+     *     path = "/api/person/{id}",
      *     name = "update_person"
      * )
      * @Rest\View(StatusCode = Response::HTTP_CREATED)
      */
     public function updatePersonAction(Request $request)
     {
+        //TODO: check that the authenticated user have the same id
         $em = $this->getDoctrine()->getManager();
         $person = $em->getRepository('App:Person')->find($request->get('id'));
 
         if (empty($person)) {
-            return View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
+            return $this->PersonNotFound();
         }
 
         $person->setFirstName($request->get('firstname'));
@@ -74,32 +107,38 @@ class PersonController extends Controller
         return $this->view($person, Response::HTTP_CREATED, ['Location' => $this->generateUrl('show_person', ['id' => $person->getId(), UrlGeneratorInterface::ABSOLUTE_URL])]);
     }
 
-    /**
-     * @Rest\Get("/api/person/{id}/friends/localisation")
-     */
-    public function getFriendsLocalisationAction(Request $request)
-    {
-
-    }
-
     /**
      * @Rest\Get("/api/person/{id}/localisations")
+     * @Rest\View()
      */
     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 View::create(['message' => 'Person localisations not found'], Response::HTTP_NOT_FOUND);
+            return $this->PersonLocalisationsNotFound();
         }
 
-        $view = View::create($localisations);
-        $view->setFormat('json');
+        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')]);
 
-        $viewHandler = $this->get('fos_rest.view_handler');
-        return $viewHandler->handle($view);
+        if (empty($localisation)) {
+            return $this->PersonLocalisationNotFound();
+        }
 
+        return $localisation;
     }
 
     /**
@@ -108,111 +147,100 @@ class PersonController extends Controller
      */
     public function updateLocalisationAction(Request $request)
     {
+        //TODO: Check that the authenticated user is allowed to update the localisation
+        $em = $this->getDoctrine()->getManager();
+
+        $person = $em->getRepository('App:Person')->find($request->get('id'));
+
+        if (empty($person)) {
+            return $this->PersonNotFound();
+        }
+
+        $datetime = new DateTime($request->get('timestamp'));
+
         $localisation = new Localisation();
-        $localisation->setPerson($request->get('id'));
-        $localisation->setTimestamp($request->get('timestamp'));
+        $localisation->setPerson($person);
+        $localisation->setTimestamp($datetime);
         $localisation->setLatitude($request->get('latitude'));
         $localisation->setLongitude($request->get('longitude'));
 
-        $em = $this->getDoctrine()->getManager();
-
         $em->persist($localisation);
         $em->flush();
     }
 
     /**
-    * @Rest\Get(
-    *     path = "/api/person/{id}",
-    *     name = "show_person",
-    *     requirements = {"id"="\d+"}
-    * )
-    * @Rest\View()
-    */
-   public function showPerson(Request $request)
-   {
+     * @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 View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
+            return $this->PersonNotFound();
         }
 
-        $view = View::create($person);
-        $view->setFormat('json');
-
-        $viewHandler = $this->get('fos_rest.view_handler');
-        return $viewHandler->handle($view);
-   }
-
-   /**
-   * @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 View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
-        }
+        return $person;
+    }
 
-        $view = View::create($person);
-        $view->setFormat('json');
-
-        $viewHandler = $this->get('fos_rest.view_handler');
-        return $viewHandler->handle($view);
-  }
-
-   /**
-   * @Rest\Get(
-   *     path = "/api/person/{id}/friends",
-   *     name = "show_person_friends",
-   *     requirements = {"id"="\d+"}
-   * )
-   * @Rest\View()
-   */
-  public function showPersonFriends(Request $request)
-  {
+    /**
+     * @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 View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
+            return $this->PersonNotFound();
         }
 
-        $view = View::create($person->getFriends());
-        $view->setFormat('json');
-
-        $viewHandler = $this->get('fos_rest.view_handler');
-        return $viewHandler->handle($view);
-  }
-
-  /**
-  * @Rest\Get(
-  *     path = "/api/person/{email}/friends",
-  *     name = "show_person_friends_by_email",
-  *     requirements = {"email"="\s+"}
-  * )
-  * @Rest\View()
-  */
- public function showPersonFriendsByEmail(Request $request)
- {
+        return $person->getFriends();
+    }
+
+    /**
+     * @Rest\Get(
+     *     path = "/api/persons",
+     *     name = "show_persons"
+     * )
+     * @Rest\View()
+     */
+    public function showPersons(Request $request)
+    {
         $em = $this->getDoctrine()->getManager();
-        $person = $em->getRepository('App:Person')->find($request->get('email'));
+        $persons = $em->getRepository('App:Person')->findAll();
 
-        if (empty($person)) {
-            return View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
+        if (empty($persons)) {
+           return $this->PersonsNotFound();
         }
 
-        $view = View::create($person->getFriends());
-        $view->setFormat('json');
+        return $persons;
+    }
+
+    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);
+    }
 
-        $viewHandler = $this->get('fos_rest.view_handler');
-        return $viewHandler->handle($view);
- }
 }