mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-29 20:41:03 +00:00
TagController: support merging labels when renaming one with label of another
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
parent
a19caf8a37
commit
48f9a9632d
2 changed files with 143 additions and 11 deletions
|
@ -151,13 +151,21 @@ class TagController extends Controller
|
||||||
$form = $this->createForm(RenameTagType::class, new Tag());
|
$form = $this->createForm(RenameTagType::class, new Tag());
|
||||||
$form->handleRequest($request);
|
$form->handleRequest($request);
|
||||||
|
|
||||||
if ($form->isSubmitted()
|
$redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'), '', true);
|
||||||
&& $form->isValid()
|
|
||||||
&& $form->get('label')->getData() !== $tag->getLabel()
|
if ($form->isSubmitted() && $form->isValid()) {
|
||||||
) {
|
|
||||||
$newTagLabel = $form->get('label')->getData();
|
|
||||||
$newTag = new Tag();
|
$newTag = new Tag();
|
||||||
$newTag->setLabel($newTagLabel);
|
$newTag->setLabel($form->get('label')->getData());
|
||||||
|
|
||||||
|
if ($newTag->getLabel() === $tag->getLabel()) {
|
||||||
|
return $this->redirect($redirectUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
$tagFromRepo = $this->get('wallabag_core.tag_repository')->findOneByLabel($newTag->getLabel());
|
||||||
|
|
||||||
|
if (null !== $tagFromRepo) {
|
||||||
|
$newTag = $tagFromRepo;
|
||||||
|
}
|
||||||
|
|
||||||
$entries = $this->get('wallabag_core.entry_repository')->findAllByTagId(
|
$entries = $this->get('wallabag_core.entry_repository')->findAllByTagId(
|
||||||
$this->getUser()->getId(),
|
$this->getUser()->getId(),
|
||||||
|
@ -166,14 +174,13 @@ class TagController extends Controller
|
||||||
foreach ($entries as $entry) {
|
foreach ($entries as $entry) {
|
||||||
$this->get('wallabag_core.tags_assigner')->assignTagsToEntry(
|
$this->get('wallabag_core.tags_assigner')->assignTagsToEntry(
|
||||||
$entry,
|
$entry,
|
||||||
$newTagLabel,
|
$newTag->getLabel(),
|
||||||
[$newTag]
|
[$newTag]
|
||||||
);
|
);
|
||||||
$entry->removeTag($tag);
|
$entry->removeTag($tag);
|
||||||
}
|
}
|
||||||
|
|
||||||
$em = $this->getDoctrine()->getManager();
|
$this->getDoctrine()->getManager()->flush();
|
||||||
$em->flush();
|
|
||||||
|
|
||||||
$this->get('session')->getFlashBag()->add(
|
$this->get('session')->getFlashBag()->add(
|
||||||
'notice',
|
'notice',
|
||||||
|
@ -181,8 +188,6 @@ class TagController extends Controller
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$redirectUrl = $this->get('wallabag_core.helper.redirect')->to($request->headers->get('referer'), '', true);
|
|
||||||
|
|
||||||
return $this->redirect($redirectUrl);
|
return $this->redirect($redirectUrl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -304,6 +304,133 @@ class TagControllerTest extends WallabagCoreTestCase
|
||||||
$this->assertTrue($newTag[0]->hasEntry($freshEntry), 'Tag is still assigned to the entry.');
|
$this->assertTrue($newTag[0]->hasEntry($freshEntry), 'Tag is still assigned to the entry.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testRenameTagWithSameLabelDifferentCase()
|
||||||
|
{
|
||||||
|
$tagLabel = 'same label';
|
||||||
|
$newTagLabel = 'saMe labEl';
|
||||||
|
$this->logInAs('admin');
|
||||||
|
$client = $this->getClient();
|
||||||
|
|
||||||
|
$tag = new Tag();
|
||||||
|
$tag->setLabel($tagLabel);
|
||||||
|
|
||||||
|
$entry = new Entry($this->getLoggedInUser());
|
||||||
|
$entry->setUrl('http://0.0.0.0/foobar');
|
||||||
|
$entry->addTag($tag);
|
||||||
|
$this->getEntityManager()->persist($entry);
|
||||||
|
|
||||||
|
$this->getEntityManager()->flush();
|
||||||
|
$this->getEntityManager()->clear();
|
||||||
|
|
||||||
|
// We make a first request to set an history and test redirection after tag deletion
|
||||||
|
$crawler = $client->request('GET', '/tag/list');
|
||||||
|
$form = $crawler->filter('#tag-' . $tag->getId() . ' form')->form();
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'tag[label]' => $newTagLabel,
|
||||||
|
];
|
||||||
|
|
||||||
|
$client->submit($form, $data);
|
||||||
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
||||||
|
$this->assertNotContains('flashes.tag.notice.tag_renamed', $crawler->filter('body')->extract(['_text'])[0]);
|
||||||
|
|
||||||
|
$freshEntry = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Entry')
|
||||||
|
->find($entry->getId());
|
||||||
|
|
||||||
|
$tags = [];
|
||||||
|
|
||||||
|
$tagsFromEntry = $freshEntry->getTags()->toArray();
|
||||||
|
foreach ($tagsFromEntry as $key => $item) {
|
||||||
|
$tags[$key] = $item->getLabel();
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->assertFalse(array_search($newTagLabel, $tags, true));
|
||||||
|
|
||||||
|
$tagFromRepo = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Tag')
|
||||||
|
->findByLabel($tagLabel);
|
||||||
|
|
||||||
|
$newTagFromRepo = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Tag')
|
||||||
|
->findByLabel($newTagLabel);
|
||||||
|
|
||||||
|
$this->assertCount(0, $newTagFromRepo);
|
||||||
|
$this->assertCount(1, $tagFromRepo);
|
||||||
|
|
||||||
|
$this->assertSame($tag->getId(), $tagFromRepo[0]->getId(), 'Tag is unchanged.');
|
||||||
|
|
||||||
|
$this->assertTrue($tagFromRepo[0]->hasEntry($freshEntry), 'Tag is still assigned to the entry.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testRenameTagWithExistingLabel()
|
||||||
|
{
|
||||||
|
$tagLabel = 'existing label';
|
||||||
|
$previousTagLabel = 'previous label';
|
||||||
|
$this->logInAs('admin');
|
||||||
|
$client = $this->getClient();
|
||||||
|
|
||||||
|
$tag = new Tag();
|
||||||
|
$tag->setLabel($tagLabel);
|
||||||
|
|
||||||
|
$previousTag = new Tag();
|
||||||
|
$previousTag->setLabel($previousTagLabel);
|
||||||
|
|
||||||
|
$entry1 = new Entry($this->getLoggedInUser());
|
||||||
|
$entry1->setUrl('http://0.0.0.0/foobar');
|
||||||
|
$entry1->addTag($previousTag);
|
||||||
|
$this->getEntityManager()->persist($entry1);
|
||||||
|
|
||||||
|
$entry2 = new Entry($this->getLoggedInUser());
|
||||||
|
$entry2->setUrl('http://0.0.0.0/baz');
|
||||||
|
$entry2->addTag($tag);
|
||||||
|
$this->getEntityManager()->persist($entry2);
|
||||||
|
|
||||||
|
$this->getEntityManager()->flush();
|
||||||
|
$this->getEntityManager()->clear();
|
||||||
|
|
||||||
|
// We make a first request to set an history and test redirection after tag deletion
|
||||||
|
$crawler = $client->request('GET', '/tag/list');
|
||||||
|
$form = $crawler->filter('#tag-' . $previousTag->getId() . ' form')->form();
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'tag[label]' => $tagLabel,
|
||||||
|
];
|
||||||
|
|
||||||
|
$client->submit($form, $data);
|
||||||
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
||||||
|
$this->assertNotContains('flashes.tag.notice.tag_renamed', $crawler->filter('body')->extract(['_text'])[0]);
|
||||||
|
|
||||||
|
$freshEntry1 = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Entry')
|
||||||
|
->find($entry1->getId());
|
||||||
|
|
||||||
|
$freshEntry2 = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Entry')
|
||||||
|
->find($entry2->getId());
|
||||||
|
|
||||||
|
$tagFromRepo = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Tag')
|
||||||
|
->findByLabel($tagLabel);
|
||||||
|
|
||||||
|
$previousTagFromRepo = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Tag')
|
||||||
|
->findByLabel($previousTagLabel);
|
||||||
|
|
||||||
|
$this->assertCount(1, $tagFromRepo);
|
||||||
|
|
||||||
|
$this->assertTrue($tagFromRepo[0]->hasEntry($freshEntry1));
|
||||||
|
$this->assertTrue($tagFromRepo[0]->hasEntry($freshEntry2), 'Tag is assigned to the entry.');
|
||||||
|
$this->assertFalse($previousTagFromRepo[0]->hasEntry($freshEntry1));
|
||||||
|
}
|
||||||
|
|
||||||
public function testAddUnicodeTagLabel()
|
public function testAddUnicodeTagLabel()
|
||||||
{
|
{
|
||||||
$this->logInAs('admin');
|
$this->logInAs('admin');
|
||||||
|
|
Loading…
Reference in a new issue