mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 09:31:04 +00:00
Merge pull request #1658 from wallabag/v2-import-v1-tags
import tags from v1 (#1657)
This commit is contained in:
commit
cfc90f8422
3 changed files with 44 additions and 3 deletions
|
@ -6,6 +6,7 @@ use Psr\Log\LoggerInterface;
|
||||||
use Psr\Log\NullLogger;
|
use Psr\Log\NullLogger;
|
||||||
use Doctrine\ORM\EntityManager;
|
use Doctrine\ORM\EntityManager;
|
||||||
use Wallabag\CoreBundle\Entity\Entry;
|
use Wallabag\CoreBundle\Entity\Entry;
|
||||||
|
use Wallabag\CoreBundle\Entity\Tag;
|
||||||
use Wallabag\UserBundle\Entity\User;
|
use Wallabag\UserBundle\Entity\User;
|
||||||
use Wallabag\CoreBundle\Tools\Utils;
|
use Wallabag\CoreBundle\Tools\Utils;
|
||||||
use Wallabag\CoreBundle\Helper\ContentProxy;
|
use Wallabag\CoreBundle\Helper\ContentProxy;
|
||||||
|
@ -151,6 +152,10 @@ class WallabagV1Import implements ImportInterface
|
||||||
$entry->setReadingTime(Utils::getReadingTime($importedEntry['content']));
|
$entry->setReadingTime(Utils::getReadingTime($importedEntry['content']));
|
||||||
$entry->setDomainName(parse_url($importedEntry['url'], PHP_URL_HOST));
|
$entry->setDomainName(parse_url($importedEntry['url'], PHP_URL_HOST));
|
||||||
}
|
}
|
||||||
|
if (array_key_exists('tags', $importedEntry) && $importedEntry['tags'] != '') {
|
||||||
|
$tags = explode(',', $importedEntry['tags']);
|
||||||
|
$this->assignTagsToEntry($entry, $tags);
|
||||||
|
}
|
||||||
$entry->setArchived($importedEntry['is_read']);
|
$entry->setArchived($importedEntry['is_read']);
|
||||||
$entry->setStarred($importedEntry['is_fav']);
|
$entry->setStarred($importedEntry['is_fav']);
|
||||||
|
|
||||||
|
@ -166,4 +171,22 @@ class WallabagV1Import implements ImportInterface
|
||||||
|
|
||||||
$this->em->flush();
|
$this->em->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function assignTagsToEntry(Entry $entry, $tags)
|
||||||
|
{
|
||||||
|
foreach ($tags as $tag) {
|
||||||
|
$label = trim($tag);
|
||||||
|
$tagEntity = $this->em
|
||||||
|
->getRepository('WallabagCoreBundle:Tag')
|
||||||
|
->findOneByLabel($label);
|
||||||
|
if (is_object($tagEntity)) {
|
||||||
|
$entry->addTag($tagEntity);
|
||||||
|
} else {
|
||||||
|
$newTag = new Tag();
|
||||||
|
$newTag->setLabel($label);
|
||||||
|
$entry->addTag($newTag);
|
||||||
|
}
|
||||||
|
$this->em->flush();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,21 @@ class WallabagV1ControllerTest extends WallabagCoreTestCase
|
||||||
|
|
||||||
$crawler = $client->followRedirect();
|
$crawler = $client->followRedirect();
|
||||||
|
|
||||||
|
$content = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Entry')
|
||||||
|
->findByUrlAndUserId(
|
||||||
|
'http://www.framablog.org/index.php/post/2014/02/05/Framabag-service-libre-gratuit-interview-developpeur',
|
||||||
|
$this->getLoggedInUserId()
|
||||||
|
);
|
||||||
|
|
||||||
|
$tag = $client->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
->getRepository('WallabagCoreBundle:Tag')
|
||||||
|
->findOneByLabel('Framabag');
|
||||||
|
|
||||||
|
$this->assertTrue($content->getTags()->contains($tag));
|
||||||
|
|
||||||
$this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text')));
|
$this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text')));
|
||||||
$this->assertContains('Import summary', $alert[0]);
|
$this->assertContains('Import summary', $alert[0]);
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue