X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=src%2FWallabag%2FImportBundle%2FImport%2FWallabagV1Import.php;h=1d773d3bb58e2094ac057c490121c5dc9883479d;hb=fe8b37c137adbe036f58616c15dbcffd07dd2cd4;hp=0dac6203e6b0d0aacbd3354b1d075933afd8d13d;hpb=85ad629a3ca209907effd75f5fd7f384f42361bc;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php index 0dac6203..1d773d3b 100644 --- a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php +++ b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php @@ -8,20 +8,24 @@ use Doctrine\ORM\EntityManager; use Wallabag\CoreBundle\Entity\Entry; use Wallabag\UserBundle\Entity\User; use Wallabag\CoreBundle\Tools\Utils; +use Wallabag\CoreBundle\Helper\ContentProxy; class WallabagV1Import implements ImportInterface { protected $user; protected $em; protected $logger; + protected $contentProxy; protected $skippedEntries = 0; protected $importedEntries = 0; protected $filepath; + protected $markAsRead; - public function __construct(EntityManager $em) + public function __construct(EntityManager $em, ContentProxy $contentProxy) { $this->em = $em; $this->logger = new NullLogger(); + $this->contentProxy = $contentProxy; } public function setLogger(LoggerInterface $logger) @@ -117,6 +121,18 @@ class WallabagV1Import implements ImportInterface return $this; } + /** + * Set whether articles must be all marked as read. + * + * @param bool $markAsRead + */ + public function setMarkAsRead($markAsRead) + { + $this->markAsRead = $markAsRead; + + return $this; + } + /** * @param $entries */ @@ -124,6 +140,9 @@ class WallabagV1Import implements ImportInterface { $i = 1; + //Untitled in all languages from v1. This should never have been translated + $untitled = array('Untitled', 'Sans titre', 'podle nadpisu', 'Sin título', 'با عنوان', 'per titolo', 'Sem título', 'Без названия', 'po naslovu', 'Без назви', 'No title found', ''); + foreach ($entries as $importedEntry) { $existingEntry = $this->em ->getRepository('WallabagCoreBundle:Entry') @@ -137,12 +156,25 @@ class WallabagV1Import implements ImportInterface // @see ContentProxy->updateEntry $entry = new Entry($this->user); $entry->setUrl($importedEntry['url']); - $entry->setTitle($importedEntry['title']); - $entry->setArchived($importedEntry['is_read']); + + if (in_array($importedEntry['title'], $untitled)) { + $entry = $this->contentProxy->updateEntry($entry, $importedEntry['url']); + } else { + $entry->setContent($importedEntry['content']); + $entry->setTitle($importedEntry['title']); + $entry->setReadingTime(Utils::getReadingTime($importedEntry['content'])); + $entry->setDomainName(parse_url($importedEntry['url'], PHP_URL_HOST)); + } + + if (array_key_exists('tags', $importedEntry) && $importedEntry['tags'] != '') { + $this->contentProxy->assignTagsToEntry( + $entry, + $importedEntry['tags'] + ); + } + + $entry->setArchived($importedEntry['is_read'] || $this->markAsRead); $entry->setStarred($importedEntry['is_fav']); - $entry->setContent($importedEntry['content']); - $entry->setReadingTime(Utils::getReadingTime($importedEntry['content'])); - $entry->setDomainName(parse_url($importedEntry['url'], PHP_URL_HOST)); $this->em->persist($entry); ++$this->importedEntries;