X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FImportBundle%2FImport%2FWallabagV2Import.php;h=2ba26003f784a5a2310a040cc5baf1dc0eecd1b9;hb=5f08426201c336f96d593954fb45b284d7e60f4a;hp=b31d63a3356f2cbed18870396ce8e3280a0711d4;hpb=8f336fda649c064cabfa692793334067ece780f9;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Import/WallabagV2Import.php b/src/Wallabag/ImportBundle/Import/WallabagV2Import.php index b31d63a3..2ba26003 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} @@ -31,55 +29,27 @@ class WallabagV2Import extends WallabagV1Import implements ImportInterface } /** - * @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; - } - - $importedEntry['html'] = $importedEntry['content']; - $importedEntry['content_type'] = $importedEntry['mimetype']; - - $entry = $this->contentProxy->updateEntry( - new Entry($this->user), - $importedEntry['url'], - $importedEntry - ); - - if (array_key_exists('tags', $importedEntry) && !empty($importedEntry['tags'])) { - $this->contentProxy->assignTagsToEntry( - $entry, - $importedEntry['tags'] - ); - } - - if (isset($importedEntry['preview_picture'])) { - $entry->setPreviewPicture($importedEntry['preview_picture']); - } - - $entry->setArchived($importedEntry['is_archived'] || $this->markAsRead); - $entry->setStarred($importedEntry['is_starred']); - - $this->em->persist($entry); - ++$this->importedEntries; + return [ + 'html' => $entry['content'], + 'headers' => [ + '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; } }