]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Controller/EntryController.php
Merge pull request #2218 from wallabag/api-delete-tags-1982
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / EntryController.php
CommitLineData
9d50517c
NL
1<?php
2
ad4d1caa 3namespace Wallabag\CoreBundle\Controller;
9d50517c 4
619cc453 5use Pagerfanta\Adapter\DoctrineORMAdapter;
671a2b88 6use Pagerfanta\Exception\OutOfRangeCurrentPageException;
9d50517c
NL
7use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
8use Symfony\Bundle\FrameworkBundle\Controller\Controller;
163eae0b 9use Symfony\Component\HttpFoundation\Request;
2863bf2a 10use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
be463487 11use Wallabag\CoreBundle\Entity\Entry;
b0b893ea 12use Wallabag\CoreBundle\Form\Type\EntryFilterType;
619cc453
JB
13use Wallabag\CoreBundle\Form\Type\EditEntryType;
14use Wallabag\CoreBundle\Form\Type\NewEntryType;
9d50517c
NL
15
16class EntryController extends Controller
17{
880a0e1c
NL
18 /**
19 * @param Entry $entry
20 */
21 private function updateEntry(Entry $entry)
22 {
23 try {
24 $entry = $this->get('wallabag_core.content_proxy')->updateEntry($entry, $entry->getUrl());
39ba51ca 25
880a0e1c
NL
26 $em = $this->getDoctrine()->getManager();
27 $em->persist($entry);
28 $em->flush();
29 } catch (\Exception $e) {
39ba51ca
JB
30 $this->get('logger')->error('Error while saving an entry', [
31 'exception' => $e,
32 'entry' => $entry,
33 ]);
34
880a0e1c
NL
35 return false;
36 }
37
38 return true;
39 }
40
b84a8055 41 /**
3d2b2d62
J
42 * @param Request $request
43 *
053b9568 44 * @Route("/new-entry", name="new_entry")
3d2b2d62 45 *
b84a8055
NL
46 * @return \Symfony\Component\HttpFoundation\Response
47 */
053b9568 48 public function addEntryFormAction(Request $request)
b84a8055 49 {
3b815d2d 50 $entry = new Entry($this->getUser());
b84a8055 51
5c895a7f 52 $form = $this->createForm(NewEntryType::class, $entry);
b84a8055
NL
53
54 $form->handleRequest($request);
55
56 if ($form->isValid()) {
b00a89e0 57 $existingEntry = $this->checkIfEntryAlreadyExists($entry);
dda57bb9 58
5a4bbcc9 59 if (false !== $existingEntry) {
dda57bb9
NL
60 $this->get('session')->getFlashBag()->add(
61 'notice',
4094ea47 62 $this->get('translator')->trans('flashes.entry.notice.entry_already_saved', ['%date%' => $existingEntry->getCreatedAt()->format('d-m-Y')])
dda57bb9
NL
63 );
64
4094ea47 65 return $this->redirect($this->generateUrl('view', ['id' => $existingEntry->getId()]));
dda57bb9
NL
66 }
67
39ba51ca
JB
68 $message = 'flashes.entry.notice.entry_saved';
69 if (false === $this->updateEntry($entry)) {
70 $message = 'flashes.entry.notice.entry_saved_failed';
71 }
72
73 $this->get('session')->getFlashBag()->add('notice', $message);
b84a8055
NL
74
75 return $this->redirect($this->generateUrl('homepage'));
76 }
77
4094ea47 78 return $this->render('WallabagCoreBundle:Entry:new_form.html.twig', [
b84a8055 79 'form' => $form->createView(),
4094ea47 80 ]);
b84a8055
NL
81 }
82
880a0e1c
NL
83 /**
84 * @param Request $request
85 *
86 * @Route("/bookmarklet", name="bookmarklet")
87 *
88 * @return \Symfony\Component\HttpFoundation\Response
89 */
5f8a7857 90 public function addEntryViaBookmarkletAction(Request $request)
880a0e1c
NL
91 {
92 $entry = new Entry($this->getUser());
93 $entry->setUrl($request->get('url'));
f652f41d 94
b00a89e0 95 if (false === $this->checkIfEntryAlreadyExists($entry)) {
f652f41d
NL
96 $this->updateEntry($entry);
97 }
880a0e1c
NL
98
99 return $this->redirect($this->generateUrl('homepage'));
100 }
101
053b9568 102 /**
053b9568
NL
103 * @Route("/new", name="new")
104 *
105 * @return \Symfony\Component\HttpFoundation\Response
106 */
4d0ec0e7 107 public function addEntryAction()
053b9568
NL
108 {
109 return $this->render('WallabagCoreBundle:Entry:new.html.twig');
110 }
111
82d6d9cb
JB
112 /**
113 * Edit an entry content.
114 *
115 * @param Request $request
116 * @param Entry $entry
117 *
118 * @Route("/edit/{id}", requirements={"id" = "\d+"}, name="edit")
119 *
120 * @return \Symfony\Component\HttpFoundation\Response
121 */
122 public function editEntryAction(Request $request, Entry $entry)
123 {
124 $this->checkUserAction($entry);
125
5c895a7f 126 $form = $this->createForm(EditEntryType::class, $entry);
82d6d9cb
JB
127
128 $form->handleRequest($request);
129
130 if ($form->isValid()) {
131 $em = $this->getDoctrine()->getManager();
132 $em->persist($entry);
133 $em->flush();
134
135 $this->get('session')->getFlashBag()->add(
136 'notice',
4204a06b 137 'flashes.entry.notice.entry_updated'
82d6d9cb
JB
138 );
139
4094ea47 140 return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()]));
82d6d9cb
JB
141 }
142
4094ea47 143 return $this->render('WallabagCoreBundle:Entry:edit.html.twig', [
82d6d9cb 144 'form' => $form->createView(),
4094ea47 145 ]);
82d6d9cb
JB
146 }
147
89659c9e
NL
148 /**
149 * Shows all entries for current user.
150 *
151 * @param Request $request
152 * @param int $page
153 *
154 * @Route("/all/list/{page}", name="all", defaults={"page" = "1"})
155 *
156 * @return \Symfony\Component\HttpFoundation\Response
157 */
158 public function showAllAction(Request $request, $page)
159 {
2b7a4889 160 return $this->showEntries('all', $request, $page);
89659c9e
NL
161 }
162
9d50517c 163 /**
4346a860 164 * Shows unread entries for current user.
163eae0b 165 *
26864574
NL
166 * @param Request $request
167 * @param int $page
168 *
9fb6ac83 169 * @Route("/unread/list/{page}", name="unread", defaults={"page" = "1"})
3d2b2d62 170 *
163eae0b 171 * @return \Symfony\Component\HttpFoundation\Response
9d50517c 172 */
26864574 173 public function showUnreadAction(Request $request, $page)
9d50517c 174 {
5c072d2b
NL
175 // load the quickstart if no entry in database
176 if ($page == 1 && $this->get('wallabag_core.entry_repository')->countAllEntriesByUsername($this->getUser()->getId()) == 0) {
177 return $this->redirect($this->generateUrl('quickstart'));
178 }
179
0ab7404f 180 return $this->showEntries('unread', $request, $page);
9d50517c 181 }
bd9f0815
NL
182
183 /**
4346a860 184 * Shows read entries for current user.
163eae0b 185 *
26864574
NL
186 * @param Request $request
187 * @param int $page
188 *
9fb6ac83 189 * @Route("/archive/list/{page}", name="archive", defaults={"page" = "1"})
3d2b2d62 190 *
163eae0b 191 * @return \Symfony\Component\HttpFoundation\Response
bd9f0815 192 */
26864574 193 public function showArchiveAction(Request $request, $page)
bd9f0815 194 {
0ab7404f
JB
195 return $this->showEntries('archive', $request, $page);
196 }
197
198 /**
199 * Shows starred entries for current user.
200 *
201 * @param Request $request
202 * @param int $page
203 *
204 * @Route("/starred/list/{page}", name="starred", defaults={"page" = "1"})
205 *
206 * @return \Symfony\Component\HttpFoundation\Response
207 */
208 public function showStarredAction(Request $request, $page)
209 {
210 return $this->showEntries('starred', $request, $page);
211 }
26864574 212
0ab7404f
JB
213 /**
214 * Global method to retrieve entries depending on the given type
215 * It returns the response to be send.
216 *
217 * @param string $type Entries type: unread, starred or archive
218 * @param Request $request
219 * @param int $page
220 *
221 * @return \Symfony\Component\HttpFoundation\Response
222 */
223 private function showEntries($type, Request $request, $page)
224 {
5c072d2b 225 $repository = $this->get('wallabag_core.entry_repository');
0ab7404f
JB
226
227 switch ($type) {
228 case 'starred':
229 $qb = $repository->getBuilderForStarredByUser($this->getUser()->getId());
230 break;
231
232 case 'archive':
233 $qb = $repository->getBuilderForArchiveByUser($this->getUser()->getId());
234 break;
235
236 case 'unread':
237 $qb = $repository->getBuilderForUnreadByUser($this->getUser()->getId());
238 break;
239
2b7a4889
NL
240 case 'all':
241 $qb = $repository->getBuilderForAllByUser($this->getUser()->getId());
242 break;
243
0ab7404f
JB
244 default:
245 throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type));
246 }
247
1d76102a 248 $form = $this->createForm(EntryFilterType::class);
9fb6ac83 249
26864574
NL
250 if ($request->query->has($form->getName())) {
251 // manually bind values from the request
252 $form->submit($request->query->get($form->getName()));
253
254 // build the query from the given form object
0ab7404f 255 $this->get('lexik_form_filter.query_builder_updater')->addFilterConditions($form, $qb);
26864574
NL
256 }
257
0ab7404f 258 $pagerAdapter = new DoctrineORMAdapter($qb->getQuery());
26864574 259
891456ba
NL
260 $entries = $this->get('wallabag_core.helper.prepare_pager_for_entries')
261 ->prepare($pagerAdapter, $page);
262
671a2b88
ML
263 try {
264 $entries->setCurrentPage($page);
265 } catch (OutOfRangeCurrentPageException $e) {
266 if ($page > 1) {
4094ea47 267 return $this->redirect($this->generateUrl($type, ['page' => $entries->getNbPages()]), 302);
671a2b88
ML
268 }
269 }
bd9f0815
NL
270
271 return $this->render(
ad4d1caa 272 'WallabagCoreBundle:Entry:entries.html.twig',
4094ea47 273 [
8ce32af6
JB
274 'form' => $form->createView(),
275 'entries' => $entries,
276 'currentPage' => $page,
4094ea47 277 ]
bd9f0815 278 );
bd9f0815
NL
279 }
280
281 /**
4346a860 282 * Shows entry content.
163eae0b 283 *
3d2b2d62
J
284 * @param Entry $entry
285 *
bd9f0815 286 * @Route("/view/{id}", requirements={"id" = "\d+"}, name="view")
3d2b2d62 287 *
163eae0b 288 * @return \Symfony\Component\HttpFoundation\Response
bd9f0815 289 */
be463487 290 public function viewAction(Entry $entry)
bd9f0815 291 {
3d2b2d62
J
292 $this->checkUserAction($entry);
293
bd9f0815 294 return $this->render(
ad4d1caa 295 'WallabagCoreBundle:Entry:entry.html.twig',
4094ea47 296 ['entry' => $entry]
bd9f0815 297 );
163eae0b
NL
298 }
299
831b02aa
JB
300 /**
301 * Reload an entry.
302 * Refetch content from the website and make it readable again.
303 *
304 * @param Entry $entry
305 *
306 * @Route("/reload/{id}", requirements={"id" = "\d+"}, name="reload_entry")
307 *
308 * @return \Symfony\Component\HttpFoundation\RedirectResponse
309 */
310 public function reloadAction(Entry $entry)
311 {
312 $this->checkUserAction($entry);
313
4204a06b 314 $message = 'flashes.entry.notice.entry_reloaded';
831b02aa 315 if (false === $this->updateEntry($entry)) {
4204a06b 316 $message = 'flashes.entry.notice.entry_reload_failed';
831b02aa
JB
317 }
318
319 $this->get('session')->getFlashBag()->add(
320 'notice',
321 $message
322 );
323
4094ea47 324 return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()]));
831b02aa
JB
325 }
326
163eae0b 327 /**
4346a860 328 * Changes read status for an entry.
163eae0b 329 *
3d2b2d62
J
330 * @param Request $request
331 * @param Entry $entry
332 *
163eae0b 333 * @Route("/archive/{id}", requirements={"id" = "\d+"}, name="archive_entry")
3d2b2d62 334 *
163eae0b
NL
335 * @return \Symfony\Component\HttpFoundation\RedirectResponse
336 */
be463487 337 public function toggleArchiveAction(Request $request, Entry $entry)
163eae0b 338 {
3d2b2d62
J
339 $this->checkUserAction($entry);
340
163eae0b
NL
341 $entry->toggleArchive();
342 $this->getDoctrine()->getManager()->flush();
343
4204a06b
JB
344 $message = 'flashes.entry.notice.entry_unarchived';
345 if ($entry->isArchived()) {
346 $message = 'flashes.entry.notice.entry_archived';
347 }
348
163eae0b
NL
349 $this->get('session')->getFlashBag()->add(
350 'notice',
4204a06b 351 $message
163eae0b
NL
352 );
353
af497a64
NL
354 $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'));
355
356 return $this->redirect($redirectUrl);
163eae0b
NL
357 }
358
359 /**
eecd7e40 360 * Changes starred status for an entry.
163eae0b 361 *
3d2b2d62
J
362 * @param Request $request
363 * @param Entry $entry
364 *
163eae0b 365 * @Route("/star/{id}", requirements={"id" = "\d+"}, name="star_entry")
3d2b2d62 366 *
163eae0b
NL
367 * @return \Symfony\Component\HttpFoundation\RedirectResponse
368 */
be463487 369 public function toggleStarAction(Request $request, Entry $entry)
163eae0b 370 {
3d2b2d62
J
371 $this->checkUserAction($entry);
372
163eae0b
NL
373 $entry->toggleStar();
374 $this->getDoctrine()->getManager()->flush();
375
4204a06b
JB
376 $message = 'flashes.entry.notice.entry_unstarred';
377 if ($entry->isStarred()) {
378 $message = 'flashes.entry.notice.entry_starred';
379 }
380
163eae0b
NL
381 $this->get('session')->getFlashBag()->add(
382 'notice',
4204a06b 383 $message
163eae0b
NL
384 );
385
af497a64
NL
386 $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'));
387
388 return $this->redirect($redirectUrl);
163eae0b
NL
389 }
390
391 /**
2863bf2a 392 * Deletes entry and redirect to the homepage or the last viewed page.
163eae0b 393 *
16a3d04c 394 * @param Entry $entry
3d2b2d62 395 *
163eae0b 396 * @Route("/delete/{id}", requirements={"id" = "\d+"}, name="delete_entry")
3d2b2d62 397 *
163eae0b
NL
398 * @return \Symfony\Component\HttpFoundation\RedirectResponse
399 */
18d5f454 400 public function deleteEntryAction(Request $request, Entry $entry)
163eae0b 401 {
3d2b2d62
J
402 $this->checkUserAction($entry);
403
2863bf2a
JB
404 // generates the view url for this entry to check for redirection later
405 // to avoid redirecting to the deleted entry. Ugh.
406 $url = $this->generateUrl(
407 'view',
4094ea47 408 ['id' => $entry->getId()],
ce0e9ec3 409 UrlGeneratorInterface::ABSOLUTE_PATH
2863bf2a
JB
410 );
411
1d147791
NL
412 $em = $this->getDoctrine()->getManager();
413 $em->remove($entry);
414 $em->flush();
163eae0b
NL
415
416 $this->get('session')->getFlashBag()->add(
417 'notice',
4204a06b 418 'flashes.entry.notice.entry_deleted'
163eae0b 419 );
bd9f0815 420
ce0e9ec3
JB
421 // don't redirect user to the deleted entry (check that the referer doesn't end with the same url)
422 $referer = $request->headers->get('referer');
423 $to = (1 !== preg_match('#'.$url.'$#i', $referer) ? $referer : null);
af497a64
NL
424
425 $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($to);
426
427 return $this->redirect($redirectUrl);
bd9f0815 428 }
3d2b2d62
J
429
430 /**
4346a860 431 * Check if the logged user can manage the given entry.
3d2b2d62
J
432 *
433 * @param Entry $entry
434 */
435 private function checkUserAction(Entry $entry)
436 {
437 if ($this->getUser()->getId() != $entry->getUser()->getId()) {
82d6d9cb 438 throw $this->createAccessDeniedException('You can not access this entry.');
3d2b2d62
J
439 }
440 }
b00a89e0
NL
441
442 /**
443 * Check for existing entry, if it exists, redirect to it with a message.
444 *
4094ea47 445 * @param Entry $entry
b00a89e0 446 *
4094ea47 447 * @return Entry|bool
b00a89e0 448 */
4094ea47 449 private function checkIfEntryAlreadyExists(Entry $entry)
b00a89e0
NL
450 {
451 return $this->get('wallabag_core.entry_repository')->findByUrlAndUserId($entry->getUrl(), $this->getUser()->getId());
452 }
9d50517c 453}