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 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);
*/
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')]);
*/
public function getLocalisationAction(Request $request)
{
+ //TODO: Check that the authenticated user is allowed to see the localisation
$em = $this->getDoctrine()->getManager();
- $localisations = $em->getRepository('App:Localisation')->findOneBy(['person' => $request->get('id')]);
+ $localisation = $em->getRepository('App:Localisation')->findOneBy(['person' => $request->get('id')]);
- if (empty($localisations)) {
+ if (empty($localisation)) {
return $this->PersonLocalisationNotFound();
}
- return $localisations;
+ return $localisation;
}
/**
}
/**
- * @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'));
}
return $person;
- }
-
- /**
- * @Rest\Get(
- * path = "/api/person/{email}",
- * name = "show_person_by_email",
- * requirements = {"email"="\s+"}
- * )
- * @Rest\View()
- */
- public function showPersonByEmail(Request $request)
- {
+ }
+
+ /**
+ * @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')]);
}
return $person;
- }
-
- /**
- * @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'));
}
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)) {
+ }
+
+ /**
+ * @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)
- {
+ }
+
+ 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')]);
}
return $person->getFriends();
- }
+ }
- private function PersonNotFound() {
- return View::create(['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);
- }
+ 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 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);
- }
+ private function PersonLocalisationsNotFound() {
+ return View::create(['message' => 'Person localisations not found'], Response::HTTP_NOT_FOUND);
+ }
}