X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FImportBundle%2FImport%2FWallabagV2Import.php;h=3e085ecff6461b8a36fdc6ebd34225e5835c0623;hb=9fe87bc2e20fa95573287a61ef9798cc15648187;hp=c5c0d5a798fea627735818a85d22c701e04bc1f5;hpb=ae5b37ef2e52c06182bc6edb14f6b3aae381ddb4;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Import/WallabagV2Import.php b/src/Wallabag/ImportBundle/Import/WallabagV2Import.php index c5c0d5a7..3e085ecf 100644 --- a/src/Wallabag/ImportBundle/Import/WallabagV2Import.php +++ b/src/Wallabag/ImportBundle/Import/WallabagV2Import.php @@ -2,9 +2,7 @@ namespace Wallabag\ImportBundle\Import; -use Wallabag\CoreBundle\Entity\Entry; - -class WallabagV2Import extends WallabagV1Import implements ImportInterface +class WallabagV2Import extends WallabagImport { /** * {@inheritdoc} @@ -27,55 +25,29 @@ class WallabagV2Import extends WallabagV1Import implements ImportInterface */ public function getDescription() { - return 'This importer will import all your wallabag v2 articles. On the export sidebar, click on "JSON". You will have a "Unread articles.json" file.'; + return 'import.wallabag_v2.description'; } /** - * @param $entries + * {@inheritdoc} */ - protected function parseEntries($entries) + protected function prepareEntry($entry = []) { - $i = 1; - - foreach ($entries as $importedEntry) { - $existingEntry = $this->em - ->getRepository('WallabagCoreBundle:Entry') - ->findByUrlAndUserId($importedEntry['url'], $this->user->getId()); - - if (false !== $existingEntry) { - ++$this->skippedEntries; - continue; - } - - // @see ContentProxy->updateEntry - $entry = new Entry($this->user); - $entry->setUrl($importedEntry['url']); - $entry->setTitle($importedEntry['title']); - $entry->setArchived($importedEntry['is_archived']); - $entry->setStarred($importedEntry['is_starred']); - $entry->setContent($importedEntry['content']); - $entry->setReadingTime($importedEntry['reading_time']); - $entry->setDomainName($importedEntry['domain_name']); - if (isset($importedEntry['mimetype'])) { - $entry->setMimetype($importedEntry['mimetype']); - } - if (isset($importedEntry['language'])) { - $entry->setLanguage($importedEntry['language']); - } - if (isset($importedEntry['preview_picture'])) { - $entry->setPreviewPicture($importedEntry['preview_picture']); - } - - $this->em->persist($entry); - ++$this->importedEntries; + return [ + 'html' => $entry['content'], + 'content_type' => $entry['mimetype'], + 'is_archived' => (bool) ($entry['is_archived'] || $this->markAsRead), + 'is_starred' => (bool) $entry['is_starred'], + ] + $entry; + } - // flush every 20 entries - if (($i % 20) === 0) { - $this->em->flush(); - } - ++$i; - } + /** + * {@inheritdoc} + */ + protected function setEntryAsRead(array $importedEntry) + { + $importedEntry['is_archived'] = 1; - $this->em->flush(); + return $importedEntry; } }