]>
Commit | Line | Data |
---|---|---|
9d50517c NL |
1 | <?php |
2 | ||
ad4d1caa | 3 | namespace Wallabag\CoreBundle\Controller; |
9d50517c | 4 | |
619cc453 | 5 | use Pagerfanta\Adapter\DoctrineORMAdapter; |
671a2b88 | 6 | use Pagerfanta\Exception\OutOfRangeCurrentPageException; |
9d50517c NL |
7 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
8 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
163eae0b | 9 | use Symfony\Component\HttpFoundation\Request; |
2863bf2a | 10 | use Symfony\Component\Routing\Generator\UrlGeneratorInterface; |
be463487 | 11 | use Wallabag\CoreBundle\Entity\Entry; |
b0b893ea | 12 | use Wallabag\CoreBundle\Form\Type\EntryFilterType; |
619cc453 JB |
13 | use Wallabag\CoreBundle\Form\Type\EditEntryType; |
14 | use Wallabag\CoreBundle\Form\Type\NewEntryType; | |
222e09f1 | 15 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache; |
e0597476 JB |
16 | use Wallabag\CoreBundle\Event\EntrySavedEvent; |
17 | use Wallabag\CoreBundle\Event\EntryDeletedEvent; | |
ee122a75 | 18 | use Wallabag\CoreBundle\Form\Type\SearchEntryType; |
9d50517c NL |
19 | |
20 | class EntryController extends Controller | |
21 | { | |
ee122a75 NL |
22 | /** |
23 | * @param Request $request | |
24 | * @param int $page | |
25 | * | |
26 | * @Route("/search/{page}", name="search", defaults={"page" = "1"}) | |
27 | * | |
28 | * @return \Symfony\Component\HttpFoundation\Response | |
29 | */ | |
49b042df | 30 | public function searchFormAction(Request $request, $page, $currentRoute) |
ee122a75 NL |
31 | { |
32 | $form = $this->createForm(SearchEntryType::class); | |
33 | ||
34 | $form->handleRequest($request); | |
35 | ||
36 | if ($form->isValid()) { | |
37 | return $this->showEntries('search', $request, $page); | |
38 | } | |
39 | ||
40 | return $this->render('WallabagCoreBundle:Entry:search_form.html.twig', [ | |
41 | 'form' => $form->createView(), | |
49b042df | 42 | 'currentRoute' => $currentRoute, |
ee122a75 NL |
43 | ]); |
44 | } | |
45 | ||
880a0e1c | 46 | /** |
59b97fae JB |
47 | * Fetch content and update entry. |
48 | * In case it fails, entry will return to avod loosing the data. | |
49 | * | |
50 | * @param Entry $entry | |
51 | * @param string $prefixMessage Should be the translation key: entry_saved or entry_reloaded | |
52 | * | |
53 | * @return Entry | |
880a0e1c | 54 | */ |
59b97fae | 55 | private function updateEntry(Entry $entry, $prefixMessage = 'entry_saved') |
880a0e1c | 56 | { |
59b97fae JB |
57 | // put default title in case of fetching content failed |
58 | $entry->setTitle('No title found'); | |
59 | ||
60 | $message = 'flashes.entry.notice.'.$prefixMessage; | |
61 | ||
880a0e1c NL |
62 | try { |
63 | $entry = $this->get('wallabag_core.content_proxy')->updateEntry($entry, $entry->getUrl()); | |
880a0e1c | 64 | } catch (\Exception $e) { |
39ba51ca JB |
65 | $this->get('logger')->error('Error while saving an entry', [ |
66 | 'exception' => $e, | |
67 | 'entry' => $entry, | |
68 | ]); | |
69 | ||
59b97fae | 70 | $message = 'flashes.entry.notice.'.$prefixMessage.'_failed'; |
880a0e1c NL |
71 | } |
72 | ||
59b97fae JB |
73 | $this->get('session')->getFlashBag()->add('notice', $message); |
74 | ||
75 | return $entry; | |
880a0e1c NL |
76 | } |
77 | ||
b84a8055 | 78 | /** |
3d2b2d62 J |
79 | * @param Request $request |
80 | * | |
053b9568 | 81 | * @Route("/new-entry", name="new_entry") |
3d2b2d62 | 82 | * |
b84a8055 NL |
83 | * @return \Symfony\Component\HttpFoundation\Response |
84 | */ | |
053b9568 | 85 | public function addEntryFormAction(Request $request) |
b84a8055 | 86 | { |
3b815d2d | 87 | $entry = new Entry($this->getUser()); |
b84a8055 | 88 | |
5c895a7f | 89 | $form = $this->createForm(NewEntryType::class, $entry); |
b84a8055 NL |
90 | |
91 | $form->handleRequest($request); | |
92 | ||
93 | if ($form->isValid()) { | |
b00a89e0 | 94 | $existingEntry = $this->checkIfEntryAlreadyExists($entry); |
dda57bb9 | 95 | |
5a4bbcc9 | 96 | if (false !== $existingEntry) { |
dda57bb9 NL |
97 | $this->get('session')->getFlashBag()->add( |
98 | 'notice', | |
4094ea47 | 99 | $this->get('translator')->trans('flashes.entry.notice.entry_already_saved', ['%date%' => $existingEntry->getCreatedAt()->format('d-m-Y')]) |
dda57bb9 NL |
100 | ); |
101 | ||
4094ea47 | 102 | return $this->redirect($this->generateUrl('view', ['id' => $existingEntry->getId()])); |
dda57bb9 NL |
103 | } |
104 | ||
59b97fae | 105 | $this->updateEntry($entry); |
39ba51ca | 106 | |
59b97fae JB |
107 | $em = $this->getDoctrine()->getManager(); |
108 | $em->persist($entry); | |
109 | $em->flush(); | |
b84a8055 | 110 | |
e0597476 JB |
111 | // entry saved, dispatch event about it! |
112 | $this->get('event_dispatcher')->dispatch(EntrySavedEvent::NAME, new EntrySavedEvent($entry)); | |
113 | ||
b84a8055 NL |
114 | return $this->redirect($this->generateUrl('homepage')); |
115 | } | |
116 | ||
4094ea47 | 117 | return $this->render('WallabagCoreBundle:Entry:new_form.html.twig', [ |
b84a8055 | 118 | 'form' => $form->createView(), |
4094ea47 | 119 | ]); |
b84a8055 NL |
120 | } |
121 | ||
880a0e1c NL |
122 | /** |
123 | * @param Request $request | |
124 | * | |
125 | * @Route("/bookmarklet", name="bookmarklet") | |
126 | * | |
127 | * @return \Symfony\Component\HttpFoundation\Response | |
128 | */ | |
5f8a7857 | 129 | public function addEntryViaBookmarkletAction(Request $request) |
880a0e1c NL |
130 | { |
131 | $entry = new Entry($this->getUser()); | |
132 | $entry->setUrl($request->get('url')); | |
f652f41d | 133 | |
b00a89e0 | 134 | if (false === $this->checkIfEntryAlreadyExists($entry)) { |
f652f41d | 135 | $this->updateEntry($entry); |
59b97fae JB |
136 | |
137 | $em = $this->getDoctrine()->getManager(); | |
138 | $em->persist($entry); | |
139 | $em->flush(); | |
e0597476 JB |
140 | |
141 | // entry saved, dispatch event about it! | |
142 | $this->get('event_dispatcher')->dispatch(EntrySavedEvent::NAME, new EntrySavedEvent($entry)); | |
f652f41d | 143 | } |
880a0e1c NL |
144 | |
145 | return $this->redirect($this->generateUrl('homepage')); | |
146 | } | |
147 | ||
053b9568 | 148 | /** |
053b9568 NL |
149 | * @Route("/new", name="new") |
150 | * | |
151 | * @return \Symfony\Component\HttpFoundation\Response | |
152 | */ | |
4d0ec0e7 | 153 | public function addEntryAction() |
053b9568 NL |
154 | { |
155 | return $this->render('WallabagCoreBundle:Entry:new.html.twig'); | |
156 | } | |
157 | ||
82d6d9cb JB |
158 | /** |
159 | * Edit an entry content. | |
160 | * | |
161 | * @param Request $request | |
162 | * @param Entry $entry | |
163 | * | |
164 | * @Route("/edit/{id}", requirements={"id" = "\d+"}, name="edit") | |
165 | * | |
166 | * @return \Symfony\Component\HttpFoundation\Response | |
167 | */ | |
168 | public function editEntryAction(Request $request, Entry $entry) | |
169 | { | |
170 | $this->checkUserAction($entry); | |
171 | ||
5c895a7f | 172 | $form = $this->createForm(EditEntryType::class, $entry); |
82d6d9cb JB |
173 | |
174 | $form->handleRequest($request); | |
175 | ||
176 | if ($form->isValid()) { | |
177 | $em = $this->getDoctrine()->getManager(); | |
178 | $em->persist($entry); | |
179 | $em->flush(); | |
180 | ||
181 | $this->get('session')->getFlashBag()->add( | |
182 | 'notice', | |
4204a06b | 183 | 'flashes.entry.notice.entry_updated' |
82d6d9cb JB |
184 | ); |
185 | ||
4094ea47 | 186 | return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()])); |
82d6d9cb JB |
187 | } |
188 | ||
4094ea47 | 189 | return $this->render('WallabagCoreBundle:Entry:edit.html.twig', [ |
82d6d9cb | 190 | 'form' => $form->createView(), |
4094ea47 | 191 | ]); |
82d6d9cb JB |
192 | } |
193 | ||
89659c9e NL |
194 | /** |
195 | * Shows all entries for current user. | |
196 | * | |
197 | * @param Request $request | |
198 | * @param int $page | |
199 | * | |
200 | * @Route("/all/list/{page}", name="all", defaults={"page" = "1"}) | |
201 | * | |
202 | * @return \Symfony\Component\HttpFoundation\Response | |
203 | */ | |
204 | public function showAllAction(Request $request, $page) | |
205 | { | |
2b7a4889 | 206 | return $this->showEntries('all', $request, $page); |
89659c9e NL |
207 | } |
208 | ||
9d50517c | 209 | /** |
4346a860 | 210 | * Shows unread entries for current user. |
163eae0b | 211 | * |
26864574 NL |
212 | * @param Request $request |
213 | * @param int $page | |
214 | * | |
9fb6ac83 | 215 | * @Route("/unread/list/{page}", name="unread", defaults={"page" = "1"}) |
3d2b2d62 | 216 | * |
163eae0b | 217 | * @return \Symfony\Component\HttpFoundation\Response |
9d50517c | 218 | */ |
26864574 | 219 | public function showUnreadAction(Request $request, $page) |
9d50517c | 220 | { |
5c072d2b NL |
221 | // load the quickstart if no entry in database |
222 | if ($page == 1 && $this->get('wallabag_core.entry_repository')->countAllEntriesByUsername($this->getUser()->getId()) == 0) { | |
223 | return $this->redirect($this->generateUrl('quickstart')); | |
224 | } | |
225 | ||
0ab7404f | 226 | return $this->showEntries('unread', $request, $page); |
9d50517c | 227 | } |
bd9f0815 NL |
228 | |
229 | /** | |
4346a860 | 230 | * Shows read entries for current user. |
163eae0b | 231 | * |
26864574 NL |
232 | * @param Request $request |
233 | * @param int $page | |
234 | * | |
9fb6ac83 | 235 | * @Route("/archive/list/{page}", name="archive", defaults={"page" = "1"}) |
3d2b2d62 | 236 | * |
163eae0b | 237 | * @return \Symfony\Component\HttpFoundation\Response |
bd9f0815 | 238 | */ |
26864574 | 239 | public function showArchiveAction(Request $request, $page) |
bd9f0815 | 240 | { |
0ab7404f JB |
241 | return $this->showEntries('archive', $request, $page); |
242 | } | |
243 | ||
244 | /** | |
245 | * Shows starred entries for current user. | |
246 | * | |
247 | * @param Request $request | |
248 | * @param int $page | |
249 | * | |
250 | * @Route("/starred/list/{page}", name="starred", defaults={"page" = "1"}) | |
251 | * | |
252 | * @return \Symfony\Component\HttpFoundation\Response | |
253 | */ | |
254 | public function showStarredAction(Request $request, $page) | |
255 | { | |
256 | return $this->showEntries('starred', $request, $page); | |
257 | } | |
26864574 | 258 | |
0ab7404f JB |
259 | /** |
260 | * Global method to retrieve entries depending on the given type | |
261 | * It returns the response to be send. | |
262 | * | |
263 | * @param string $type Entries type: unread, starred or archive | |
264 | * @param Request $request | |
265 | * @param int $page | |
266 | * | |
267 | * @return \Symfony\Component\HttpFoundation\Response | |
268 | */ | |
269 | private function showEntries($type, Request $request, $page) | |
270 | { | |
5c072d2b | 271 | $repository = $this->get('wallabag_core.entry_repository'); |
ee122a75 | 272 | $searchTerm = (isset($request->get('search_entry')['term']) ? $request->get('search_entry')['term'] : ''); |
49b042df | 273 | $currentRoute = (!is_null($request->get('currentRoute')) ? $request->get('currentRoute') : ''); |
0ab7404f JB |
274 | |
275 | switch ($type) { | |
ee122a75 | 276 | case 'search': |
49b042df | 277 | $qb = $repository->getBuilderForSearchByUser($this->getUser()->getId(), $searchTerm, $currentRoute); |
ee122a75 NL |
278 | |
279 | break; | |
b6520f0b NL |
280 | case 'untagged': |
281 | $qb = $repository->getBuilderForUntaggedByUser($this->getUser()->getId()); | |
282 | ||
283 | break; | |
0ab7404f JB |
284 | case 'starred': |
285 | $qb = $repository->getBuilderForStarredByUser($this->getUser()->getId()); | |
286 | break; | |
287 | ||
288 | case 'archive': | |
289 | $qb = $repository->getBuilderForArchiveByUser($this->getUser()->getId()); | |
290 | break; | |
291 | ||
292 | case 'unread': | |
293 | $qb = $repository->getBuilderForUnreadByUser($this->getUser()->getId()); | |
294 | break; | |
295 | ||
2b7a4889 NL |
296 | case 'all': |
297 | $qb = $repository->getBuilderForAllByUser($this->getUser()->getId()); | |
298 | break; | |
299 | ||
0ab7404f JB |
300 | default: |
301 | throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type)); | |
302 | } | |
303 | ||
1d76102a | 304 | $form = $this->createForm(EntryFilterType::class); |
9fb6ac83 | 305 | |
26864574 NL |
306 | if ($request->query->has($form->getName())) { |
307 | // manually bind values from the request | |
308 | $form->submit($request->query->get($form->getName())); | |
309 | ||
310 | // build the query from the given form object | |
0ab7404f | 311 | $this->get('lexik_form_filter.query_builder_updater')->addFilterConditions($form, $qb); |
26864574 NL |
312 | } |
313 | ||
0ab7404f | 314 | $pagerAdapter = new DoctrineORMAdapter($qb->getQuery()); |
26864574 | 315 | |
891456ba NL |
316 | $entries = $this->get('wallabag_core.helper.prepare_pager_for_entries') |
317 | ->prepare($pagerAdapter, $page); | |
318 | ||
671a2b88 ML |
319 | try { |
320 | $entries->setCurrentPage($page); | |
321 | } catch (OutOfRangeCurrentPageException $e) { | |
322 | if ($page > 1) { | |
4094ea47 | 323 | return $this->redirect($this->generateUrl($type, ['page' => $entries->getNbPages()]), 302); |
671a2b88 ML |
324 | } |
325 | } | |
bd9f0815 NL |
326 | |
327 | return $this->render( | |
ee122a75 | 328 | 'WallabagCoreBundle:Entry:entries.html.twig', [ |
8ce32af6 JB |
329 | 'form' => $form->createView(), |
330 | 'entries' => $entries, | |
331 | 'currentPage' => $page, | |
ee122a75 | 332 | 'searchTerm' => $searchTerm, |
4094ea47 | 333 | ] |
bd9f0815 | 334 | ); |
bd9f0815 NL |
335 | } |
336 | ||
337 | /** | |
4346a860 | 338 | * Shows entry content. |
163eae0b | 339 | * |
3d2b2d62 J |
340 | * @param Entry $entry |
341 | * | |
bd9f0815 | 342 | * @Route("/view/{id}", requirements={"id" = "\d+"}, name="view") |
3d2b2d62 | 343 | * |
163eae0b | 344 | * @return \Symfony\Component\HttpFoundation\Response |
bd9f0815 | 345 | */ |
be463487 | 346 | public function viewAction(Entry $entry) |
bd9f0815 | 347 | { |
3d2b2d62 J |
348 | $this->checkUserAction($entry); |
349 | ||
bd9f0815 | 350 | return $this->render( |
ad4d1caa | 351 | 'WallabagCoreBundle:Entry:entry.html.twig', |
4094ea47 | 352 | ['entry' => $entry] |
bd9f0815 | 353 | ); |
163eae0b NL |
354 | } |
355 | ||
831b02aa JB |
356 | /** |
357 | * Reload an entry. | |
358 | * Refetch content from the website and make it readable again. | |
359 | * | |
360 | * @param Entry $entry | |
361 | * | |
362 | * @Route("/reload/{id}", requirements={"id" = "\d+"}, name="reload_entry") | |
363 | * | |
364 | * @return \Symfony\Component\HttpFoundation\RedirectResponse | |
365 | */ | |
366 | public function reloadAction(Entry $entry) | |
367 | { | |
368 | $this->checkUserAction($entry); | |
369 | ||
59b97fae | 370 | $this->updateEntry($entry, 'entry_reloaded'); |
831b02aa | 371 | |
2297d60f JB |
372 | // if refreshing entry failed, don't save it |
373 | if ($this->getParameter('wallabag_core.fetching_error_message') === $entry->getContent()) { | |
374 | $bag = $this->get('session')->getFlashBag(); | |
375 | $bag->clear(); | |
376 | $bag->add('notice', 'flashes.entry.notice.entry_reloaded_failed'); | |
377 | ||
378 | return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()])); | |
379 | } | |
380 | ||
59b97fae JB |
381 | $em = $this->getDoctrine()->getManager(); |
382 | $em->persist($entry); | |
383 | $em->flush(); | |
831b02aa | 384 | |
e0597476 JB |
385 | // entry saved, dispatch event about it! |
386 | $this->get('event_dispatcher')->dispatch(EntrySavedEvent::NAME, new EntrySavedEvent($entry)); | |
387 | ||
4094ea47 | 388 | return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()])); |
831b02aa JB |
389 | } |
390 | ||
163eae0b | 391 | /** |
4346a860 | 392 | * Changes read status for an entry. |
163eae0b | 393 | * |
3d2b2d62 J |
394 | * @param Request $request |
395 | * @param Entry $entry | |
396 | * | |
163eae0b | 397 | * @Route("/archive/{id}", requirements={"id" = "\d+"}, name="archive_entry") |
3d2b2d62 | 398 | * |
163eae0b NL |
399 | * @return \Symfony\Component\HttpFoundation\RedirectResponse |
400 | */ | |
be463487 | 401 | public function toggleArchiveAction(Request $request, Entry $entry) |
163eae0b | 402 | { |
3d2b2d62 J |
403 | $this->checkUserAction($entry); |
404 | ||
163eae0b NL |
405 | $entry->toggleArchive(); |
406 | $this->getDoctrine()->getManager()->flush(); | |
407 | ||
4204a06b JB |
408 | $message = 'flashes.entry.notice.entry_unarchived'; |
409 | if ($entry->isArchived()) { | |
410 | $message = 'flashes.entry.notice.entry_archived'; | |
411 | } | |
412 | ||
163eae0b NL |
413 | $this->get('session')->getFlashBag()->add( |
414 | 'notice', | |
4204a06b | 415 | $message |
163eae0b NL |
416 | ); |
417 | ||
af497a64 NL |
418 | $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer')); |
419 | ||
420 | return $this->redirect($redirectUrl); | |
163eae0b NL |
421 | } |
422 | ||
423 | /** | |
eecd7e40 | 424 | * Changes starred status for an entry. |
163eae0b | 425 | * |
3d2b2d62 J |
426 | * @param Request $request |
427 | * @param Entry $entry | |
428 | * | |
163eae0b | 429 | * @Route("/star/{id}", requirements={"id" = "\d+"}, name="star_entry") |
3d2b2d62 | 430 | * |
163eae0b NL |
431 | * @return \Symfony\Component\HttpFoundation\RedirectResponse |
432 | */ | |
be463487 | 433 | public function toggleStarAction(Request $request, Entry $entry) |
163eae0b | 434 | { |
3d2b2d62 J |
435 | $this->checkUserAction($entry); |
436 | ||
163eae0b NL |
437 | $entry->toggleStar(); |
438 | $this->getDoctrine()->getManager()->flush(); | |
439 | ||
4204a06b JB |
440 | $message = 'flashes.entry.notice.entry_unstarred'; |
441 | if ($entry->isStarred()) { | |
442 | $message = 'flashes.entry.notice.entry_starred'; | |
443 | } | |
444 | ||
163eae0b NL |
445 | $this->get('session')->getFlashBag()->add( |
446 | 'notice', | |
4204a06b | 447 | $message |
163eae0b NL |
448 | ); |
449 | ||
af497a64 NL |
450 | $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer')); |
451 | ||
452 | return $this->redirect($redirectUrl); | |
163eae0b NL |
453 | } |
454 | ||
455 | /** | |
2863bf2a | 456 | * Deletes entry and redirect to the homepage or the last viewed page. |
163eae0b | 457 | * |
16a3d04c | 458 | * @param Entry $entry |
3d2b2d62 | 459 | * |
163eae0b | 460 | * @Route("/delete/{id}", requirements={"id" = "\d+"}, name="delete_entry") |
3d2b2d62 | 461 | * |
163eae0b NL |
462 | * @return \Symfony\Component\HttpFoundation\RedirectResponse |
463 | */ | |
18d5f454 | 464 | public function deleteEntryAction(Request $request, Entry $entry) |
163eae0b | 465 | { |
3d2b2d62 J |
466 | $this->checkUserAction($entry); |
467 | ||
2863bf2a JB |
468 | // generates the view url for this entry to check for redirection later |
469 | // to avoid redirecting to the deleted entry. Ugh. | |
470 | $url = $this->generateUrl( | |
471 | 'view', | |
4094ea47 | 472 | ['id' => $entry->getId()], |
ce0e9ec3 | 473 | UrlGeneratorInterface::ABSOLUTE_PATH |
2863bf2a JB |
474 | ); |
475 | ||
e0597476 JB |
476 | // entry deleted, dispatch event about it! |
477 | $this->get('event_dispatcher')->dispatch(EntryDeletedEvent::NAME, new EntryDeletedEvent($entry)); | |
478 | ||
1d147791 NL |
479 | $em = $this->getDoctrine()->getManager(); |
480 | $em->remove($entry); | |
481 | $em->flush(); | |
163eae0b NL |
482 | |
483 | $this->get('session')->getFlashBag()->add( | |
484 | 'notice', | |
4204a06b | 485 | 'flashes.entry.notice.entry_deleted' |
163eae0b | 486 | ); |
bd9f0815 | 487 | |
ce0e9ec3 JB |
488 | // don't redirect user to the deleted entry (check that the referer doesn't end with the same url) |
489 | $referer = $request->headers->get('referer'); | |
490 | $to = (1 !== preg_match('#'.$url.'$#i', $referer) ? $referer : null); | |
af497a64 NL |
491 | |
492 | $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($to); | |
493 | ||
494 | return $this->redirect($redirectUrl); | |
bd9f0815 | 495 | } |
3d2b2d62 J |
496 | |
497 | /** | |
4346a860 | 498 | * Check if the logged user can manage the given entry. |
3d2b2d62 J |
499 | * |
500 | * @param Entry $entry | |
501 | */ | |
502 | private function checkUserAction(Entry $entry) | |
503 | { | |
f1be7af4 | 504 | if (null === $this->getUser() || $this->getUser()->getId() != $entry->getUser()->getId()) { |
82d6d9cb | 505 | throw $this->createAccessDeniedException('You can not access this entry.'); |
3d2b2d62 J |
506 | } |
507 | } | |
b00a89e0 NL |
508 | |
509 | /** | |
510 | * Check for existing entry, if it exists, redirect to it with a message. | |
511 | * | |
4094ea47 | 512 | * @param Entry $entry |
b00a89e0 | 513 | * |
4094ea47 | 514 | * @return Entry|bool |
b00a89e0 | 515 | */ |
4094ea47 | 516 | private function checkIfEntryAlreadyExists(Entry $entry) |
b00a89e0 NL |
517 | { |
518 | return $this->get('wallabag_core.entry_repository')->findByUrlAndUserId($entry->getUrl(), $this->getUser()->getId()); | |
f3d0cb91 NL |
519 | } |
520 | ||
f1be7af4 NL |
521 | /** |
522 | * Get public URL for entry (and generate it if necessary). | |
523 | * | |
524 | * @param Entry $entry | |
525 | * | |
526 | * @Route("/share/{id}", requirements={"id" = "\d+"}, name="share") | |
527 | * | |
528 | * @return \Symfony\Component\HttpFoundation\Response | |
529 | */ | |
530 | public function shareAction(Entry $entry) | |
531 | { | |
532 | $this->checkUserAction($entry); | |
533 | ||
eddda878 JB |
534 | if (null === $entry->getUuid()) { |
535 | $entry->generateUuid(); | |
536 | ||
537 | $em = $this->getDoctrine()->getManager(); | |
538 | $em->persist($entry); | |
539 | $em->flush(); | |
f1be7af4 NL |
540 | } |
541 | ||
542 | return $this->redirect($this->generateUrl('share_entry', [ | |
543 | 'uuid' => $entry->getUuid(), | |
544 | ])); | |
545 | } | |
546 | ||
547 | /** | |
548 | * Disable public sharing for an entry. | |
549 | * | |
550 | * @param Entry $entry | |
551 | * | |
552 | * @Route("/share/delete/{id}", requirements={"id" = "\d+"}, name="delete_share") | |
553 | * | |
554 | * @return \Symfony\Component\HttpFoundation\Response | |
555 | */ | |
556 | public function deleteShareAction(Entry $entry) | |
557 | { | |
558 | $this->checkUserAction($entry); | |
559 | ||
560 | $entry->cleanUuid(); | |
eddda878 | 561 | |
f1be7af4 NL |
562 | $em = $this->getDoctrine()->getManager(); |
563 | $em->persist($entry); | |
564 | $em->flush(); | |
565 | ||
566 | return $this->redirect($this->generateUrl('view', [ | |
567 | 'id' => $entry->getId(), | |
568 | ])); | |
569 | } | |
570 | ||
d0545b6b | 571 | /** |
eddda878 | 572 | * Ability to view a content publicly. |
f3d0cb91 NL |
573 | * |
574 | * @param Entry $entry | |
575 | * | |
f1be7af4 | 576 | * @Route("/share/{uuid}", requirements={"uuid" = ".+"}, name="share_entry") |
eddda878 | 577 | * @Cache(maxage="25200", smaxage="25200", public=true) |
f3d0cb91 NL |
578 | * |
579 | * @return \Symfony\Component\HttpFoundation\Response | |
580 | */ | |
d0545b6b | 581 | public function shareEntryAction(Entry $entry) |
f3d0cb91 | 582 | { |
eddda878 JB |
583 | if (!$this->get('craue_config')->get('share_public')) { |
584 | throw $this->createAccessDeniedException('Sharing an entry is disabled for this user.'); | |
585 | } | |
586 | ||
f3d0cb91 | 587 | return $this->render( |
2ff9991a | 588 | '@WallabagCore/themes/common/Entry/share.html.twig', |
eddda878 | 589 | ['entry' => $entry] |
f3d0cb91 NL |
590 | ); |
591 | } | |
b6520f0b NL |
592 | |
593 | /** | |
594 | * Shows untagged articles for current user. | |
595 | * | |
596 | * @param Request $request | |
597 | * @param int $page | |
598 | * | |
599 | * @Route("/untagged/list/{page}", name="untagged", defaults={"page" = "1"}) | |
600 | * | |
601 | * @return \Symfony\Component\HttpFoundation\Response | |
602 | */ | |
603 | public function showUntaggedEntriesAction(Request $request, $page) | |
604 | { | |
605 | return $this->showEntries('untagged', $request, $page); | |
606 | } | |
9d50517c | 607 | } |