Add REST ressource to get a person localisation.
[Project_proches_de_moi-server.git] / src / Controller / PersonController.php
index 785377114530cfea5c1a353db4b3fc156ef18053..b452c6360093b108b2f42b373311d7bf5cd42381 100644 (file)
@@ -82,6 +82,26 @@ class PersonController extends Controller
 
     }
 
+    /**
+     * @Rest\Get("/api/person/{id}/localisations")
+     */
+    public function getLocalisationActions(Request $request)
+    {
+        $em = $this->getDoctrine()->getManager();
+        $localisations = $em->getRepository('App:Localisation')->findBy(['person_id' => $request->get('id')]);
+
+        if (empty($localisations)) {
+            return View::create(['message' => 'Person localisation not found'], Response::HTTP_NOT_FOUND);
+        }
+
+        $view = View::create($localisation);
+        $view->setFormat('json');
+
+        $viewHandler = $this->get('fos_rest.view_handler');
+        return $viewHandler->handle($view);
+
+    }
+
     /**
      * @Rest\Post("/api/person/{id}/localisation")
      * @Rest\View(StatusCode = Response::HTTP_CREATED)