Only expose relevant attributes.
[Project_proches_de_moi-server.git] / src / Controller / PersonController.php
index 806d2124f970c745192e3396e0d2cdd971591735..734f29c9eca165ade74de8773ffde5970a07cb1a 100644 (file)
@@ -2,14 +2,16 @@
 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;
 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\Post(
@@ -58,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'));
@@ -72,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;
     }
 
     /**
@@ -98,23 +124,23 @@ class PersonController extends FOSRestController
     }
 
     /**
-    * @Rest\View()
     * @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'));
+        $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);
+        if (empty($person)) {
+            return $this->PersonNotFound();
         }
 
-       return $person;
+        return $person;
    }
 
    /**
@@ -127,14 +153,14 @@ 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);
-       }
+        if (empty($person)) {
+            return $this->PersonNotFound();
+        }
 
-      return $person;
+        return $person;
   }
 
    /**
@@ -147,16 +173,35 @@ 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);
-       }
+        if (empty($person)) {
+            return $this->PersonNotFound();
+        }
 
-      return $person->getFriends();
+        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",
@@ -167,13 +212,30 @@ 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 $this->PersonNotFound();
+        }
+
+        return $person->getFriends();
+ }
 
-     if (empty($person)) {
-          return new JsonResponse(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
-      }
+ 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);
+ }
 
-     return $person->getFriends();
+ 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);
+ }
+
 }