Test and fixes every REST ressources already implemented.
[Project_proches_de_moi-server.git] / src / Controller / PersonController.php
CommitLineData
dec6d031
JB
1<?php
2namespace App\Controller;
3
4use App\Entity\Person;
3d47ccc8
JB
5use App\Entity\Localisation;
6use \Datetime;
1d9d8d51 7use Symfony\Bundle\FrameworkBundle\Controller\Controller;
f0640a52 8use FOS\RestBundle\Controller\FOSRestController;
dec6d031 9use FOS\RestBundle\Controller\Annotations as Rest;
5347d06b
JB
10use FOS\RestBundle\View\ViewHandler;
11use FOS\RestBundle\View\View;
dec6d031
JB
12use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
13use Symfony\Component\HttpFoundation\Request;
14use Symfony\Component\HttpFoundation\Response;
15use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
16
f0640a52 17class PersonController extends FOSRestController
dec6d031
JB
18{
19 /**
20 * @Rest\Post(
f0640a52 21 * path = "/api/person/register",
dec6d031
JB
22 * name = "create_person"
23 * )
24 * @Rest\View(StatusCode = Response::HTTP_CREATED)
dec6d031 25 */
f0640a52 26 public function createPersonAction(Request $request)
3d47ccc8
JB
27 {
28 $person = new Person();
f0640a52
JB
29 $person->setFirstname($request->get('firstname'));
30 $person->setLastName($request->get('lastname'));
31 $person->setEmail($request->get('email'));
32 $person->setPassword($request->get('password'));
33 $person->setOnline(false);
34
dec6d031
JB
35 $em = $this->getDoctrine()->getManager();
36
37 $em->persist($person);
38 $em->flush();
39
40 return $this->view($person, Response::HTTP_CREATED, ['Location' => $this->generateUrl('show_person', ['id' => $person->getId(), UrlGeneratorInterface::ABSOLUTE_URL])]);
41 }
42
43 /**
98f85207 44 * @Rest\Delete("/api/person/{id}")
dec6d031
JB
45 * @Rest\View(statusCode = Response::HTTP_NO_CONTENT)
46 */
47 public function removePersonAction(Request $request)
48 {
3d47ccc8 49 //TODO: check that the authenticated user have the same id
dec6d031 50 $em = $this->getDoctrine()->getManager();
282545e5 51 $person = $em->getRepository('App:Person')->find($request->get('id'));
3d47ccc8
JB
52 $friends = $em->getRepository('App:Friendship')->findBy(['person' => $request->get('id')]);
53 $friends_with_me = $em->getRepository('App:Friendship')->findBy(['friend' => $request->get('id')]);
54 $localisations = $em->getRepository('App:Localisation')->findBy(['person' => $request->get('id')]);
dec6d031 55
3d47ccc8
JB
56 if (!empty($localisations)) {
57 foreach ($localisations as $localisation) {
58 $em->remove($localisation);
59 }
60 $em->flush();
61 }
62
63 if (!empty($friends)) {
64 foreach ($friends as $friend) {
65 $em->remove($friend);
66 }
67 $em->flush();
68 }
69
70 if (!empty($friends_with_me)) {
71 foreach ($friends_with_me as $friend) {
72 $em->remove($friend);
73 }
dec6d031
JB
74 $em->flush();
75 }
3d47ccc8
JB
76
77 if (!empty($person)) {
78 $em->remove($person);
79 $em->flush();
80 }
dec6d031
JB
81 }
82
83 /**
84 * @Rest\Put(
3d47ccc8 85 * path = "/api/person/{id}",
dec6d031
JB
86 * name = "update_person"
87 * )
88 * @Rest\View(StatusCode = Response::HTTP_CREATED)
89 */
90 public function updatePersonAction(Request $request)
91 {
3d47ccc8 92 //TODO: check that the authenticated user have the same id
dec6d031 93 $em = $this->getDoctrine()->getManager();
282545e5 94 $person = $em->getRepository('App:Person')->find($request->get('id'));
dec6d031 95
51963d7f 96 if (empty($person)) {
1faa29dc 97 return $this->PersonNotFound();
dec6d031
JB
98 }
99
100 $person->setFirstName($request->get('firstname'));
101 $person->setLastName($request->get('lastname'));
102 $person->setEmail($request->get('email'));
103
104 $em->merge($person);
105 $em->flush();
106
107 return $this->view($person, Response::HTTP_CREATED, ['Location' => $this->generateUrl('show_person', ['id' => $person->getId(), UrlGeneratorInterface::ABSOLUTE_URL])]);
108 }
109
110 /**
84fd6c7f
JB
111 * @Rest\Get("/api/person/{id}/localisations")
112 * @Rest\View()
dec6d031 113 */
84fd6c7f 114 public function getLocalisationsAction(Request $request)
dec6d031 115 {
f0640a52 116 //TODO: Check that the authenticated user is allowed to see the localisation
84fd6c7f
JB
117 $em = $this->getDoctrine()->getManager();
118 $localisations = $em->getRepository('App:Localisation')->findBy(['person' => $request->get('id')]);
dec6d031 119
84fd6c7f
JB
120 if (empty($localisations)) {
121 return $this->PersonLocalisationsNotFound();
122 }
123
124 return $localisations;
dec6d031
JB
125 }
126
4c4feb3e 127 /**
84fd6c7f
JB
128 * @Rest\Get("/api/person/{id}/localisation")
129 * @Rest\View()
4c4feb3e 130 */
84fd6c7f 131 public function getLocalisationAction(Request $request)
4c4feb3e 132 {
f0640a52 133 //TODO: Check that the authenticated user is allowed to see the localisation
4c4feb3e 134 $em = $this->getDoctrine()->getManager();
f0640a52 135 $localisation = $em->getRepository('App:Localisation')->findOneBy(['person' => $request->get('id')]);
4c4feb3e 136
f0640a52 137 if (empty($localisation)) {
84fd6c7f 138 return $this->PersonLocalisationNotFound();
4c4feb3e
JB
139 }
140
f0640a52 141 return $localisation;
4c4feb3e
JB
142 }
143
dec6d031 144 /**
98f85207 145 * @Rest\Post("/api/person/{id}/localisation")
43f58db4 146 * @Rest\View(StatusCode = Response::HTTP_CREATED)
dec6d031
JB
147 */
148 public function updateLocalisationAction(Request $request)
149 {
3d47ccc8
JB
150 //TODO: Check that the authenticated user is allowed to update the localisation
151 $em = $this->getDoctrine()->getManager();
152
153 $person = $em->getRepository('App:Person')->find($request->get('id'));
154
155 if (empty($person)) {
156 return $this->PersonNotFound();
157 }
158
159 $datetime = new DateTime($request->get('timestamp'));
160
dec6d031 161 $localisation = new Localisation();
3d47ccc8
JB
162 $localisation->setPerson($person);
163 $localisation->setTimestamp($datetime);
dec6d031
JB
164 $localisation->setLatitude($request->get('latitude'));
165 $localisation->setLongitude($request->get('longitude'));
166
dec6d031
JB
167 $em->persist($localisation);
168 $em->flush();
169 }
170
171 /**
f0640a52
JB
172 * @Rest\Get(
173 * path = "/api/person/{id}",
174 * name = "show_person",
175 * requirements = {"id"="\d+"}
176 * )
177 * @Rest\View()
178 */
179 public function showPerson(Request $request)
180 {
5347d06b
JB
181 $em = $this->getDoctrine()->getManager();
182 $person = $em->getRepository('App:Person')->find($request->get('id'));
51963d7f 183
5347d06b 184 if (empty($person)) {
1faa29dc 185 return $this->PersonNotFound();
51963d7f
JB
186 }
187
1faa29dc 188 return $person;
f0640a52
JB
189 }
190
f0640a52
JB
191 /**
192 * @Rest\Get(
193 * path = "/api/person/{id}/friends",
194 * name = "show_person_friends",
195 * requirements = {"id"="\d+"}
196 * )
197 * @Rest\View()
198 */
199 public function showPersonFriends(Request $request)
200 {
5347d06b
JB
201 $em = $this->getDoctrine()->getManager();
202 $person = $em->getRepository('App:Person')->find($request->get('id'));
203
204 if (empty($person)) {
1faa29dc 205 return $this->PersonNotFound();
5347d06b 206 }
51963d7f 207
1faa29dc 208 return $person->getFriends();
f0640a52
JB
209 }
210
211 /**
212 * @Rest\Get(
213 * path = "/api/persons",
214 * name = "show_persons"
215 * )
216 * @Rest\View()
217 */
218 public function showPersons(Request $request)
219 {
220 $em = $this->getDoctrine()->getManager();
221 $persons = $em->getRepository('App:Person')->findAll();
222
223 if (empty($persons)) {
84fd6c7f 224 return $this->PersonsNotFound();
f0640a52
JB
225 }
226
227 return $persons;
228 }
229
f0640a52
JB
230 private function PersonNotFound() {
231 return View::create(['message' => 'Person not found'], Response::HTTP_NOT_FOUND);
232 }
b6077893 233
f0640a52
JB
234 private function PersonsNotFound() {
235 return View::create(['message' => 'Persons not found'], Response::HTTP_NOT_FOUND);
236 }
84fd6c7f 237
f0640a52
JB
238 private function PersonLocalisationNotFound() {
239 return View::create(['message' => 'Person localisation not found'], Response::HTTP_NOT_FOUND);
240 }
84fd6c7f 241
f0640a52
JB
242 private function PersonLocalisationsNotFound() {
243 return View::create(['message' => 'Person localisations not found'], Response::HTTP_NOT_FOUND);
244 }
b6077893 245
dec6d031 246}