]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Controller/TagController.php
Create a new Tag action to rename tags.
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / TagController.php
CommitLineData
3f3fbef1
NL
1<?php
2
3namespace Wallabag\CoreBundle\Controller;
4
891456ba
NL
5use Pagerfanta\Adapter\ArrayAdapter;
6use Pagerfanta\Exception\OutOfRangeCurrentPageException;
f808b016 7use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
3f3fbef1
NL
8use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
9use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7244d6cb 10use Symfony\Component\HttpFoundation\Request;
7244d6cb 11use Wallabag\CoreBundle\Entity\Entry;
619cc453
JB
12use Wallabag\CoreBundle\Entity\Tag;
13use Wallabag\CoreBundle\Form\Type\NewTagType;
be326a22 14use Wallabag\CoreBundle\Form\Type\RenameTagType;
3f3fbef1
NL
15
16class TagController extends Controller
17{
7244d6cb
NL
18 /**
19 * @param Request $request
4094ea47 20 * @param Entry $entry
7244d6cb
NL
21 *
22 * @Route("/new-tag/{entry}", requirements={"entry" = "\d+"}, name="new_tag")
23 *
24 * @return \Symfony\Component\HttpFoundation\Response
25 */
26 public function addTagFormAction(Request $request, Entry $entry)
27 {
2baca964 28 $form = $this->createForm(NewTagType::class, new Tag());
7244d6cb
NL
29 $form->handleRequest($request);
30
21e7ccef 31 if ($form->isSubmitted() && $form->isValid()) {
6bc6fb1f 32 $this->get('wallabag_core.tags_assigner')->assignTagsToEntry(
2baca964
JB
33 $entry,
34 $form->get('label')->getData()
35 );
7244d6cb
NL
36
37 $em = $this->getDoctrine()->getManager();
2baca964 38 $em->persist($entry);
7244d6cb
NL
39 $em->flush();
40
41 $this->get('session')->getFlashBag()->add(
42 'notice',
4204a06b 43 'flashes.tag.notice.tag_added'
7244d6cb
NL
44 );
45
4094ea47 46 return $this->redirect($this->generateUrl('view', ['id' => $entry->getId()]));
7244d6cb
NL
47 }
48
4094ea47 49 return $this->render('WallabagCoreBundle:Tag:new_form.html.twig', [
7244d6cb
NL
50 'form' => $form->createView(),
51 'entry' => $entry,
4094ea47 52 ]);
7244d6cb
NL
53 }
54
567421af
TC
55 /**
56 * Removes tag from entry.
57 *
58 * @Route("/remove-tag/{entry}/{tag}", requirements={"entry" = "\d+", "tag" = "\d+"}, name="remove_tag")
59 *
60 * @return \Symfony\Component\HttpFoundation\Response
61 */
62 public function removeTagFromEntry(Request $request, Entry $entry, Tag $tag)
63 {
64 $entry->removeTag($tag);
65 $em = $this->getDoctrine()->getManager();
66 $em->flush();
ac8cf632
JB
67
68 // remove orphan tag in case no entries are associated to it
2a1ceb67 69 if (0 === \count($tag->getEntries())) {
567421af 70 $em->remove($tag);
ac8cf632 71 $em->flush();
567421af 72 }
567421af 73
5dbf3f23 74 $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'), '', true);
af497a64
NL
75
76 return $this->redirect($redirectUrl);
567421af
TC
77 }
78
3f3fbef1
NL
79 /**
80 * Shows tags for current user.
81 *
82 * @Route("/tag/list", name="tag")
83 *
84 * @return \Symfony\Component\HttpFoundation\Response
85 */
86 public function showTagAction()
87 {
25203e50 88 $tags = $this->get('wallabag_core.tag_repository')
935e9fff 89 ->findAllFlatTagsWithNbEntries($this->getUser()->getId());
faa86e06
JB
90
91 return $this->render('WallabagCoreBundle:Tag:tags.html.twig', [
935e9fff 92 'tags' => $tags,
faa86e06 93 ]);
3f3fbef1 94 }
891456ba
NL
95
96 /**
97 * @param Tag $tag
98 * @param int $page
99 *
100 * @Route("/tag/list/{slug}/{page}", name="tag_entries", defaults={"page" = "1"})
101 * @ParamConverter("tag", options={"mapping": {"slug": "slug"}})
102 *
103 * @return \Symfony\Component\HttpFoundation\Response
104 */
105 public function showEntriesForTagAction(Tag $tag, $page, Request $request)
106 {
25203e50
JB
107 $entriesByTag = $this->get('wallabag_core.entry_repository')->findAllByTagId(
108 $this->getUser()->getId(),
109 $tag->getId()
110 );
267e8d63
NL
111
112 $pagerAdapter = new ArrayAdapter($entriesByTag);
891456ba 113
53da8ad8 114 $entries = $this->get('wallabag_core.helper.prepare_pager_for_entries')->prepare($pagerAdapter);
891456ba
NL
115
116 try {
117 $entries->setCurrentPage($page);
118 } catch (OutOfRangeCurrentPageException $e) {
119 if ($page > 1) {
120 return $this->redirect($this->generateUrl($request->get('_route'), [
121 'slug' => $tag->getSlug(),
122 'page' => $entries->getNbPages(),
123 ]), 302);
124 }
125 }
126
82fc3290 127 return $this->render('WallabagCoreBundle:Entry:entries.html.twig', [
faa86e06
JB
128 'form' => null,
129 'entries' => $entries,
130 'currentPage' => $page,
bd40f1af 131 'tag' => $tag,
faa86e06 132 ]);
891456ba 133 }
be326a22
SH
134
135 /**
136 * Rename a given tag with a new label
137 * Create a new tag with the new name and drop the old one.
138 *
139 * @param Tag $tag
140 * @param Request $request
141 *
142 * @Route("/tag/rename/{slug}", name="tag_rename")
143 * @ParamConverter("tag", options={"mapping": {"slug": "slug"}})
144 *
145 * @return \Symfony\Component\HttpFoundation\Response
146 */
147 public function renameTagAction(Tag $tag, Request $request)
148 {
149 $form = $this->createForm(RenameTagType::class, new Tag());
150 $form->handleRequest($request);
151
152 if ($form->isSubmitted() && $form->isValid()) {
153 $entries = $this->get('wallabag_core.entry_repository')->findAllByTagId(
154 $this->getUser()->getId(),
155 $tag->getId()
156 );
157 foreach ($entries as $entry) {
158 $this->get('wallabag_core.tags_assigner')->assignTagsToEntry(
159 $entry,
160 $form->get('label')->getData()
161 );
162 $entry->removeTag($tag);
163 }
164
165 $em = $this->getDoctrine()->getManager();
166 $em->flush();
167 }
168
169 $this->get('session')->getFlashBag()->add(
170 'notice',
171 'flashes.tag.notice.tag_renamed'
172 );
173
174 $redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'), '', true);
175
176 return $this->redirect($redirectUrl);
177 }
3f3fbef1 178}